ERC-20
Overview
Max Total Supply
888,000,888,000,888 MLOVE
Holders
26
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MLOVE
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ /* $MLOVE @MiladyLoveETH */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } 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); } 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } 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 substraction 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; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MLOVE is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; address public lpWallet; uint256 public swapTokensAtAmount; uint256 public maxTokensForSwapback; uint256 public maxTransactionAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public TotalSellFees; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // 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 automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Milady Love", "MLOVE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 888000888000888 * 1e18; maxTransactionAmount = (totalSupply * 100) / 100; // 100% of total supply maxWallet = (totalSupply * 100) / 100; // 100% of total supply swapTokensAtAmount = (totalSupply * 4) / 10000; // 0.04% swapback trigger maxTokensForSwapback = (totalSupply * 3) / 1000; // buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x78abD49239c776328Bf7b607a509A625FCAeD7c6); devWallet = address(0x78abD49239c776328Bf7b607a509A625FCAeD7c6); lpWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } /// @notice Removes the max wallet and max transaction limits function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } /// @notice Disables the Same wallet block transfer delay function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH /// @param newAmount Base 100000, so 0.5% = 500. function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= 1, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= 500, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= maxTokensForSwapback, "Swap amount cannot be higher than maxTokensForSwapback" ); swapTokensAtAmount = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH /// @param newAmount Base 10000, so 0.5% = 50. function updateMaxTokensForSwapback(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= swapTokensAtAmount, "Swap amount cannot be lower than swapTokensAtAmount" ); maxTokensForSwapback = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= 5, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * totalSupply()/1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } /// @notice Sets the fees for buys /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 40); //Total Buy Fees may not be higher than 40% } /// @notice Sets the fees for sells /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(TotalSellFees <= 40); //Total Sell Fees may not be higher than 40% } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable lpWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxTokensForSwapback) { contractBalance = maxTokensForSwapback; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"TotalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f4d696c616479204c6f76650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4c4f56450000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000e34565b5080600490816200010d919062000e34565b50505062000130620001246200067b60201b60201c565b6200068360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200074960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f85565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f85565b6040518363ffffffff1660e01b8152600401620002af92919062000fc8565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f85565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200074960201b60201c565b6200035260a05160016200083360201b60201c565b60008060008060008060006d2bc8259e7bf4fe69dc011ae000009050606480826200037e919062001024565b6200038a91906200109e565b600b8190555060648082620003a0919062001024565b620003ac91906200109e565b600c81905550612710600482620003c4919062001024565b620003d091906200109e565b6009819055506103e8600382620003e8919062001024565b620003f491906200109e565b600a81905550866011819055508560128190555084601381905550601354601254601154620004249190620010d6565b620004309190620010d6565b601081905550836016819055508260178190555081601881905550601854601754601654620004609190620010d6565b6200046c9190620010d6565b6015819055507378abd49239c776328bf7b607a509a625fcaed7c6600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507378abd49239c776328bf7b607a509a625fcaed7c6600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200057f62000571620008d460201b60201c565b6001620008fe60201b60201c565b62000592306001620008fe60201b60201c565b620005a761dead6001620008fe60201b60201c565b620005dc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008fe60201b60201c565b620005fe620005f0620008d460201b60201c565b60016200074960201b60201c565b620006113060016200074960201b60201c565b6200062661dead60016200074960201b60201c565b6200065b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200074960201b60201c565b6200066d338262000a3860201b60201c565b50505050505050506200126e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007596200067b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200077f620008d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cf9062001172565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200090e6200067b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000934620008d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009849062001172565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a2c9190620011b1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aaa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa1906200121e565b60405180910390fd5b62000abe6000838362000bb060201b60201c565b806002600082825462000ad29190620010d6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b299190620010d6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b90919062001251565b60405180910390a362000bac6000838362000bb560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c3c57607f821691505b60208210810362000c525762000c5162000bf4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cbc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c7d565b62000cc8868362000c7d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d1562000d0f62000d098462000ce0565b62000cea565b62000ce0565b9050919050565b6000819050919050565b62000d318362000cf4565b62000d4962000d408262000d1c565b84845462000c8a565b825550505050565b600090565b62000d6062000d51565b62000d6d81848462000d26565b505050565b5b8181101562000d955762000d8960008262000d56565b60018101905062000d73565b5050565b601f82111562000de45762000dae8162000c58565b62000db98462000c6d565b8101602085101562000dc9578190505b62000de162000dd88562000c6d565b83018262000d72565b50505b505050565b600082821c905092915050565b600062000e096000198460080262000de9565b1980831691505092915050565b600062000e24838362000df6565b9150826002028217905092915050565b62000e3f8262000bba565b67ffffffffffffffff81111562000e5b5762000e5a62000bc5565b5b62000e67825462000c23565b62000e7482828562000d99565b600060209050601f83116001811462000eac576000841562000e97578287015190505b62000ea3858262000e16565b86555062000f13565b601f19841662000ebc8662000c58565b60005b8281101562000ee65784890151825560018201915060208501945060208101905062000ebf565b8683101562000f06578489015162000f02601f89168262000df6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f4d8262000f20565b9050919050565b62000f5f8162000f40565b811462000f6b57600080fd5b50565b60008151905062000f7f8162000f54565b92915050565b60006020828403121562000f9e5762000f9d62000f1b565b5b600062000fae8482850162000f6e565b91505092915050565b62000fc28162000f40565b82525050565b600060408201905062000fdf600083018562000fb7565b62000fee602083018462000fb7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010318262000ce0565b91506200103e8362000ce0565b92508282026200104e8162000ce0565b9150828204841483151762001068576200106762000ff5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010ab8262000ce0565b9150620010b88362000ce0565b925082620010cb57620010ca6200106f565b5b828204905092915050565b6000620010e38262000ce0565b9150620010f08362000ce0565b92508282019050808211156200110b576200110a62000ff5565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200115a60208362001111565b9150620011678262001122565b602082019050919050565b600060208201905081810360008301526200118d816200114b565b9050919050565b60008115159050919050565b620011ab8162001194565b82525050565b6000602082019050620011c86000830184620011a0565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001206601f8362001111565b91506200121382620011ce565b602082019050919050565b600060208201905081810360008301526200123981620011f7565b9050919050565b6200124b8162000ce0565b82525050565b600060208201905062001268600083018462001240565b92915050565b60805160a051614f8e620012cc6000396000818161115501528181611907015261271d015260008181610e59015281816126c50152818161379f01528181613880015281816138a701528181613943015261396a0152614f8e6000f3fe60806040526004361061036f5760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cd7578063f2fde38b14610d02578063f637434214610d2b578063f8b45b0514610d5657610376565b8063dd62ed3e14610c44578063e2f4560514610c81578063e884f26014610cac57610376565b8063c876d0b9116100d1578063c876d0b914610b86578063c8c8ebe414610bb1578063d257b34f14610bdc578063d85ba06314610c1957610376565b8063c024666814610b0b578063c17b5b8c14610b34578063c18bc19514610b5d57610376565b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d714610a29578063a9059cbb14610a66578063b62496f514610aa3578063bbc0c74214610ae057610376565b80639c3b4fdc146109a85780639fccce32146109d3578063a0d82dc5146109fe57610376565b806392136913116101a05780639213691314610900578063924de9b71461092b57806395d89b41146109545780639a7a23d61461097f57610376565b80638a8c523c146108935780638da5cb5b146108aa5780638ea5220f146108d557610376565b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146107d75780637af8ed9c146108025780637bce5a041461083f5780638095d5641461086a57610376565b8063751039fc146107585780637571336a1461078357806375f0a874146107ac57610376565b80636a486a8e1161027a5780636a486a8e146106ae5780636ddd1713146106d957806370a0823114610704578063715018a61461074157610376565b80634a62bb651461061b5780634fbee193146106465780636303516c1461068357610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d578063313ce5671461058857806339509351146105b357806349bd5a5e146105f057610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630cec0aa3146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d81565b60405161039d9190613ac9565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613b84565b610e13565b6040516103da9190613bdf565b60405180910390f35b3480156103ef57600080fd5b506103f8610e31565b6040516104059190613c09565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c24565b610e37565b6040516104429190613bdf565b60405180910390f35b34801561045757600080fd5b50610460610e57565b60405161046d9190613cb0565b60405180910390f35b34801561048257600080fd5b5061048b610e7b565b6040516104989190613c09565b60405180910390f35b3480156104ad57600080fd5b506104b6610e85565b6040516104c39190613c09565b60405180910390f35b3480156104d857600080fd5b506104e1610e8b565b6040516104ee9190613c09565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613ccb565b610e91565b005b34801561052c57600080fd5b5061054760048036038101906105429190613cf8565b610fa0565b6040516105549190613bdf565b60405180910390f35b34801561056957600080fd5b50610572611098565b60405161057f9190613d5a565b60405180910390f35b34801561059457600080fd5b5061059d61109e565b6040516105aa9190613d91565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613b84565b6110a7565b6040516105e79190613bdf565b60405180910390f35b3480156105fc57600080fd5b50610605611153565b6040516106129190613d5a565b60405180910390f35b34801561062757600080fd5b50610630611177565b60405161063d9190613bdf565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c24565b61118a565b60405161067a9190613bdf565b60405180910390f35b34801561068f57600080fd5b506106986111e0565b6040516106a59190613d5a565b60405180910390f35b3480156106ba57600080fd5b506106c3611206565b6040516106d09190613c09565b60405180910390f35b3480156106e557600080fd5b506106ee61120c565b6040516106fb9190613bdf565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c24565b61121f565b6040516107389190613c09565b60405180910390f35b34801561074d57600080fd5b50610756611267565b005b34801561076457600080fd5b5061076d6112ef565b60405161077a9190613bdf565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190613dd8565b61138f565b005b3480156107b857600080fd5b506107c1611466565b6040516107ce9190613d5a565b60405180910390f35b3480156107e357600080fd5b506107ec61148c565b6040516107f99190613c09565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613ccb565b611492565b6040516108369190613bdf565b60405180910390f35b34801561084b57600080fd5b50610854611585565b6040516108619190613c09565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613e18565b61158b565b005b34801561089f57600080fd5b506108a8611654565b005b3480156108b657600080fd5b506108bf611708565b6040516108cc9190613d5a565b60405180910390f35b3480156108e157600080fd5b506108ea611732565b6040516108f79190613d5a565b60405180910390f35b34801561090c57600080fd5b50610915611758565b6040516109229190613c09565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613e6b565b61175e565b005b34801561096057600080fd5b506109696117f7565b6040516109769190613ac9565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613dd8565b611889565b005b3480156109b457600080fd5b506109bd6119a1565b6040516109ca9190613c09565b60405180910390f35b3480156109df57600080fd5b506109e86119a7565b6040516109f59190613c09565b60405180910390f35b348015610a0a57600080fd5b50610a136119ad565b604051610a209190613c09565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613b84565b6119b3565b604051610a5d9190613bdf565b60405180910390f35b348015610a7257600080fd5b50610a8d6004803603810190610a889190613b84565b611a9e565b604051610a9a9190613bdf565b60405180910390f35b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613c24565b611abc565b604051610ad79190613bdf565b60405180910390f35b348015610aec57600080fd5b50610af5611adc565b604051610b029190613bdf565b60405180910390f35b348015610b1757600080fd5b50610b326004803603810190610b2d9190613dd8565b611aef565b005b348015610b4057600080fd5b50610b5b6004803603810190610b569190613e18565b611c14565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190613ccb565b611cdd565b005b348015610b9257600080fd5b50610b9b611dc6565b604051610ba89190613bdf565b60405180910390f35b348015610bbd57600080fd5b50610bc6611dd9565b604051610bd39190613c09565b60405180910390f35b348015610be857600080fd5b50610c036004803603810190610bfe9190613ccb565b611ddf565b604051610c109190613bdf565b60405180910390f35b348015610c2557600080fd5b50610c2e611f5b565b604051610c3b9190613c09565b60405180910390f35b348015610c5057600080fd5b50610c6b6004803603810190610c669190613e98565b611f61565b604051610c789190613c09565b60405180910390f35b348015610c8d57600080fd5b50610c96611fe8565b604051610ca39190613c09565b60405180910390f35b348015610cb857600080fd5b50610cc1611fee565b604051610cce9190613bdf565b60405180910390f35b348015610ce357600080fd5b50610cec61208e565b604051610cf99190613c09565b60405180910390f35b348015610d0e57600080fd5b50610d296004803603810190610d249190613c24565b612094565b005b348015610d3757600080fd5b50610d4061218b565b604051610d4d9190613c09565b60405180910390f35b348015610d6257600080fd5b50610d6b612191565b604051610d789190613c09565b60405180910390f35b606060038054610d9090613f07565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90613f07565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b6000610e27610e20612197565b848461219f565b6001905092915050565b60145481565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601a5481565b60195481565b610e99612197565b73ffffffffffffffffffffffffffffffffffffffff16610eb7611708565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613f84565b60405180910390fd5b670de0b6b3a76400006103e86001610f23610e7b565b610f2d9190613fd3565b610f379190614044565b610f419190614044565b811015610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906140e7565b60405180910390fd5b670de0b6b3a764000081610f979190613fd3565b600b8190555050565b6000610fad848484612368565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ff8612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614179565b60405180910390fd5b61108c85611084612197565b85840361219f565b60019150509392505050565b61dead81565b60006012905090565b60006111496110b4612197565b8484600160006110c2612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111449190614199565b61219f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126f612197565b73ffffffffffffffffffffffffffffffffffffffff1661128d611708565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613f84565b60405180910390fd5b6112ed6000612fff565b565b60006112f9612197565b73ffffffffffffffffffffffffffffffffffffffff16611317611708565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613f84565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611397612197565b73ffffffffffffffffffffffffffffffffffffffff166113b5611708565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613f84565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600061149c612197565b73ffffffffffffffffffffffffffffffffffffffff166114ba611708565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613f84565b60405180910390fd5b600954821015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061423f565b60405180910390fd5b620186a0611561610e7b565b8361156c9190613fd3565b6115769190614044565b600a8190555060019050919050565b60115481565b611593612197565b73ffffffffffffffffffffffffffffffffffffffff166115b1611708565b73ffffffffffffffffffffffffffffffffffffffff1614611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613f84565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461162f9190614199565b6116399190614199565b6010819055506028601054111561164f57600080fd5b505050565b61165c612197565b73ffffffffffffffffffffffffffffffffffffffff1661167a611708565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613f84565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b611766612197565b73ffffffffffffffffffffffffffffffffffffffff16611784611708565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613f84565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461180690613f07565b80601f016020809104026020016040519081016040528092919081815260200182805461183290613f07565b801561187f5780601f106118545761010080835404028352916020019161187f565b820191906000526020600020905b81548152906001019060200180831161186257829003601f168201915b5050505050905090565b611891612197565b73ffffffffffffffffffffffffffffffffffffffff166118af611708565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613f84565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906142d1565b60405180910390fd5b61199d82826130c5565b5050565b60135481565b601b5481565b60185481565b600080600160006119c2612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614363565b60405180910390fd5b611a93611a8a612197565b8585840361219f565b600191505092915050565b6000611ab2611aab612197565b8484612368565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611af7612197565b73ffffffffffffffffffffffffffffffffffffffff16611b15611708565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613f84565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c089190613bdf565b60405180910390a25050565b611c1c612197565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611708565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613f84565b60405180910390fd5b826016819055508160178190555080601881905550601854601754601654611cb89190614199565b611cc29190614199565b60158190555060286014541115611cd857600080fd5b505050565b611ce5612197565b73ffffffffffffffffffffffffffffffffffffffff16611d03611708565b73ffffffffffffffffffffffffffffffffffffffff1614611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613f84565b60405180910390fd5b6005811015611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d94906143f5565b60405180910390fd5b6103e8611da8610e7b565b82611db39190613fd3565b611dbd9190614044565b600c8190555050565b600f60009054906101000a900460ff1681565b600b5481565b6000611de9612197565b73ffffffffffffffffffffffffffffffffffffffff16611e07611708565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613f84565b60405180910390fd5b6001821015611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614487565b60405180910390fd5b6101f4821115611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90614519565b60405180910390fd5b600a54821115611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f22906145ab565b60405180910390fd5b620186a0611f37610e7b565b83611f429190613fd3565b611f4c9190614044565b60098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611ff8612197565b73ffffffffffffffffffffffffffffffffffffffff16612016611708565b73ffffffffffffffffffffffffffffffffffffffff161461206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390613f84565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61209c612197565b73ffffffffffffffffffffffffffffffffffffffff166120ba611708565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361217f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121769061463d565b60405180910390fd5b61218881612fff565b50565b60175481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906146cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490614761565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161235b9190613c09565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614885565b60405180910390fd5b6000810361245f5761245a83836000613166565b612ffa565b600d60009054906101000a900460ff1615612b225761247c611708565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ea57506124ba611708565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561255d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125765750600560149054906101000a900460ff16155b15612b2157600d60019054906101000a900460ff1661267057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126305750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906148f1565b60405180910390fd5b5b600f60009054906101000a900460ff16156128385761268d611708565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561271457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128375743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906149a9565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128db5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298257600b54811115612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614a3b565b60405180910390fd5b600c546129318361121f565b8261293c9190614199565b111561297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614aa7565b60405180910390fd5b612b20565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a255750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7457600b54811115612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614b39565b60405180910390fd5b612b1f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1e57600c54612ad18361121f565b82612adc9190614199565b1115612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490614aa7565b60405180910390fd5b5b5b5b5b5b6000612b2d3061121f565b905060006009548210159050808015612b525750600d60029054906101000a900460ff165b8015612b6b5750600560149054906101000a900460ff16155b8015612bc15750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c175750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c6d5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cb1576001600560146101000a81548160ff021916908315150217905550612c956133e5565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d675750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d7157600090505b60008115612fea57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dd457506000601554115b15612ea157612e016064612df3601554886136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060155460175482612e149190613fd3565b612e1e9190614044565b601a6000828254612e2f9190614199565b9250508190555060155460185482612e479190613fd3565b612e519190614044565b601b6000828254612e629190614199565b9250508190555060155460165482612e7a9190613fd3565b612e849190614044565b60196000828254612e959190614199565b92505081905550612fc6565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efc57506000601054115b15612fc557612f296064612f1b601054886136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060105460125482612f3c9190613fd3565b612f469190614044565b601a6000828254612f579190614199565b9250508190555060105460135482612f6f9190613fd3565b612f799190614044565b601b6000828254612f8a9190614199565b9250508190555060105460115482612fa29190613fd3565b612fac9190614044565b60196000828254612fbd9190614199565b925050819055505b5b6000811115612fdb57612fda873083613166565b5b8085612fe79190614b59565b94505b612ff5878787613166565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323b90614885565b60405180910390fd5b61324f8383836136e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc90614bff565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133689190614199565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133cc9190613c09565b60405180910390a36133df8484846136e5565b50505050565b60006133f03061121f565b90506000601b54601954601a546134079190614199565b6134119190614199565b90506000808314806134235750600082145b15613430575050506136b2565b600a5483111561344057600a5492505b6000600283601a54866134539190613fd3565b61345d9190614044565b6134679190614044565b9050600061347e82866136ea90919063ffffffff16565b9050600047905061348e82613700565b60006134a382476136ea90919063ffffffff16565b905060006134ce876134c0601954856136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060006134f9886134eb601b54866136b490919063ffffffff16565b6136ca90919063ffffffff16565b9050600081838561350a9190614b59565b6135149190614b59565b90506000601a8190555060006019819055506000601b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161357490614c50565b60006040518083038185875af1925050503d80600081146135b1576040519150601f19603f3d011682016040523d82523d6000602084013e6135b6565b606091505b5050809850506000871180156135cc5750600081115b15613619576135db878261393d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601a5460405161361093929190614c65565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161365f90614c50565b60006040518083038185875af1925050503d806000811461369c576040519150601f19603f3d011682016040523d82523d6000602084013e6136a1565b606091505b505080985050505050505050505050505b565b600081836136c29190613fd3565b905092915050565b600081836136d89190614044565b905092915050565b505050565b505050565b600081836136f89190614b59565b905092915050565b6000600267ffffffffffffffff81111561371d5761371c614c9c565b5b60405190808252806020026020018201604052801561374b5781602001602082028036833780820191505090505b509050308160008151811061376357613762614ccb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613808573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061382c9190614d0f565b816001815181106138405761383f614ccb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138a5307f00000000000000000000000000000000000000000000000000000000000000008461219f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613907959493929190614e35565b600060405180830381600087803b15801561392157600080fd5b505af1158015613935573d6000803e3d6000fd5b505050505050565b613968307f00000000000000000000000000000000000000000000000000000000000000008461219f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139ef96959493929190614e8f565b60606040518083038185885af1158015613a0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a329190614f05565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a73578082015181840152602081019050613a58565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a9b82613a39565b613aa58185613a44565b9350613ab5818560208601613a55565b613abe81613a7f565b840191505092915050565b60006020820190508181036000830152613ae38184613a90565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1b82613af0565b9050919050565b613b2b81613b10565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b6000819050919050565b613b6181613b4e565b8114613b6c57600080fd5b50565b600081359050613b7e81613b58565b92915050565b60008060408385031215613b9b57613b9a613aeb565b5b6000613ba985828601613b39565b9250506020613bba85828601613b6f565b9150509250929050565b60008115159050919050565b613bd981613bc4565b82525050565b6000602082019050613bf46000830184613bd0565b92915050565b613c0381613b4e565b82525050565b6000602082019050613c1e6000830184613bfa565b92915050565b600060208284031215613c3a57613c39613aeb565b5b6000613c4884828501613b39565b91505092915050565b6000819050919050565b6000613c76613c71613c6c84613af0565b613c51565b613af0565b9050919050565b6000613c8882613c5b565b9050919050565b6000613c9a82613c7d565b9050919050565b613caa81613c8f565b82525050565b6000602082019050613cc56000830184613ca1565b92915050565b600060208284031215613ce157613ce0613aeb565b5b6000613cef84828501613b6f565b91505092915050565b600080600060608486031215613d1157613d10613aeb565b5b6000613d1f86828701613b39565b9350506020613d3086828701613b39565b9250506040613d4186828701613b6f565b9150509250925092565b613d5481613b10565b82525050565b6000602082019050613d6f6000830184613d4b565b92915050565b600060ff82169050919050565b613d8b81613d75565b82525050565b6000602082019050613da66000830184613d82565b92915050565b613db581613bc4565b8114613dc057600080fd5b50565b600081359050613dd281613dac565b92915050565b60008060408385031215613def57613dee613aeb565b5b6000613dfd85828601613b39565b9250506020613e0e85828601613dc3565b9150509250929050565b600080600060608486031215613e3157613e30613aeb565b5b6000613e3f86828701613b6f565b9350506020613e5086828701613b6f565b9250506040613e6186828701613b6f565b9150509250925092565b600060208284031215613e8157613e80613aeb565b5b6000613e8f84828501613dc3565b91505092915050565b60008060408385031215613eaf57613eae613aeb565b5b6000613ebd85828601613b39565b9250506020613ece85828601613b39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1f57607f821691505b602082108103613f3257613f31613ed8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f6e602083613a44565b9150613f7982613f38565b602082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fde82613b4e565b9150613fe983613b4e565b9250828202613ff781613b4e565b9150828204841483151761400e5761400d613fa4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404f82613b4e565b915061405a83613b4e565b92508261406a57614069614015565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006140d1602f83613a44565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614163602883613a44565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b60006141a482613b4e565b91506141af83613b4e565b92508282019050808211156141c7576141c6613fa4565b5b92915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f2073776170546f6b656e734174416d6f756e7400000000000000000000000000602082015250565b6000614229603383613a44565b9150614234826141cd565b604082019050919050565b600060208201905081810360008301526142588161421c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142bb603983613a44565b91506142c68261425f565b604082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061434d602583613a44565b9150614358826142f1565b604082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143df602483613a44565b91506143ea82614383565b604082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614471603583613a44565b915061447c82614415565b604082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614503603483613a44565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e206d6178546f6b656e73466f72537761706261636b00000000000000000000602082015250565b6000614595603683613a44565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614627602683613a44565b9150614632826145cb565b604082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b9602483613a44565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061474b602283613a44565b9150614756826146ef565b604082019050919050565b6000602082019050818103600083015261477a8161473e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147dd602583613a44565b91506147e882614781565b604082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486f602383613a44565b915061487a82614813565b604082019050919050565b6000602082019050818103600083015261489e81614862565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148db601683613a44565b91506148e6826148a5565b602082019050919050565b6000602082019050818103600083015261490a816148ce565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614993604983613a44565b915061499e82614911565b606082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a25603583613a44565b9150614a30826149c9565b604082019050919050565b60006020820190508181036000830152614a5481614a18565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a91601383613a44565b9150614a9c82614a5b565b602082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b23603683613a44565b9150614b2e82614ac7565b604082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b6000614b6482613b4e565b9150614b6f83613b4e565b9250828203905081811115614b8757614b86613fa4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be9602683613a44565b9150614bf482614b8d565b604082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081905092915050565b50565b6000614c3a600083614c1f565b9150614c4582614c2a565b600082019050919050565b6000614c5b82614c2d565b9150819050919050565b6000606082019050614c7a6000830186613bfa565b614c876020830185613bfa565b614c946040830184613bfa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d0981613b22565b92915050565b600060208284031215614d2557614d24613aeb565b5b6000614d3384828501614cfa565b91505092915050565b6000819050919050565b6000614d61614d5c614d5784614d3c565b613c51565b613b4e565b9050919050565b614d7181614d46565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dac81613b10565b82525050565b6000614dbe8383614da3565b60208301905092915050565b6000602082019050919050565b6000614de282614d77565b614dec8185614d82565b9350614df783614d93565b8060005b83811015614e28578151614e0f8882614db2565b9750614e1a83614dca565b925050600181019050614dfb565b5085935050505092915050565b600060a082019050614e4a6000830188613bfa565b614e576020830187614d68565b8181036040830152614e698186614dd7565b9050614e786060830185613d4b565b614e856080830184613bfa565b9695505050505050565b600060c082019050614ea46000830189613d4b565b614eb16020830188613bfa565b614ebe6040830187614d68565b614ecb6060830186614d68565b614ed86080830185613d4b565b614ee560a0830184613bfa565b979650505050505050565b600081519050614eff81613b58565b92915050565b600080600060608486031215614f1e57614f1d613aeb565b5b6000614f2c86828701614ef0565b9350506020614f3d86828701614ef0565b9250506040614f4e86828701614ef0565b915050925092509256fea2646970667358221220ecc780ec2dcce0b3eb4811340da011745a0268caf1dd385195339a6c551b572464736f6c63430008130033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cd7578063f2fde38b14610d02578063f637434214610d2b578063f8b45b0514610d5657610376565b8063dd62ed3e14610c44578063e2f4560514610c81578063e884f26014610cac57610376565b8063c876d0b9116100d1578063c876d0b914610b86578063c8c8ebe414610bb1578063d257b34f14610bdc578063d85ba06314610c1957610376565b8063c024666814610b0b578063c17b5b8c14610b34578063c18bc19514610b5d57610376565b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d714610a29578063a9059cbb14610a66578063b62496f514610aa3578063bbc0c74214610ae057610376565b80639c3b4fdc146109a85780639fccce32146109d3578063a0d82dc5146109fe57610376565b806392136913116101a05780639213691314610900578063924de9b71461092b57806395d89b41146109545780639a7a23d61461097f57610376565b80638a8c523c146108935780638da5cb5b146108aa5780638ea5220f146108d557610376565b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146107d75780637af8ed9c146108025780637bce5a041461083f5780638095d5641461086a57610376565b8063751039fc146107585780637571336a1461078357806375f0a874146107ac57610376565b80636a486a8e1161027a5780636a486a8e146106ae5780636ddd1713146106d957806370a0823114610704578063715018a61461074157610376565b80634a62bb651461061b5780634fbee193146106465780636303516c1461068357610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d578063313ce5671461058857806339509351146105b357806349bd5a5e146105f057610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630cec0aa3146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d81565b60405161039d9190613ac9565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613b84565b610e13565b6040516103da9190613bdf565b60405180910390f35b3480156103ef57600080fd5b506103f8610e31565b6040516104059190613c09565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c24565b610e37565b6040516104429190613bdf565b60405180910390f35b34801561045757600080fd5b50610460610e57565b60405161046d9190613cb0565b60405180910390f35b34801561048257600080fd5b5061048b610e7b565b6040516104989190613c09565b60405180910390f35b3480156104ad57600080fd5b506104b6610e85565b6040516104c39190613c09565b60405180910390f35b3480156104d857600080fd5b506104e1610e8b565b6040516104ee9190613c09565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613ccb565b610e91565b005b34801561052c57600080fd5b5061054760048036038101906105429190613cf8565b610fa0565b6040516105549190613bdf565b60405180910390f35b34801561056957600080fd5b50610572611098565b60405161057f9190613d5a565b60405180910390f35b34801561059457600080fd5b5061059d61109e565b6040516105aa9190613d91565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613b84565b6110a7565b6040516105e79190613bdf565b60405180910390f35b3480156105fc57600080fd5b50610605611153565b6040516106129190613d5a565b60405180910390f35b34801561062757600080fd5b50610630611177565b60405161063d9190613bdf565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c24565b61118a565b60405161067a9190613bdf565b60405180910390f35b34801561068f57600080fd5b506106986111e0565b6040516106a59190613d5a565b60405180910390f35b3480156106ba57600080fd5b506106c3611206565b6040516106d09190613c09565b60405180910390f35b3480156106e557600080fd5b506106ee61120c565b6040516106fb9190613bdf565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c24565b61121f565b6040516107389190613c09565b60405180910390f35b34801561074d57600080fd5b50610756611267565b005b34801561076457600080fd5b5061076d6112ef565b60405161077a9190613bdf565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190613dd8565b61138f565b005b3480156107b857600080fd5b506107c1611466565b6040516107ce9190613d5a565b60405180910390f35b3480156107e357600080fd5b506107ec61148c565b6040516107f99190613c09565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613ccb565b611492565b6040516108369190613bdf565b60405180910390f35b34801561084b57600080fd5b50610854611585565b6040516108619190613c09565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613e18565b61158b565b005b34801561089f57600080fd5b506108a8611654565b005b3480156108b657600080fd5b506108bf611708565b6040516108cc9190613d5a565b60405180910390f35b3480156108e157600080fd5b506108ea611732565b6040516108f79190613d5a565b60405180910390f35b34801561090c57600080fd5b50610915611758565b6040516109229190613c09565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613e6b565b61175e565b005b34801561096057600080fd5b506109696117f7565b6040516109769190613ac9565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613dd8565b611889565b005b3480156109b457600080fd5b506109bd6119a1565b6040516109ca9190613c09565b60405180910390f35b3480156109df57600080fd5b506109e86119a7565b6040516109f59190613c09565b60405180910390f35b348015610a0a57600080fd5b50610a136119ad565b604051610a209190613c09565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613b84565b6119b3565b604051610a5d9190613bdf565b60405180910390f35b348015610a7257600080fd5b50610a8d6004803603810190610a889190613b84565b611a9e565b604051610a9a9190613bdf565b60405180910390f35b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613c24565b611abc565b604051610ad79190613bdf565b60405180910390f35b348015610aec57600080fd5b50610af5611adc565b604051610b029190613bdf565b60405180910390f35b348015610b1757600080fd5b50610b326004803603810190610b2d9190613dd8565b611aef565b005b348015610b4057600080fd5b50610b5b6004803603810190610b569190613e18565b611c14565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190613ccb565b611cdd565b005b348015610b9257600080fd5b50610b9b611dc6565b604051610ba89190613bdf565b60405180910390f35b348015610bbd57600080fd5b50610bc6611dd9565b604051610bd39190613c09565b60405180910390f35b348015610be857600080fd5b50610c036004803603810190610bfe9190613ccb565b611ddf565b604051610c109190613bdf565b60405180910390f35b348015610c2557600080fd5b50610c2e611f5b565b604051610c3b9190613c09565b60405180910390f35b348015610c5057600080fd5b50610c6b6004803603810190610c669190613e98565b611f61565b604051610c789190613c09565b60405180910390f35b348015610c8d57600080fd5b50610c96611fe8565b604051610ca39190613c09565b60405180910390f35b348015610cb857600080fd5b50610cc1611fee565b604051610cce9190613bdf565b60405180910390f35b348015610ce357600080fd5b50610cec61208e565b604051610cf99190613c09565b60405180910390f35b348015610d0e57600080fd5b50610d296004803603810190610d249190613c24565b612094565b005b348015610d3757600080fd5b50610d4061218b565b604051610d4d9190613c09565b60405180910390f35b348015610d6257600080fd5b50610d6b612191565b604051610d789190613c09565b60405180910390f35b606060038054610d9090613f07565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90613f07565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b6000610e27610e20612197565b848461219f565b6001905092915050565b60145481565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601a5481565b60195481565b610e99612197565b73ffffffffffffffffffffffffffffffffffffffff16610eb7611708565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613f84565b60405180910390fd5b670de0b6b3a76400006103e86001610f23610e7b565b610f2d9190613fd3565b610f379190614044565b610f419190614044565b811015610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906140e7565b60405180910390fd5b670de0b6b3a764000081610f979190613fd3565b600b8190555050565b6000610fad848484612368565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ff8612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614179565b60405180910390fd5b61108c85611084612197565b85840361219f565b60019150509392505050565b61dead81565b60006012905090565b60006111496110b4612197565b8484600160006110c2612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111449190614199565b61219f565b6001905092915050565b7f000000000000000000000000d5ce34ef0fb6ea470751b0059b8b597e7ccf3b3f81565b600d60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126f612197565b73ffffffffffffffffffffffffffffffffffffffff1661128d611708565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613f84565b60405180910390fd5b6112ed6000612fff565b565b60006112f9612197565b73ffffffffffffffffffffffffffffffffffffffff16611317611708565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613f84565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611397612197565b73ffffffffffffffffffffffffffffffffffffffff166113b5611708565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613f84565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600061149c612197565b73ffffffffffffffffffffffffffffffffffffffff166114ba611708565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613f84565b60405180910390fd5b600954821015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061423f565b60405180910390fd5b620186a0611561610e7b565b8361156c9190613fd3565b6115769190614044565b600a8190555060019050919050565b60115481565b611593612197565b73ffffffffffffffffffffffffffffffffffffffff166115b1611708565b73ffffffffffffffffffffffffffffffffffffffff1614611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613f84565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461162f9190614199565b6116399190614199565b6010819055506028601054111561164f57600080fd5b505050565b61165c612197565b73ffffffffffffffffffffffffffffffffffffffff1661167a611708565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613f84565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b611766612197565b73ffffffffffffffffffffffffffffffffffffffff16611784611708565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613f84565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461180690613f07565b80601f016020809104026020016040519081016040528092919081815260200182805461183290613f07565b801561187f5780601f106118545761010080835404028352916020019161187f565b820191906000526020600020905b81548152906001019060200180831161186257829003601f168201915b5050505050905090565b611891612197565b73ffffffffffffffffffffffffffffffffffffffff166118af611708565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613f84565b60405180910390fd5b7f000000000000000000000000d5ce34ef0fb6ea470751b0059b8b597e7ccf3b3f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906142d1565b60405180910390fd5b61199d82826130c5565b5050565b60135481565b601b5481565b60185481565b600080600160006119c2612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614363565b60405180910390fd5b611a93611a8a612197565b8585840361219f565b600191505092915050565b6000611ab2611aab612197565b8484612368565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611af7612197565b73ffffffffffffffffffffffffffffffffffffffff16611b15611708565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613f84565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c089190613bdf565b60405180910390a25050565b611c1c612197565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611708565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613f84565b60405180910390fd5b826016819055508160178190555080601881905550601854601754601654611cb89190614199565b611cc29190614199565b60158190555060286014541115611cd857600080fd5b505050565b611ce5612197565b73ffffffffffffffffffffffffffffffffffffffff16611d03611708565b73ffffffffffffffffffffffffffffffffffffffff1614611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613f84565b60405180910390fd5b6005811015611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d94906143f5565b60405180910390fd5b6103e8611da8610e7b565b82611db39190613fd3565b611dbd9190614044565b600c8190555050565b600f60009054906101000a900460ff1681565b600b5481565b6000611de9612197565b73ffffffffffffffffffffffffffffffffffffffff16611e07611708565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613f84565b60405180910390fd5b6001821015611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614487565b60405180910390fd5b6101f4821115611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90614519565b60405180910390fd5b600a54821115611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f22906145ab565b60405180910390fd5b620186a0611f37610e7b565b83611f429190613fd3565b611f4c9190614044565b60098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611ff8612197565b73ffffffffffffffffffffffffffffffffffffffff16612016611708565b73ffffffffffffffffffffffffffffffffffffffff161461206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390613f84565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61209c612197565b73ffffffffffffffffffffffffffffffffffffffff166120ba611708565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361217f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121769061463d565b60405180910390fd5b61218881612fff565b50565b60175481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906146cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490614761565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161235b9190613c09565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614885565b60405180910390fd5b6000810361245f5761245a83836000613166565b612ffa565b600d60009054906101000a900460ff1615612b225761247c611708565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ea57506124ba611708565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561255d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125765750600560149054906101000a900460ff16155b15612b2157600d60019054906101000a900460ff1661267057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126305750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906148f1565b60405180910390fd5b5b600f60009054906101000a900460ff16156128385761268d611708565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561271457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276c57507f000000000000000000000000d5ce34ef0fb6ea470751b0059b8b597e7ccf3b3f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128375743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906149a9565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128db5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298257600b54811115612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614a3b565b60405180910390fd5b600c546129318361121f565b8261293c9190614199565b111561297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614aa7565b60405180910390fd5b612b20565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a255750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7457600b54811115612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614b39565b60405180910390fd5b612b1f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1e57600c54612ad18361121f565b82612adc9190614199565b1115612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490614aa7565b60405180910390fd5b5b5b5b5b5b6000612b2d3061121f565b905060006009548210159050808015612b525750600d60029054906101000a900460ff165b8015612b6b5750600560149054906101000a900460ff16155b8015612bc15750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c175750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c6d5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cb1576001600560146101000a81548160ff021916908315150217905550612c956133e5565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d675750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d7157600090505b60008115612fea57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dd457506000601554115b15612ea157612e016064612df3601554886136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060155460175482612e149190613fd3565b612e1e9190614044565b601a6000828254612e2f9190614199565b9250508190555060155460185482612e479190613fd3565b612e519190614044565b601b6000828254612e629190614199565b9250508190555060155460165482612e7a9190613fd3565b612e849190614044565b60196000828254612e959190614199565b92505081905550612fc6565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efc57506000601054115b15612fc557612f296064612f1b601054886136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060105460125482612f3c9190613fd3565b612f469190614044565b601a6000828254612f579190614199565b9250508190555060105460135482612f6f9190613fd3565b612f799190614044565b601b6000828254612f8a9190614199565b9250508190555060105460115482612fa29190613fd3565b612fac9190614044565b60196000828254612fbd9190614199565b925050819055505b5b6000811115612fdb57612fda873083613166565b5b8085612fe79190614b59565b94505b612ff5878787613166565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323b90614885565b60405180910390fd5b61324f8383836136e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc90614bff565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133689190614199565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133cc9190613c09565b60405180910390a36133df8484846136e5565b50505050565b60006133f03061121f565b90506000601b54601954601a546134079190614199565b6134119190614199565b90506000808314806134235750600082145b15613430575050506136b2565b600a5483111561344057600a5492505b6000600283601a54866134539190613fd3565b61345d9190614044565b6134679190614044565b9050600061347e82866136ea90919063ffffffff16565b9050600047905061348e82613700565b60006134a382476136ea90919063ffffffff16565b905060006134ce876134c0601954856136b490919063ffffffff16565b6136ca90919063ffffffff16565b905060006134f9886134eb601b54866136b490919063ffffffff16565b6136ca90919063ffffffff16565b9050600081838561350a9190614b59565b6135149190614b59565b90506000601a8190555060006019819055506000601b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161357490614c50565b60006040518083038185875af1925050503d80600081146135b1576040519150601f19603f3d011682016040523d82523d6000602084013e6135b6565b606091505b5050809850506000871180156135cc5750600081115b15613619576135db878261393d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601a5460405161361093929190614c65565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161365f90614c50565b60006040518083038185875af1925050503d806000811461369c576040519150601f19603f3d011682016040523d82523d6000602084013e6136a1565b606091505b505080985050505050505050505050505b565b600081836136c29190613fd3565b905092915050565b600081836136d89190614044565b905092915050565b505050565b505050565b600081836136f89190614b59565b905092915050565b6000600267ffffffffffffffff81111561371d5761371c614c9c565b5b60405190808252806020026020018201604052801561374b5781602001602082028036833780820191505090505b509050308160008151811061376357613762614ccb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613808573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061382c9190614d0f565b816001815181106138405761383f614ccb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138a5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461219f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613907959493929190614e35565b600060405180830381600087803b15801561392157600080fd5b505af1158015613935573d6000803e3d6000fd5b505050505050565b613968307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461219f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139ef96959493929190614e8f565b60606040518083038185885af1158015613a0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a329190614f05565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a73578082015181840152602081019050613a58565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a9b82613a39565b613aa58185613a44565b9350613ab5818560208601613a55565b613abe81613a7f565b840191505092915050565b60006020820190508181036000830152613ae38184613a90565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1b82613af0565b9050919050565b613b2b81613b10565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b6000819050919050565b613b6181613b4e565b8114613b6c57600080fd5b50565b600081359050613b7e81613b58565b92915050565b60008060408385031215613b9b57613b9a613aeb565b5b6000613ba985828601613b39565b9250506020613bba85828601613b6f565b9150509250929050565b60008115159050919050565b613bd981613bc4565b82525050565b6000602082019050613bf46000830184613bd0565b92915050565b613c0381613b4e565b82525050565b6000602082019050613c1e6000830184613bfa565b92915050565b600060208284031215613c3a57613c39613aeb565b5b6000613c4884828501613b39565b91505092915050565b6000819050919050565b6000613c76613c71613c6c84613af0565b613c51565b613af0565b9050919050565b6000613c8882613c5b565b9050919050565b6000613c9a82613c7d565b9050919050565b613caa81613c8f565b82525050565b6000602082019050613cc56000830184613ca1565b92915050565b600060208284031215613ce157613ce0613aeb565b5b6000613cef84828501613b6f565b91505092915050565b600080600060608486031215613d1157613d10613aeb565b5b6000613d1f86828701613b39565b9350506020613d3086828701613b39565b9250506040613d4186828701613b6f565b9150509250925092565b613d5481613b10565b82525050565b6000602082019050613d6f6000830184613d4b565b92915050565b600060ff82169050919050565b613d8b81613d75565b82525050565b6000602082019050613da66000830184613d82565b92915050565b613db581613bc4565b8114613dc057600080fd5b50565b600081359050613dd281613dac565b92915050565b60008060408385031215613def57613dee613aeb565b5b6000613dfd85828601613b39565b9250506020613e0e85828601613dc3565b9150509250929050565b600080600060608486031215613e3157613e30613aeb565b5b6000613e3f86828701613b6f565b9350506020613e5086828701613b6f565b9250506040613e6186828701613b6f565b9150509250925092565b600060208284031215613e8157613e80613aeb565b5b6000613e8f84828501613dc3565b91505092915050565b60008060408385031215613eaf57613eae613aeb565b5b6000613ebd85828601613b39565b9250506020613ece85828601613b39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1f57607f821691505b602082108103613f3257613f31613ed8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f6e602083613a44565b9150613f7982613f38565b602082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fde82613b4e565b9150613fe983613b4e565b9250828202613ff781613b4e565b9150828204841483151761400e5761400d613fa4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404f82613b4e565b915061405a83613b4e565b92508261406a57614069614015565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006140d1602f83613a44565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614163602883613a44565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b60006141a482613b4e565b91506141af83613b4e565b92508282019050808211156141c7576141c6613fa4565b5b92915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f2073776170546f6b656e734174416d6f756e7400000000000000000000000000602082015250565b6000614229603383613a44565b9150614234826141cd565b604082019050919050565b600060208201905081810360008301526142588161421c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142bb603983613a44565b91506142c68261425f565b604082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061434d602583613a44565b9150614358826142f1565b604082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143df602483613a44565b91506143ea82614383565b604082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614471603583613a44565b915061447c82614415565b604082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614503603483613a44565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e206d6178546f6b656e73466f72537761706261636b00000000000000000000602082015250565b6000614595603683613a44565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614627602683613a44565b9150614632826145cb565b604082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b9602483613a44565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061474b602283613a44565b9150614756826146ef565b604082019050919050565b6000602082019050818103600083015261477a8161473e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147dd602583613a44565b91506147e882614781565b604082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486f602383613a44565b915061487a82614813565b604082019050919050565b6000602082019050818103600083015261489e81614862565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148db601683613a44565b91506148e6826148a5565b602082019050919050565b6000602082019050818103600083015261490a816148ce565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614993604983613a44565b915061499e82614911565b606082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a25603583613a44565b9150614a30826149c9565b604082019050919050565b60006020820190508181036000830152614a5481614a18565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a91601383613a44565b9150614a9c82614a5b565b602082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b23603683613a44565b9150614b2e82614ac7565b604082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b6000614b6482613b4e565b9150614b6f83613b4e565b9250828203905081811115614b8757614b86613fa4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be9602683613a44565b9150614bf482614b8d565b604082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081905092915050565b50565b6000614c3a600083614c1f565b9150614c4582614c2a565b600082019050919050565b6000614c5b82614c2d565b9150819050919050565b6000606082019050614c7a6000830186613bfa565b614c876020830185613bfa565b614c946040830184613bfa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d0981613b22565b92915050565b600060208284031215614d2557614d24613aeb565b5b6000614d3384828501614cfa565b91505092915050565b6000819050919050565b6000614d61614d5c614d5784614d3c565b613c51565b613b4e565b9050919050565b614d7181614d46565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dac81613b10565b82525050565b6000614dbe8383614da3565b60208301905092915050565b6000602082019050919050565b6000614de282614d77565b614dec8185614d82565b9350614df783614d93565b8060005b83811015614e28578151614e0f8882614db2565b9750614e1a83614dca565b925050600181019050614dfb565b5085935050505092915050565b600060a082019050614e4a6000830188613bfa565b614e576020830187614d68565b8181036040830152614e698186614dd7565b9050614e786060830185613d4b565b614e856080830184613bfa565b9695505050505050565b600060c082019050614ea46000830189613d4b565b614eb16020830188613bfa565b614ebe6040830187614d68565b614ecb6060830186614d68565b614ed86080830185613d4b565b614ee560a0830184613bfa565b979650505050505050565b600081519050614eff81613b58565b92915050565b600080600060608486031215614f1e57614f1d613aeb565b5b6000614f2c86828701614ef0565b9350506020614f3d86828701614ef0565b9250506040614f4e86828701614ef0565b915050925092509256fea2646970667358221220ecc780ec2dcce0b3eb4811340da011745a0268caf1dd385195339a6c551b572464736f6c63430008130033
Deployed Bytecode Sourcemap
27858:18112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6125:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8292:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28874:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29310:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27933:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7245:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29094:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29054;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34753:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8943:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28036:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7087:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9844:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27991:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28387:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38239:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28196:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28909:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28467:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7416:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1431:103;;;;;;;;;;;;;:::i;:::-;;32973:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35573:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28128:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28268:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34234:361;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28767:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36185:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32786:112;;;;;;;;;;;;;:::i;:::-;;780:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28165:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28944:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35858:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6344:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37731:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28841:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29134:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29020:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10562:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7756:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29531:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28427:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37414:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36823:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35153:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28685:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28312:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33471:619;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28733:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7994:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28228:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33165:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28804:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1689:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28982:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28354:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6125:100;6179:13;6212:5;6205:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6125:100;:::o;8292:169::-;8375:4;8392:39;8401:12;:10;:12::i;:::-;8415:7;8424:6;8392:8;:39::i;:::-;8449:4;8442:11;;8292:169;;;;:::o;28874:28::-;;;;:::o;29310:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27933:51::-;;;:::o;7245:108::-;7306:7;7333:12;;7326:19;;7245:108;:::o;29094:33::-;;;;:::o;29054:::-;;;;:::o;34753:275::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34890:4:::1;34882;34877:1;34861:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34860:26;;;;:::i;:::-;34859:35;;;;:::i;:::-;34849:6;:45;;34827:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35013:6;35003;:17;;;;:::i;:::-;34980:20;:40;;;;34753:275:::0;:::o;8943:492::-;9083:4;9100:36;9110:6;9118:9;9129:6;9100:9;:36::i;:::-;9149:24;9176:11;:19;9188:6;9176:19;;;;;;;;;;;;;;;:33;9196:12;:10;:12::i;:::-;9176:33;;;;;;;;;;;;;;;;9149:60;;9248:6;9228:16;:26;;9220:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9335:57;9344:6;9352:12;:10;:12::i;:::-;9385:6;9366:16;:25;9335:8;:57::i;:::-;9423:4;9416:11;;;8943:492;;;;;:::o;28036:53::-;28082:6;28036:53;:::o;7087:93::-;7145:5;7170:2;7163:9;;7087:93;:::o;9844:215::-;9932:4;9949:80;9958:12;:10;:12::i;:::-;9972:7;10018:10;9981:11;:25;9993:12;:10;:12::i;:::-;9981:25;;;;;;;;;;;;;;;:34;10007:7;9981:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9949:8;:80::i;:::-;10047:4;10040:11;;9844:215;;;;:::o;27991:38::-;;;:::o;28387:33::-;;;;;;;;;;;;;:::o;38239:126::-;38305:4;38329:19;:28;38349:7;38329:28;;;;;;;;;;;;;;;;;;;;;;;;;38322:35;;38239:126;;;:::o;28196:23::-;;;;;;;;;;;;;:::o;28909:28::-;;;;:::o;28467:31::-;;;;;;;;;;;;;:::o;7416:127::-;7490:7;7517:9;:18;7527:7;7517:18;;;;;;;;;;;;;;;;7510:25;;7416:127;;;:::o;1431:103::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1496:30:::1;1523:1;1496:18;:30::i;:::-;1431:103::o:0;32973:121::-;33025:4;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33059:5:::1;33042:14;;:22;;;;;;;;;;;;;;;;;;33082:4;33075:11;;32973:121:::0;:::o;35573:167::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35728:4:::1;35686:31;:39;35718:6;35686:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35573:167:::0;;:::o;28128:30::-;;;;;;;;;;;;;:::o;28268:35::-;;;;:::o;34234:361::-;34344:4;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34401:18:::1;;34388:9;:31;;34366:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;34559:6;34544:13;:11;:13::i;:::-;34532:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;34509:20;:56;;;;34583:4;34576:11;;34234:361:::0;;;:::o;28767:30::-;;;;:::o;36185:414::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36353:13:::1;36335:15;:31;;;;36395:13;36377:15;:31;;;;36431:7;36419:9;:19;;;;36500:9;;36482:15;;36464;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36449:12;:60;;;;36544:2;36528:12;;:18;;36520:27;;;::::0;::::1;;36185:414:::0;;;:::o;32786:112::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32857:4:::1;32841:13;;:20;;;;;;;;;;;;;;;;;;32886:4;32872:11;;:18;;;;;;;;;;;;;;;;;;32786:112::o:0;780:87::-;826:7;853:6;;;;;;;;;;;846:13;;780:87;:::o;28165:24::-;;;;;;;;;;;;;:::o;28944:31::-;;;;:::o;35858:100::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35943:7:::1;35929:11;;:21;;;;;;;;;;;;;;;;;;35858:100:::0;:::o;6344:104::-;6400:13;6433:7;6426:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6344:104;:::o;37731:304::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37875:13:::1;37867:21;;:4;:21;;::::0;37845:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37986:41;38015:4;38021:5;37986:28;:41::i;:::-;37731:304:::0;;:::o;28841:24::-;;;;:::o;29134:27::-;;;;:::o;29020:25::-;;;;:::o;10562:413::-;10655:4;10672:24;10699:11;:25;10711:12;:10;:12::i;:::-;10699:25;;;;;;;;;;;;;;;:34;10725:7;10699:34;;;;;;;;;;;;;;;;10672:61;;10772:15;10752:16;:35;;10744:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10865:67;10874:12;:10;:12::i;:::-;10888:7;10916:15;10897:16;:34;10865:8;:67::i;:::-;10963:4;10956:11;;;10562:413;;;;:::o;7756:175::-;7842:4;7859:42;7869:12;:10;:12::i;:::-;7883:9;7894:6;7859:9;:42::i;:::-;7919:4;7912:11;;7756:175;;;;:::o;29531:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28427:33::-;;;;;;;;;;;;;:::o;37414:182::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37530:8:::1;37499:19;:28;37519:7;37499:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37570:7;37554:34;;;37579:8;37554:34;;;;;;:::i;:::-;;;;;;;;37414:182:::0;;:::o;36823:424::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36993:13:::1;36974:16;:32;;;;37036:13;37017:16;:32;;;;37073:7;37060:10;:20;;;;37145:10;;37126:16;;37107;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37091:13;:64;;;;37191:2;37174:13;;:19;;37166:28;;;::::0;::::1;;36823:424:::0;;;:::o;35153:232::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35262:1:::1;35252:6;:11;;35230:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35373:4;35359:13;:11;:13::i;:::-;35350:6;:22;;;;:::i;:::-;:27;;;;:::i;:::-;35338:9;:39;;;;35153:232:::0;:::o;28685:39::-;;;;;;;;;;;;;:::o;28312:35::-;;;;:::o;33471:619::-;33579:4;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33636:1:::1;33623:9;:14;;33601:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;33764:3;33751:9;:16;;33729:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;33893:20;;33880:9;:33;;33858:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;34054:6;34039:13;:11;:13::i;:::-;34027:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;34006:18;:54;;;;34078:4;34071:11;;33471:619:::0;;;:::o;28733:27::-;;;;:::o;7994:151::-;8083:7;8110:11;:18;8122:5;8110:18;;;;;;;;;;;;;;;:27;8129:7;8110:27;;;;;;;;;;;;;;;;8103:34;;7994:151;;;;:::o;28228:33::-;;;;:::o;33165:135::-;33225:4;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33265:5:::1;33242:20;;:28;;;;;;;;;;;;;;;;;;33288:4;33281:11;;33165:135:::0;:::o;28804:30::-;;;;:::o;1689:201::-;1011:12;:10;:12::i;:::-;1000:23;;:7;:5;:7::i;:::-;:23;;;992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1798:1:::1;1778:22;;:8;:22;;::::0;1770:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1854:28;1873:8;1854:18;:28::i;:::-;1689:201:::0;:::o;28982:31::-;;;;:::o;28354:24::-;;;;:::o;154:98::-;207:7;234:10;227:17;;154:98;:::o;14246:380::-;14399:1;14382:19;;:5;:19;;;14374:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14480:1;14461:21;;:7;:21;;;14453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14564:6;14534:11;:18;14546:5;14534:18;;;;;;;;;;;;;;;:27;14553:7;14534:27;;;;;;;;;;;;;;;:36;;;;14602:7;14586:32;;14595:5;14586:32;;;14611:6;14586:32;;;;;;:::i;:::-;;;;;;;;14246:380;;;:::o;38373:4717::-;38521:1;38505:18;;:4;:18;;;38497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38598:1;38584:16;;:2;:16;;;38576:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38667:1;38657:6;:11;38653:93;;38685:28;38701:4;38707:2;38711:1;38685:15;:28::i;:::-;38728:7;;38653:93;38762:14;;;;;;;;;;;38758:2487;;;38823:7;:5;:7::i;:::-;38815:15;;:4;:15;;;;:49;;;;;38857:7;:5;:7::i;:::-;38851:13;;:2;:13;;;;38815:49;:86;;;;;38899:1;38885:16;;:2;:16;;;;38815:86;:128;;;;;38936:6;38922:21;;:2;:21;;;;38815:128;:158;;;;;38965:8;;;;;;;;;;;38964:9;38815:158;38793:2441;;;39013:13;;;;;;;;;;;39008:223;;39085:19;:25;39105:4;39085:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39114:19;:23;39134:2;39114:23;;;;;;;;;;;;;;;;;;;;;;;;;39085:52;39051:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39008:223;39387:20;;;;;;;;;;;39383:641;;;39468:7;:5;:7::i;:::-;39462:13;;:2;:13;;;;:72;;;;;39518:15;39504:30;;:2;:30;;;;39462:72;:129;;;;;39577:13;39563:28;;:2;:28;;;;39462:129;39432:573;;;39755:12;39680:28;:39;39709:9;39680:39;;;;;;;;;;;;;;;;:87;39642:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;39969:12;39927:28;:39;39956:9;39927:39;;;;;;;;;;;;;;;:54;;;;39432:573;39383:641;40098:25;:31;40124:4;40098:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40155:31;:35;40187:2;40155:35;;;;;;;;;;;;;;;;;;;;;;;;;40154:36;40098:92;40072:1147;;;40277:20;;40267:6;:30;;40233:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40485:9;;40468:13;40478:2;40468:9;:13::i;:::-;40459:6;:22;;;;:::i;:::-;:35;;40425:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40072:1147;;;40663:25;:29;40689:2;40663:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40718:31;:37;40750:4;40718:37;;;;;;;;;;;;;;;;;;;;;;;;;40717:38;40663:92;40637:582;;;40842:20;;40832:6;:30;;40798:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40637:582;;;40999:31;:35;41031:2;40999:35;;;;;;;;;;;;;;;;;;;;;;;;;40994:225;;41119:9;;41102:13;41112:2;41102:9;:13::i;:::-;41093:6;:22;;;;:::i;:::-;:35;;41059:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40994:225;40637:582;40072:1147;38793:2441;38758:2487;41257:28;41288:24;41306:4;41288:9;:24::i;:::-;41257:55;;41325:12;41364:18;;41340:20;:42;;41325:57;;41413:7;:35;;;;;41437:11;;;;;;;;;;;41413:35;:61;;;;;41466:8;;;;;;;;;;;41465:9;41413:61;:110;;;;;41492:25;:31;41518:4;41492:31;;;;;;;;;;;;;;;;;;;;;;;;;41491:32;41413:110;:153;;;;;41541:19;:25;41561:4;41541:25;;;;;;;;;;;;;;;;;;;;;;;;;41540:26;41413:153;:194;;;;;41584:19;:23;41604:2;41584:23;;;;;;;;;;;;;;;;;;;;;;;;;41583:24;41413:194;41395:326;;;41645:4;41634:8;;:15;;;;;;;;;;;;;;;;;;41666:10;:8;:10::i;:::-;41704:5;41693:8;;:16;;;;;;;;;;;;;;;;;;41395:326;41733:12;41749:8;;;;;;;;;;;41748:9;41733:24;;41859:19;:25;41879:4;41859:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41888:19;:23;41908:2;41888:23;;;;;;;;;;;;;;;;;;;;;;;;;41859:52;41855:100;;;41938:5;41928:15;;41855:100;41967:12;42072:7;42068:969;;;42124:25;:29;42150:2;42124:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42173:1;42157:13;;:17;42124:50;42120:768;;;42202:34;42232:3;42202:25;42213:13;;42202:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42195:41;;42305:13;;42285:16;;42278:4;:23;;;;:::i;:::-;42277:41;;;;:::i;:::-;42255:18;;:63;;;;;;;:::i;:::-;;;;;;;;42375:13;;42361:10;;42354:4;:17;;;;:::i;:::-;42353:35;;;;:::i;:::-;42337:12;;:51;;;;;;;:::i;:::-;;;;;;;;42457:13;;42437:16;;42430:4;:23;;;;:::i;:::-;42429:41;;;;:::i;:::-;42407:18;;:63;;;;;;;:::i;:::-;;;;;;;;42120:768;;;42532:25;:31;42558:4;42532:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42582:1;42567:12;;:16;42532:51;42528:360;;;42611:33;42640:3;42611:24;42622:12;;42611:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42604:40;;42712:12;;42693:15;;42686:4;:22;;;;:::i;:::-;42685:39;;;;:::i;:::-;42663:18;;:61;;;;;;;:::i;:::-;;;;;;;;42780:12;;42767:9;;42760:4;:16;;;;:::i;:::-;42759:33;;;;:::i;:::-;42743:12;;:49;;;;;;;:::i;:::-;;;;;;;;42860:12;;42841:15;;42834:4;:22;;;;:::i;:::-;42833:39;;;;:::i;:::-;42811:18;;:61;;;;;;;:::i;:::-;;;;;;;;42528:360;42120:768;42915:1;42908:4;:8;42904:91;;;42937:42;42953:4;42967;42974;42937:15;:42::i;:::-;42904:91;43021:4;43011:14;;;;;:::i;:::-;;;42068:969;43049:33;43065:4;43071:2;43075:6;43049:15;:33::i;:::-;38486:4604;;;;38373:4717;;;;:::o;2050:191::-;2124:16;2143:6;;;;;;;;;;;2124:25;;2169:8;2160:6;;:17;;;;;;;;;;;;;;;;;;2224:8;2193:40;;2214:8;2193:40;;;;;;;;;;;;2113:128;2050:191;:::o;38043:188::-;38160:5;38126:25;:31;38152:4;38126:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38217:5;38183:40;;38211:4;38183:40;;;;;;;;;;;;38043:188;;:::o;11465:733::-;11623:1;11605:20;;:6;:20;;;11597:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11707:1;11686:23;;:9;:23;;;11678:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11762:47;11783:6;11791:9;11802:6;11762:20;:47::i;:::-;11822:21;11846:9;:17;11856:6;11846:17;;;;;;;;;;;;;;;;11822:41;;11899:6;11882:13;:23;;11874:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12020:6;12004:13;:22;11984:9;:17;11994:6;11984:17;;;;;;;;;;;;;;;:42;;;;12072:6;12048:9;:20;12058:9;12048:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12113:9;12096:35;;12105:6;12096:35;;;12124:6;12096:35;;;;;;:::i;:::-;;;;;;;;12144:46;12164:6;12172:9;12183:6;12144:19;:46::i;:::-;11586:612;11465:733;;;:::o;44217:1750::-;44256:23;44282:24;44300:4;44282:9;:24::i;:::-;44256:50;;44317:25;44413:12;;44379:18;;44345;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44317:108;;44436:12;44484:1;44465:15;:20;:46;;;;44510:1;44489:17;:22;44465:46;44461:85;;;44528:7;;;;;44461:85;44580:20;;44562:15;:38;44558:109;;;44635:20;;44617:38;;44558:109;44728:23;44841:1;44808:17;44773:18;;44755:15;:36;;;;:::i;:::-;44754:71;;;;:::i;:::-;:88;;;;:::i;:::-;44728:114;;44853:26;44882:36;44902:15;44882;:19;;:36;;;;:::i;:::-;44853:65;;44931:25;44959:21;44931:49;;44993:36;45010:18;44993:16;:36::i;:::-;45042:18;45063:44;45089:17;45063:21;:25;;:44;;;;:::i;:::-;45042:65;;45120:23;45146:81;45199:17;45146:34;45161:18;;45146:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;45120:107;;45238:17;45258:51;45291:17;45258:28;45273:12;;45258:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45238:71;;45322:23;45379:9;45361:15;45348:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;45322:66;;45422:1;45401:18;:22;;;;45455:1;45434:18;:22;;;;45482:1;45467:12;:16;;;;45518:9;;;;;;;;;;;45510:23;;45541:9;45510:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45496:59;;;;;45590:1;45572:15;:19;:42;;;;;45613:1;45595:15;:19;45572:42;45568:278;;;45631:46;45644:15;45661;45631:12;:46::i;:::-;45697:137;45730:18;45767:15;45801:18;;45697:137;;;;;;;;:::i;:::-;;;;;;;;45568:278;45880:15;;;;;;;;;;;45872:29;;45923:21;45872:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45858:101;;;;;44245:1722;;;;;;;;;;44217:1750;:::o;19175:98::-;19233:7;19264:1;19260;:5;;;;:::i;:::-;19253:12;;19175:98;;;;:::o;19574:::-;19632:7;19663:1;19659;:5;;;;:::i;:::-;19652:12;;19574:98;;;;:::o;15226:125::-;;;;:::o;15955:124::-;;;;:::o;18818:98::-;18876:7;18907:1;18903;:5;;;;:::i;:::-;18896:12;;18818:98;;;;:::o;43098:589::-;43224:21;43262:1;43248:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43224:40;;43293:4;43275;43280:1;43275:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43319:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43309:4;43314:1;43309:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43354:62;43371:4;43386:15;43404:11;43354:8;:62::i;:::-;43455:15;:66;;;43536:11;43562:1;43606:4;43633;43653:15;43455:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43153:534;43098:589;:::o;43695:514::-;43843:62;43860:4;43875:15;43893:11;43843:8;:62::i;:::-;43948:15;:31;;;43987:9;44020:4;44040:11;44066:1;44109;44152:8;;;;;;;;;;;44175:15;43948:253;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43695:514;;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;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;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:238::-;13902:34;13898:1;13890:6;13886:14;13879:58;13971:21;13966:2;13958:6;13954:15;13947:46;13762:238;:::o;14006:366::-;14148:3;14169:67;14233:2;14228:3;14169:67;:::i;:::-;14162:74;;14245:93;14334:3;14245:93;:::i;:::-;14363:2;14358:3;14354:12;14347:19;;14006:366;;;:::o;14378:419::-;14544:4;14582:2;14571:9;14567:18;14559:26;;14631:9;14625:4;14621:20;14617:1;14606:9;14602:17;14595:47;14659:131;14785:4;14659:131;:::i;:::-;14651:139;;14378:419;;;:::o;14803:244::-;14943:34;14939:1;14931:6;14927:14;14920:58;15012:27;15007:2;14999:6;14995:15;14988:52;14803:244;:::o;15053:366::-;15195:3;15216:67;15280:2;15275:3;15216:67;:::i;:::-;15209:74;;15292:93;15381:3;15292:93;:::i;:::-;15410:2;15405:3;15401:12;15394:19;;15053:366;;;:::o;15425:419::-;15591:4;15629:2;15618:9;15614:18;15606:26;;15678:9;15672:4;15668:20;15664:1;15653:9;15649:17;15642:47;15706:131;15832:4;15706:131;:::i;:::-;15698:139;;15425:419;;;:::o;15850:224::-;15990:34;15986:1;15978:6;15974:14;15967:58;16059:7;16054:2;16046:6;16042:15;16035:32;15850:224;:::o;16080:366::-;16222:3;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16319:93;16408:3;16319:93;:::i;:::-;16437:2;16432:3;16428:12;16421:19;;16080:366;;;:::o;16452:419::-;16618:4;16656:2;16645:9;16641:18;16633:26;;16705:9;16699:4;16695:20;16691:1;16680:9;16676:17;16669:47;16733:131;16859:4;16733:131;:::i;:::-;16725:139;;16452:419;;;:::o;16877:223::-;17017:34;17013:1;17005:6;17001:14;16994:58;17086:6;17081:2;17073:6;17069:15;17062:31;16877:223;:::o;17106:366::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17106:366;;;:::o;17478:419::-;17644:4;17682:2;17671:9;17667:18;17659:26;;17731:9;17725:4;17721:20;17717:1;17706:9;17702:17;17695:47;17759:131;17885:4;17759:131;:::i;:::-;17751:139;;17478:419;;;:::o;17903:240::-;18043:34;18039:1;18031:6;18027:14;18020:58;18112:23;18107:2;18099:6;18095:15;18088:48;17903:240;:::o;18149:366::-;18291:3;18312:67;18376:2;18371:3;18312:67;:::i;:::-;18305:74;;18388:93;18477:3;18388:93;:::i;:::-;18506:2;18501:3;18497:12;18490:19;;18149:366;;;:::o;18521:419::-;18687:4;18725:2;18714:9;18710:18;18702:26;;18774:9;18768:4;18764:20;18760:1;18749:9;18745:17;18738:47;18802:131;18928:4;18802:131;:::i;:::-;18794:139;;18521:419;;;:::o;18946:239::-;19086:34;19082:1;19074:6;19070:14;19063:58;19155:22;19150:2;19142:6;19138:15;19131:47;18946:239;:::o;19191:366::-;19333:3;19354:67;19418:2;19413:3;19354:67;:::i;:::-;19347:74;;19430:93;19519:3;19430:93;:::i;:::-;19548:2;19543:3;19539:12;19532:19;;19191:366;;;:::o;19563:419::-;19729:4;19767:2;19756:9;19752:18;19744:26;;19816:9;19810:4;19806:20;19802:1;19791:9;19787:17;19780:47;19844:131;19970:4;19844:131;:::i;:::-;19836:139;;19563:419;;;:::o;19988:241::-;20128:34;20124:1;20116:6;20112:14;20105:58;20197:24;20192:2;20184:6;20180:15;20173:49;19988:241;:::o;20235:366::-;20377:3;20398:67;20462:2;20457:3;20398:67;:::i;:::-;20391:74;;20474:93;20563:3;20474:93;:::i;:::-;20592:2;20587:3;20583:12;20576:19;;20235:366;;;:::o;20607:419::-;20773:4;20811:2;20800:9;20796:18;20788:26;;20860:9;20854:4;20850:20;20846:1;20835:9;20831:17;20824:47;20888:131;21014:4;20888:131;:::i;:::-;20880:139;;20607:419;;;:::o;21032:225::-;21172:34;21168:1;21160:6;21156:14;21149:58;21241:8;21236:2;21228:6;21224:15;21217:33;21032:225;:::o;21263:366::-;21405:3;21426:67;21490:2;21485:3;21426:67;:::i;:::-;21419:74;;21502:93;21591:3;21502:93;:::i;:::-;21620:2;21615:3;21611:12;21604:19;;21263:366;;;:::o;21635:419::-;21801:4;21839:2;21828:9;21824:18;21816:26;;21888:9;21882:4;21878:20;21874:1;21863:9;21859:17;21852:47;21916:131;22042:4;21916:131;:::i;:::-;21908:139;;21635:419;;;:::o;22060:223::-;22200:34;22196:1;22188:6;22184:14;22177:58;22269:6;22264:2;22256:6;22252:15;22245:31;22060:223;:::o;22289:366::-;22431:3;22452:67;22516:2;22511:3;22452:67;:::i;:::-;22445:74;;22528:93;22617:3;22528:93;:::i;:::-;22646:2;22641:3;22637:12;22630:19;;22289:366;;;:::o;22661:419::-;22827:4;22865:2;22854:9;22850:18;22842:26;;22914:9;22908:4;22904:20;22900:1;22889:9;22885:17;22878:47;22942:131;23068:4;22942:131;:::i;:::-;22934:139;;22661:419;;;:::o;23086:221::-;23226:34;23222:1;23214:6;23210:14;23203:58;23295:4;23290:2;23282:6;23278:15;23271:29;23086:221;:::o;23313:366::-;23455:3;23476:67;23540:2;23535:3;23476:67;:::i;:::-;23469:74;;23552:93;23641:3;23552:93;:::i;:::-;23670:2;23665:3;23661:12;23654:19;;23313:366;;;:::o;23685:419::-;23851:4;23889:2;23878:9;23874:18;23866:26;;23938:9;23932:4;23928:20;23924:1;23913:9;23909:17;23902:47;23966:131;24092:4;23966:131;:::i;:::-;23958:139;;23685:419;;;:::o;24110:224::-;24250:34;24246:1;24238:6;24234:14;24227:58;24319:7;24314:2;24306:6;24302:15;24295:32;24110:224;:::o;24340:366::-;24482:3;24503:67;24567:2;24562:3;24503:67;:::i;:::-;24496:74;;24579:93;24668:3;24579:93;:::i;:::-;24697:2;24692:3;24688:12;24681:19;;24340:366;;;:::o;24712:419::-;24878:4;24916:2;24905:9;24901:18;24893:26;;24965:9;24959:4;24955:20;24951:1;24940:9;24936:17;24929:47;24993:131;25119:4;24993:131;:::i;:::-;24985:139;;24712:419;;;:::o;25137:222::-;25277:34;25273:1;25265:6;25261:14;25254:58;25346:5;25341:2;25333:6;25329:15;25322:30;25137:222;:::o;25365:366::-;25507:3;25528:67;25592:2;25587:3;25528:67;:::i;:::-;25521:74;;25604:93;25693:3;25604:93;:::i;:::-;25722:2;25717:3;25713:12;25706:19;;25365:366;;;:::o;25737:419::-;25903:4;25941:2;25930:9;25926:18;25918:26;;25990:9;25984:4;25980:20;25976:1;25965:9;25961:17;25954:47;26018:131;26144:4;26018:131;:::i;:::-;26010:139;;25737:419;;;:::o;26162:172::-;26302:24;26298:1;26290:6;26286:14;26279:48;26162:172;:::o;26340:366::-;26482:3;26503:67;26567:2;26562:3;26503:67;:::i;:::-;26496:74;;26579:93;26668:3;26579:93;:::i;:::-;26697:2;26692:3;26688:12;26681:19;;26340:366;;;:::o;26712:419::-;26878:4;26916:2;26905:9;26901:18;26893:26;;26965:9;26959:4;26955:20;26951:1;26940:9;26936:17;26929:47;26993:131;27119:4;26993:131;:::i;:::-;26985:139;;26712:419;;;:::o;27137:297::-;27277:34;27273:1;27265:6;27261:14;27254:58;27346:34;27341:2;27333:6;27329:15;27322:59;27415:11;27410:2;27402:6;27398:15;27391:36;27137:297;:::o;27440:366::-;27582:3;27603:67;27667:2;27662:3;27603:67;:::i;:::-;27596:74;;27679:93;27768:3;27679:93;:::i;:::-;27797:2;27792:3;27788:12;27781:19;;27440:366;;;:::o;27812:419::-;27978:4;28016:2;28005:9;28001:18;27993:26;;28065:9;28059:4;28055:20;28051:1;28040:9;28036:17;28029:47;28093:131;28219:4;28093:131;:::i;:::-;28085:139;;27812:419;;;:::o;28237:240::-;28377:34;28373:1;28365:6;28361:14;28354:58;28446:23;28441:2;28433:6;28429:15;28422:48;28237:240;:::o;28483:366::-;28625:3;28646:67;28710:2;28705:3;28646:67;:::i;:::-;28639:74;;28722:93;28811:3;28722:93;:::i;:::-;28840:2;28835:3;28831:12;28824:19;;28483:366;;;:::o;28855:419::-;29021:4;29059:2;29048:9;29044:18;29036:26;;29108:9;29102:4;29098:20;29094:1;29083:9;29079:17;29072:47;29136:131;29262:4;29136:131;:::i;:::-;29128:139;;28855:419;;;:::o;29280:169::-;29420:21;29416:1;29408:6;29404:14;29397:45;29280:169;:::o;29455:366::-;29597:3;29618:67;29682:2;29677:3;29618:67;:::i;:::-;29611:74;;29694:93;29783:3;29694:93;:::i;:::-;29812:2;29807:3;29803:12;29796:19;;29455:366;;;:::o;29827:419::-;29993:4;30031:2;30020:9;30016:18;30008:26;;30080:9;30074:4;30070:20;30066:1;30055:9;30051:17;30044:47;30108:131;30234:4;30108:131;:::i;:::-;30100:139;;29827:419;;;:::o;30252:241::-;30392:34;30388:1;30380:6;30376:14;30369:58;30461:24;30456:2;30448:6;30444:15;30437:49;30252:241;:::o;30499:366::-;30641:3;30662:67;30726:2;30721:3;30662:67;:::i;:::-;30655:74;;30738:93;30827:3;30738:93;:::i;:::-;30856:2;30851:3;30847:12;30840:19;;30499:366;;;:::o;30871:419::-;31037:4;31075:2;31064:9;31060:18;31052:26;;31124:9;31118:4;31114:20;31110:1;31099:9;31095:17;31088:47;31152:131;31278:4;31152:131;:::i;:::-;31144:139;;30871:419;;;:::o;31296:194::-;31336:4;31356:20;31374:1;31356:20;:::i;:::-;31351:25;;31390:20;31408:1;31390:20;:::i;:::-;31385:25;;31434:1;31431;31427:9;31419:17;;31458:1;31452:4;31449:11;31446:37;;;31463:18;;:::i;:::-;31446:37;31296:194;;;;:::o;31496:225::-;31636:34;31632:1;31624:6;31620:14;31613:58;31705:8;31700:2;31692:6;31688:15;31681:33;31496:225;:::o;31727:366::-;31869:3;31890:67;31954:2;31949:3;31890:67;:::i;:::-;31883:74;;31966:93;32055:3;31966:93;:::i;:::-;32084:2;32079:3;32075:12;32068:19;;31727:366;;;:::o;32099:419::-;32265:4;32303:2;32292:9;32288:18;32280:26;;32352:9;32346:4;32342:20;32338:1;32327:9;32323:17;32316:47;32380:131;32506:4;32380:131;:::i;:::-;32372:139;;32099:419;;;:::o;32524:147::-;32625:11;32662:3;32647:18;;32524:147;;;;:::o;32677:114::-;;:::o;32797:398::-;32956:3;32977:83;33058:1;33053:3;32977:83;:::i;:::-;32970:90;;33069:93;33158:3;33069:93;:::i;:::-;33187:1;33182:3;33178:11;33171:18;;32797:398;;;:::o;33201:379::-;33385:3;33407:147;33550:3;33407:147;:::i;:::-;33400:154;;33571:3;33564:10;;33201:379;;;:::o;33586:442::-;33735:4;33773:2;33762:9;33758:18;33750:26;;33786:71;33854:1;33843:9;33839:17;33830:6;33786:71;:::i;:::-;33867:72;33935:2;33924:9;33920:18;33911:6;33867:72;:::i;:::-;33949;34017:2;34006:9;34002:18;33993:6;33949:72;:::i;:::-;33586:442;;;;;;:::o;34034:180::-;34082:77;34079:1;34072:88;34179:4;34176:1;34169:15;34203:4;34200:1;34193:15;34220:180;34268:77;34265:1;34258:88;34365:4;34362:1;34355:15;34389:4;34386:1;34379:15;34406:143;34463:5;34494:6;34488:13;34479:22;;34510:33;34537:5;34510:33;:::i;:::-;34406:143;;;;:::o;34555:351::-;34625:6;34674:2;34662:9;34653:7;34649:23;34645:32;34642:119;;;34680:79;;:::i;:::-;34642:119;34800:1;34825:64;34881:7;34872:6;34861:9;34857:22;34825:64;:::i;:::-;34815:74;;34771:128;34555:351;;;;:::o;34912:85::-;34957:7;34986:5;34975:16;;34912:85;;;:::o;35003:158::-;35061:9;35094:61;35112:42;35121:32;35147:5;35121:32;:::i;:::-;35112:42;:::i;:::-;35094:61;:::i;:::-;35081:74;;35003:158;;;:::o;35167:147::-;35262:45;35301:5;35262:45;:::i;:::-;35257:3;35250:58;35167:147;;:::o;35320:114::-;35387:6;35421:5;35415:12;35405:22;;35320:114;;;:::o;35440:184::-;35539:11;35573:6;35568:3;35561:19;35613:4;35608:3;35604:14;35589:29;;35440:184;;;;:::o;35630:132::-;35697:4;35720:3;35712:11;;35750:4;35745:3;35741:14;35733:22;;35630:132;;;:::o;35768:108::-;35845:24;35863:5;35845:24;:::i;:::-;35840:3;35833:37;35768:108;;:::o;35882:179::-;35951:10;35972:46;36014:3;36006:6;35972:46;:::i;:::-;36050:4;36045:3;36041:14;36027:28;;35882:179;;;;:::o;36067:113::-;36137:4;36169;36164:3;36160:14;36152:22;;36067:113;;;:::o;36216:732::-;36335:3;36364:54;36412:5;36364:54;:::i;:::-;36434:86;36513:6;36508:3;36434:86;:::i;:::-;36427:93;;36544:56;36594:5;36544:56;:::i;:::-;36623:7;36654:1;36639:284;36664:6;36661:1;36658:13;36639:284;;;36740:6;36734:13;36767:63;36826:3;36811:13;36767:63;:::i;:::-;36760:70;;36853:60;36906:6;36853:60;:::i;:::-;36843:70;;36699:224;36686:1;36683;36679:9;36674:14;;36639:284;;;36643:14;36939:3;36932:10;;36340:608;;;36216:732;;;;:::o;36954:831::-;37217:4;37255:3;37244:9;37240:19;37232:27;;37269:71;37337:1;37326:9;37322:17;37313:6;37269:71;:::i;:::-;37350:80;37426:2;37415:9;37411:18;37402:6;37350:80;:::i;:::-;37477:9;37471:4;37467:20;37462:2;37451:9;37447:18;37440:48;37505:108;37608:4;37599:6;37505:108;:::i;:::-;37497:116;;37623:72;37691:2;37680:9;37676:18;37667:6;37623:72;:::i;:::-;37705:73;37773:3;37762:9;37758:19;37749:6;37705:73;:::i;:::-;36954:831;;;;;;;;:::o;37791:807::-;38040:4;38078:3;38067:9;38063:19;38055:27;;38092:71;38160:1;38149:9;38145:17;38136:6;38092:71;:::i;:::-;38173:72;38241:2;38230:9;38226:18;38217:6;38173:72;:::i;:::-;38255:80;38331:2;38320:9;38316:18;38307:6;38255:80;:::i;:::-;38345;38421:2;38410:9;38406:18;38397:6;38345:80;:::i;:::-;38435:73;38503:3;38492:9;38488:19;38479:6;38435:73;:::i;:::-;38518;38586:3;38575:9;38571:19;38562:6;38518:73;:::i;:::-;37791:807;;;;;;;;;:::o;38604:143::-;38661:5;38692:6;38686:13;38677:22;;38708:33;38735:5;38708:33;:::i;:::-;38604:143;;;;:::o;38753:663::-;38841:6;38849;38857;38906:2;38894:9;38885:7;38881:23;38877:32;38874:119;;;38912:79;;:::i;:::-;38874:119;39032:1;39057:64;39113:7;39104:6;39093:9;39089:22;39057:64;:::i;:::-;39047:74;;39003:128;39170:2;39196:64;39252:7;39243:6;39232:9;39228:22;39196:64;:::i;:::-;39186:74;;39141:129;39309:2;39335:64;39391:7;39382:6;39371:9;39367:22;39335:64;:::i;:::-;39325:74;;39280:129;38753:663;;;;;:::o
Swarm Source
ipfs://ecc780ec2dcce0b3eb4811340da011745a0268caf1dd385195339a6c551b5724
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.