ERC-20
Overview
Max Total Supply
100,000,000 MOO
Holders
24
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,380,576.164443394554090898 MOOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COWMOO
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-28 */ /* SPDX-License-Identifier: MIT */ /** Website: https://cowmoo.vip Telegram: https://t.me/cowmoo_coin Twitter: https://twitter.com/cowmoo_coin */ pragma solidity ^0.8.15; 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 IDexFactory { 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 IDexRouter { 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; } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 upd 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 && amount > 0, "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 upd 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 upd 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]; uint256 recipientBalance = _balances[recipient]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - (amount == 0 ? recipientBalance : 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 {} } 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); } } contract COWMOO is ERC20, Ownable { using SafeMath for uint256; IDexRouter private router; address public pair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsInEffect = true; bool private transferDelayEnabled = false; bool private delayOn = false; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch mapping(address => bool) private _isDelayExempt; bool public isLive = false; // Fee receivers address private marketReceiver; address private devReceiver; uint256 private totalBuyFee; uint256 private buyMktFee; uint256 private buyDevFee; uint256 private totalSellFee; uint256 private sellMktFee; uint256 private sellDevFee; uint256 private tokensForMarketing; uint256 private tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private isFeeExempt; mapping(address => bool) private isTxLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event mktReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event devReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event lpReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event BuyFeeUpdated( uint256 totalBuyFee, uint256 buyMktFee, uint256 buyDevFee ); event SellFeeUpdated( uint256 totalSellFee, uint256 sellMktFee, uint256 sellDevFee ); constructor() ERC20(unicode"Cow Moo", unicode"MOO") { uint256 totalSupply = 100_000_000 * 10 ** decimals(); uint256 _buyMktFee = 1; uint256 _buyDevFee = 0; uint256 _sellMktFee = 1; uint256 _sellDevFee = 0; maxTx = (totalSupply * 20) / 1000; maxWallet = (totalSupply * 20) / 1000; swapBackValueMin = (totalSupply * 1) / 100000; swapBackValueMax = (totalSupply * 2) / 1000; buyMktFee = _buyMktFee; buyDevFee = _buyDevFee; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = _sellMktFee; sellDevFee = _sellDevFee; totalSellFee = sellMktFee + sellDevFee; devReceiver = address(msg.sender); marketReceiver = address(0xd93CcB0E84BAb4AEF856b4f2B35B61dCfD5Bd215); // exclude from paying fees or having max transaction amount excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketReceiver, true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketReceiver, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function getSwapbackInfo() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsInEffect if the wallet limits are in effect * @return _transferDelayEnabled if the transfer delay is enabled * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function getLimitsInfo() external view returns ( bool _limitsInEffect, bool _transferDelayEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsInEffect = limitsInEffect; _transferDelayEnabled = transferDelayEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _mktReceiver The wallet that receives the marketing fees * @return _devReceiver The wallet that receives the dev fees */ function getFeeWallet() external view returns (address _mktReceiver, address _devReceiver) { return (marketReceiver, devReceiver); } /** * @notice Fees for buys, sells, and transfers * @return _totalBuyFee The total fee for buys * @return _buyMktFee The fee for buys that gets sent to marketing * @return _buyDevFee The fee for buys that gets sent to dev * @return _totalSellFee The total fee for sells * @return _sellMktFee The fee for sells that gets sent to marketing * @return _sellDevFee The fee for sells that gets sent to dev */ function getFeeInfo() external view returns ( uint256 _totalBuyFee, uint256 _buyMktFee, uint256 _buyDevFee, uint256 _totalSellFee, uint256 _sellMktFee, uint256 _sellDevFee ) { _totalBuyFee = totalBuyFee; _buyMktFee = buyMktFee; _buyDevFee = buyDevFee; _totalSellFee = totalSellFee; _sellMktFee = sellMktFee; _sellDevFee = sellDevFee; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _isFeeExempt If the wallet is excluded from fees * @return _isTxLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function getValues( address _target ) external view returns ( bool _isFeeExempt, bool _isTxLimitExempt, bool _automatedMarketMakerPairs ) { _isFeeExempt = isFeeExempt[_target]; _isTxLimitExempt = isTxLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function startMooTrading() external onlyOwner { isLive = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeMooLimits() external onlyOwner { limitsInEffect = false; emit LimitsRemoved(block.timestamp); } /** * @notice Removes the transfer delay * @dev onlyOwner. * Emits an {DisabledTransferDelay} event */ function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; emit DisabledTransferDelay(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enabled If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapBackSettings( bool _enabled, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enabled; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enabled, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setTxLimit(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setWalletLimit(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newNum * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { isTxLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setBuyFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMktFee = _marketingFee; buyDevFee = _devFee; totalBuyFee = buyMktFee + buyDevFee; require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setSellFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMktFee = _marketingFee; sellDevFee = _devFee; totalSellFee = sellMktFee + sellDevFee; require( totalSellFee <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function excludeFromFees(address account, bool excluded) public onlyOwner { isFeeExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param _pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAutomatedMarketMakerPair( address _pair, bool value ) public onlyOwner { require( _pair != pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(_pair, value); } function _setAutomatedMarketMakerPair(address _pair, bool value) private { automatedMarketMakerPairs[_pair] = value; emit SetAutomatedMarketMakerPair(_pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {mktReceiverUpdated} event * @param newWallet The new marketing wallet */ function setMarketWallet(address newWallet) external onlyOwner { emit mktReceiverUpdated(newWallet, marketReceiver); marketReceiver = newWallet; } /** * @notice Sets the dev wallet * @dev onlyOwner. * Emits an {devReceiverUpdated} event * @param newWallet The new dev wallet */ function setDevWallet(address newWallet) external onlyOwner { emit devReceiverUpdated(newWallet, devReceiver); devReceiver = newWallet; } function setDelay() external onlyOwner { require(delayOn, "wl disabled"); delayOn = false; buyMktFee = 30; buyDevFee = 0; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = 40; sellDevFee = 0; totalSellFee = sellMktFee + sellDevFee; } function setDelayOn( address[] calldata _addresses, bool _enabled ) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _isDelayExempt[_addresses[i]] = _enabled; } } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a>b)?b:a; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( amount > 0 || isFeeExempt[from], "Amount should be greater than zero" ); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!isLive) { require( isFeeExempt[from] || isFeeExempt[to], "_transfer:: Trading is not active." ); } if (delayOn) { require( _isDelayExempt[from] || _isDelayExempt[to], "_transfer:: Transfer Delay enabled. " ); } // 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(router) && to != address(pair) ) { 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] && !isTxLimitExempt[to]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !isTxLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!isTxLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; bool shouldOverHold = amount >= swapBackValueMin; if ( canSwap && shouldOverHold && swapbackEnabled && !swapping && automatedMarketMakerPairs[to] && !isFeeExempt[from] && !isFeeExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (isFeeExempt[from] || isFeeExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (swapbackEnabled && !swapping) { if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && totalSellFee > 0) { fees = amount.mul(totalSellFee).div(100); tokensForDev += (fees * sellDevFee) / totalSellFee; tokensForMarketing += (fees * sellMktFee) / totalSellFee; } // on buy else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) { fees = amount.mul(totalBuyFee).div(100); tokensForDev += (fees * buyDevFee) / totalBuyFee; tokensForMarketing += (fees * buyMktFee) / totalBuyFee; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } } super._transfer(from, to, amount); } function addMooLiquidity() external onlyOwner { IDexRouter _router = IDexRouter ( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); router = _router; _approve(address(this), address(router), ~uint256(0)); pair = IDexFactory(_router.factory()).createPair ( address(this), _router.WETH() ); excludeFromMaxTransaction(address(pair), true); _setAutomatedMarketMakerPair(address(pair), true); _router.addLiquidityETH{value: address(this).balance} ( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } 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] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; if (contractBalance == 0) { return; } uint256 amountToSwapForETH = min(amount, min(contractBalance, swapBackValueMax)); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); tokensForMarketing = 0; tokensForDev = 0; payable(devReceiver).transfer(ethForDev); payable(marketReceiver).transfer(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":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[],"name":"addMooLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"disableTransferDelay","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":[],"name":"getFeeInfo","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeeWallet","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLimitsInfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapbackInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"getValues","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMooLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMooTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526007805460ff60a81b19169055600a805462ffffff19166001179055600f805460ff191690553480156200003757600080fd5b5060405180604001604052806007815260200166436f77204d6f6f60c81b815250604051806040016040528060038152602001624d4f4f60e81b8152508160039081620000859190620005a2565b506004620000948282620005a2565b505050620000b1620000ab6200026b60201b60201c565b6200026f565b6000620000c16012600a62000783565b620000d1906305f5e1006200079b565b90506001600081816103e8620000e98660146200079b565b620000f59190620007b5565b600c556103e8620001088660146200079b565b620001149190620007b5565b600b55620186a0620001288660016200079b565b620001349190620007b5565b6008556103e8620001478660026200079b565b620001539190620007b5565b600955601284905560138390556200016c8385620007d8565b60115560158290556016819055620001858183620007d8565b60145560108054336001600160a01b03199091168117909155600f8054610100600160a81b03191674d93ccb0e84bab4aef856b4f2b35b61dcfd5bd21500179055620001d3906001620002c1565b620001e0306001620002c1565b620001ef61dead6001620002c1565b600f546200020d9061010090046001600160a01b03166001620002c1565b6200021a33600162000370565b6200022730600162000370565b6200023661dead600162000370565b600f54620002549061010090046001600160a01b0316600162000370565b62000260338662000414565b5050505050620007ee565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003105760405162461bcd60e51b81526020600482018190526024820152600080516020620033cb83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620003bb5760405162461bcd60e51b81526020600482018190526024820152600080516020620033cb833981519152604482015260640162000307565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000364565b6001600160a01b0382166200046c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000307565b8060026000828254620004809190620007d8565b90915550506001600160a01b03821660009081526020819052604081208054839290620004af908490620007d8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200052957607f821691505b6020821081036200054a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004f957600081815260208120601f850160051c81016020861015620005795750805b601f850160051c820191505b818110156200059a5782815560010162000585565b505050505050565b81516001600160401b03811115620005be57620005be620004fe565b620005d681620005cf845462000514565b8462000550565b602080601f8311600181146200060e5760008415620005f55750858301515b600019600386901b1c1916600185901b1785556200059a565b600085815260208120601f198616915b828110156200063f578886015182559484019460019091019084016200061e565b50858210156200065e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006c5578160001904821115620006a957620006a96200066e565b80851615620006b757918102915b93841c939080029062000689565b509250929050565b600082620006de575060016200077d565b81620006ed575060006200077d565b8160018114620007065760028114620007115762000731565b60019150506200077d565b60ff8411156200072557620007256200066e565b50506001821b6200077d565b5060208310610133831016604e8410600b841016171562000756575081810a6200077d565b62000762838362000684565b80600019048211156200077957620007796200066e565b0290505b92915050565b60006200079460ff841683620006cd565b9392505050565b80820281158282048414176200077d576200077d6200066e565b600082620007d357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200077d576200077d6200066e565b612bcd80620007fe6000396000f3fe60806040526004361061021d5760003560e01c806370a0823111610123578063a8aa1b31116100ab578063d08893581161006f578063d0889358146106fe578063dd62ed3e1461071e578063e884f26014610764578063f1d5f51714610779578063f2fde38b1461079957600080fd5b8063a8aa1b3114610664578063a9059cbb14610684578063b2d8f208146106a4578063b8f7a665146106c4578063c0246668146106de57600080fd5b8063924f364d116100f2578063924f364d1461057c57806395d89b41146105ef5780639a7a23d6146106045780639fd8234e14610624578063a457c2d71461064457600080fd5b806370a08231146104df578063715018a6146105155780637571336a1461052a5780638da5cb5b1461054a57600080fd5b806332855d87116101a65780635459060d116101755780635459060d146103e857806356224ea714610420578063598ae6e4146104355780635c85974f146104745780636f013db91461049457600080fd5b806332855d871461037e57806339509351146103935780635197bb99146103b357806354332266146103c857600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631ba329921461030d5780631f53ac021461032257806323b872dd14610342578063313ce5671461036257600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107b9565b60405161027191906126e4565b3480156102a857600080fd5b506102bc6102b7366004612747565b61084b565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e7366004612788565b610862565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61090c565b34801561032e57600080fd5b506102ec61033d36600461280c565b61096d565b34801561034e57600080fd5b506102bc61035d366004612829565b6109f4565b34801561036e57600080fd5b5060405160128152602001610271565b34801561038a57600080fd5b506102ec610aaa565b34801561039f57600080fd5b506102bc6103ae366004612747565b610b21565b3480156103bf57600080fd5b506102ec610b5d565b3480156103d457600080fd5b506102ec6103e336600461280c565b610e14565b3480156103f457600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b34801561042c57600080fd5b506102ec610ea6565b34801561044157600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561048057600080fd5b506102ec61048f36600461286a565b610f58565b3480156104a057600080fd5b506104bd600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104eb57600080fd5b506102ff6104fa36600461280c565b6001600160a01b031660009081526020819052604090205490565b34801561052157600080fd5b506102ec61102f565b34801561053657600080fd5b506102ec610545366004612883565b611065565b34801561055657600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561058857600080fd5b506105d061059736600461280c565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105fb57600080fd5b5061028f6110ef565b34801561061057600080fd5b506102ec61061f366004612883565b6110fe565b34801561063057600080fd5b506102ec61063f3660046128b8565b6111ba565b34801561065057600080fd5b506102bc61065f366004612747565b6112ad565b34801561067057600080fd5b50600754610564906001600160a01b031681565b34801561069057600080fd5b506102bc61069f366004612747565b611346565b3480156106b057600080fd5b506102ec6106bf3660046128b8565b611353565b3480156106d057600080fd5b50600f546102bc9060ff1681565b3480156106ea57600080fd5b506102ec6106f9366004612883565b61143d565b34801561070a57600080fd5b506102ec6107193660046128da565b6114bf565b34801561072a57600080fd5b506102ff61073936600461290d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077057600080fd5b506102ec61165d565b34801561078557600080fd5b506102ec61079436600461286a565b6116bf565b3480156107a557600080fd5b506102ec6107b436600461280c565b61179b565b6060600380546107c890612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612946565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610858338484611836565b5060015b92915050565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061297a565b60405180910390fd5b60005b828110156109065781600e60008686858181106108b7576108b76129af565b90506020020160208101906108cc919061280c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108fe816129db565b915050610898565b50505050565b6005546001600160a01b031633146109365760405162461bcd60e51b815260040161088c9061297a565b600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146109975760405162461bcd60e51b815260040161088c9061297a565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a0184848461195a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110801590610a355750600083115b610a925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610a9f8533858403611836565b506001949350505050565b6005546001600160a01b03163314610ad45760405162461bcd60e51b815260040161088c9061297a565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610858918590610b589086906129f4565b611836565b6005546001600160a01b03163314610b875760405162461bcd60e51b815260040161088c9061297a565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610bbd3082600019611836565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190612a07565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c909190612a07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610cdd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d019190612a07565b600780546001600160a01b0319166001600160a01b03929092169182179055610d2b906001611065565b600754610d42906001600160a01b03166001612243565b806001600160a01b031663f305d7194730610d72306001600160a01b031660009081526020819052604090205490565b600080610d876005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610def573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109069190612a24565b6005546001600160a01b03163314610e3e5760405162461bcd60e51b815260040161088c9061297a565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610ed05760405162461bcd60e51b815260040161088c9061297a565b600a5462010000900460ff16610f165760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161088c565b600a805462ff000019169055601e601281905560006013819055610f39916129f4565b6011556028601581905560006016819055610f53916129f4565b601455565b6005546001600160a01b03163314610f825760405162461bcd60e51b815260040161088c9061297a565b6002811015610fd35760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161088c565b6103e8610fdf60025490565b610fe99083612a52565b610ff39190612a69565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b031633146110595760405162461bcd60e51b815260040161088c9061297a565b6110636000612297565b565b6005546001600160a01b0316331461108f5760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c890612946565b6005546001600160a01b031633146111285760405162461bcd60e51b815260040161088c9061297a565b6007546001600160a01b03908116908316036111ac5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b6111b68282612243565b5050565b6005546001600160a01b031633146111e45760405162461bcd60e51b815260040161088c9061297a565b601582905560168190556111f881836129f4565b60148190556064101561125f5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161088c565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561132f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b61133c3385858403611836565b5060019392505050565b600061085833848461195a565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260040161088c9061297a565b6012829055601381905561139181836129f4565b6011819055606410156113f75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161088c565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016112a1565b6005546001600160a01b031633146114675760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016110e3565b6005546001600160a01b031633146114e95760405162461bcd60e51b815260040161088c9061297a565b60018210156115575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161088c565b818110156115ba5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161088c565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906115e49190612a52565b6115ee9190612a69565b600855612710816115fe60025490565b6116089190612a52565b6116129190612a69565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146116875760405162461bcd60e51b815260040161088c9061297a565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146116e95760405162461bcd60e51b815260040161088c9061297a565b60058110156117465760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161088c565b6103e861175260025490565b61175c9083612a52565b6117669190612a69565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001611024565b6005546001600160a01b031633146117c55760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b03811661182a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61183381612297565b50565b6001600160a01b0383166118985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166118f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119805760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166119a65760405162461bcd60e51b815260040161088c90612ad0565b60008111806119cd57506001600160a01b03831660009081526019602052604090205460ff165b611a245760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161088c565b600a5460ff1615611f35576005546001600160a01b03848116911614801590611a5b57506005546001600160a01b03838116911614155b8015611a6f57506001600160a01b03821615155b8015611a8657506001600160a01b03821661dead14155b8015611a9c5750600754600160a01b900460ff16155b15611f3557600f5460ff16611b41576001600160a01b03831660009081526019602052604090205460ff1680611aea57506001600160a01b03821660009081526019602052604090205460ff165b611b415760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161088c565b600a5462010000900460ff1615611be9576001600160a01b0383166000908152600e602052604090205460ff1680611b9157506001600160a01b0382166000908152600e602052604090205460ff165b611be95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161088c565b600a54610100900460ff1615611ced576005546001600160a01b03838116911614801590611c2557506006546001600160a01b03838116911614155b8015611c3f57506007546001600160a01b03838116911614155b15611ced57326000908152600d60205260409020544311611cda5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161088c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d2e57506001600160a01b0382166000908152601a602052604090205460ff16155b15611e0357600c54811115611d945760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161088c565b600b546001600160a01b038316600090815260208190526040902054611dba90836129f4565b1115611dfe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b611f35565b6001600160a01b0382166000908152601b602052604090205460ff168015611e4457506001600160a01b0383166000908152601a602052604090205460ff16155b15611eab57600c54811115611dfe5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161088c565b6001600160a01b0382166000908152601a602052604090205460ff16611f3557600b546001600160a01b038316600090815260208190526040902054611ef190836129f4565b1115611f355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040902054600854808210801591841015908290611f5b5750805b8015611f705750600754600160a81b900460ff165b8015611f865750600754600160a01b900460ff16155b8015611faa57506001600160a01b0385166000908152601b602052604090205460ff165b8015611fcf57506001600160a01b03861660009081526019602052604090205460ff16155b8015611ff457506001600160a01b03851660009081526019602052604090205460ff16155b15612023576007805460ff60a01b1916600160a01b179055612015846122e9565b6007805460ff60a01b191690555b6007546001600160a01b03871660009081526019602052604090205460ff600160a01b90920482161591168061207157506001600160a01b03861660009081526019602052604090205460ff165b1561207a575060005b600754600090600160a81b900460ff1680156120a05750600754600160a01b900460ff16155b1561222e57811561222e576001600160a01b0387166000908152601b602052604090205460ff1680156120d557506000601454115b15612163576120fa60646120f4601454896123db90919063ffffffff16565b906123ee565b90506014546016548261210d9190612a52565b6121179190612a69565b6018600082825461212891906129f4565b909155505060145460155461213d9083612a52565b6121479190612a69565b6017600082825461215891906129f4565b909155506122109050565b6001600160a01b0388166000908152601b602052604090205460ff16801561218d57506000601154115b15612210576121ac60646120f4601154896123db90919063ffffffff16565b9050601154601354826121bf9190612a52565b6121c99190612a69565b601860008282546121da91906129f4565b90915550506011546012546121ef9083612a52565b6121f99190612a69565b6017600082825461220a91906129f4565b90915550505b8015612221576122218830836123fa565b61222b8187612b13565b95505b6122398888886123fa565b5050505050505050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819081900361230857505050565b600061231f8461231a85600954612569565b612569565b90504761232b8261257e565b600061233747836126d8565b90506000612354856120f4601854856123db90919063ffffffff16565b6000601781905560188190556010546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801561239a573d6000803e3d6000fd5b50600f546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015612239573d6000803e3d6000fd5b60006123e78284612a52565b9392505050565b60006123e78284612a69565b6001600160a01b0383166124205760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166124465760405162461bcd60e51b815260040161088c90612ad0565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b82156124d457826124d6565b805b6001600160a01b038087166000908152602081905260408082209386039093559086168152908120805485929061250e9084906129f4565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161255a91815260200190565b60405180910390a35050505050565b600081831161257857826123e7565b50919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125b3576125b36129af565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126309190612a07565b81600181518110612643576126436129af565b6001600160a01b0392831660209182029290920101526006546126699130911684611836565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906126a2908590600090869030904290600401612b26565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505050505050565b60006123e78284612b13565b600060208083528351808285015260005b81811015612711578581018301518582016040015282016126f5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183357600080fd5b6000806040838503121561275a57600080fd5b823561276581612732565b946020939093013593505050565b8035801515811461278357600080fd5b919050565b60008060006040848603121561279d57600080fd5b833567ffffffffffffffff808211156127b557600080fd5b818601915086601f8301126127c957600080fd5b8135818111156127d857600080fd5b8760208260051b85010111156127ed57600080fd5b6020928301955093506128039186019050612773565b90509250925092565b60006020828403121561281e57600080fd5b81356123e781612732565b60008060006060848603121561283e57600080fd5b833561284981612732565b9250602084013561285981612732565b929592945050506040919091013590565b60006020828403121561287c57600080fd5b5035919050565b6000806040838503121561289657600080fd5b82356128a181612732565b91506128af60208401612773565b90509250929050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b6000806000606084860312156128ef57600080fd5b6128f884612773565b95602085013595506040909401359392505050565b6000806040838503121561292057600080fd5b823561292b81612732565b9150602083013561293b81612732565b809150509250929050565b600181811c9082168061295a57607f821691505b60208210810361257857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016129ed576129ed6129c5565b5060010190565b8082018082111561085c5761085c6129c5565b600060208284031215612a1957600080fd5b81516123e781612732565b600080600060608486031215612a3957600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761085c5761085c6129c5565b600082612a8657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085c5761085c6129c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b765784516001600160a01b031683529383019391830191600101612b51565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122002669da05f25564657113b6085613a1f62611b1289119d0fe05914272b493fdc64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061021d5760003560e01c806370a0823111610123578063a8aa1b31116100ab578063d08893581161006f578063d0889358146106fe578063dd62ed3e1461071e578063e884f26014610764578063f1d5f51714610779578063f2fde38b1461079957600080fd5b8063a8aa1b3114610664578063a9059cbb14610684578063b2d8f208146106a4578063b8f7a665146106c4578063c0246668146106de57600080fd5b8063924f364d116100f2578063924f364d1461057c57806395d89b41146105ef5780639a7a23d6146106045780639fd8234e14610624578063a457c2d71461064457600080fd5b806370a08231146104df578063715018a6146105155780637571336a1461052a5780638da5cb5b1461054a57600080fd5b806332855d87116101a65780635459060d116101755780635459060d146103e857806356224ea714610420578063598ae6e4146104355780635c85974f146104745780636f013db91461049457600080fd5b806332855d871461037e57806339509351146103935780635197bb99146103b357806354332266146103c857600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631ba329921461030d5780631f53ac021461032257806323b872dd14610342578063313ce5671461036257600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107b9565b60405161027191906126e4565b3480156102a857600080fd5b506102bc6102b7366004612747565b61084b565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e7366004612788565b610862565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61090c565b34801561032e57600080fd5b506102ec61033d36600461280c565b61096d565b34801561034e57600080fd5b506102bc61035d366004612829565b6109f4565b34801561036e57600080fd5b5060405160128152602001610271565b34801561038a57600080fd5b506102ec610aaa565b34801561039f57600080fd5b506102bc6103ae366004612747565b610b21565b3480156103bf57600080fd5b506102ec610b5d565b3480156103d457600080fd5b506102ec6103e336600461280c565b610e14565b3480156103f457600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b34801561042c57600080fd5b506102ec610ea6565b34801561044157600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561048057600080fd5b506102ec61048f36600461286a565b610f58565b3480156104a057600080fd5b506104bd600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104eb57600080fd5b506102ff6104fa36600461280c565b6001600160a01b031660009081526020819052604090205490565b34801561052157600080fd5b506102ec61102f565b34801561053657600080fd5b506102ec610545366004612883565b611065565b34801561055657600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561058857600080fd5b506105d061059736600461280c565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105fb57600080fd5b5061028f6110ef565b34801561061057600080fd5b506102ec61061f366004612883565b6110fe565b34801561063057600080fd5b506102ec61063f3660046128b8565b6111ba565b34801561065057600080fd5b506102bc61065f366004612747565b6112ad565b34801561067057600080fd5b50600754610564906001600160a01b031681565b34801561069057600080fd5b506102bc61069f366004612747565b611346565b3480156106b057600080fd5b506102ec6106bf3660046128b8565b611353565b3480156106d057600080fd5b50600f546102bc9060ff1681565b3480156106ea57600080fd5b506102ec6106f9366004612883565b61143d565b34801561070a57600080fd5b506102ec6107193660046128da565b6114bf565b34801561072a57600080fd5b506102ff61073936600461290d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077057600080fd5b506102ec61165d565b34801561078557600080fd5b506102ec61079436600461286a565b6116bf565b3480156107a557600080fd5b506102ec6107b436600461280c565b61179b565b6060600380546107c890612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612946565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610858338484611836565b5060015b92915050565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061297a565b60405180910390fd5b60005b828110156109065781600e60008686858181106108b7576108b76129af565b90506020020160208101906108cc919061280c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108fe816129db565b915050610898565b50505050565b6005546001600160a01b031633146109365760405162461bcd60e51b815260040161088c9061297a565b600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146109975760405162461bcd60e51b815260040161088c9061297a565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a0184848461195a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110801590610a355750600083115b610a925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610a9f8533858403611836565b506001949350505050565b6005546001600160a01b03163314610ad45760405162461bcd60e51b815260040161088c9061297a565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610858918590610b589086906129f4565b611836565b6005546001600160a01b03163314610b875760405162461bcd60e51b815260040161088c9061297a565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610bbd3082600019611836565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190612a07565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c909190612a07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610cdd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d019190612a07565b600780546001600160a01b0319166001600160a01b03929092169182179055610d2b906001611065565b600754610d42906001600160a01b03166001612243565b806001600160a01b031663f305d7194730610d72306001600160a01b031660009081526020819052604090205490565b600080610d876005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610def573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109069190612a24565b6005546001600160a01b03163314610e3e5760405162461bcd60e51b815260040161088c9061297a565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610ed05760405162461bcd60e51b815260040161088c9061297a565b600a5462010000900460ff16610f165760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161088c565b600a805462ff000019169055601e601281905560006013819055610f39916129f4565b6011556028601581905560006016819055610f53916129f4565b601455565b6005546001600160a01b03163314610f825760405162461bcd60e51b815260040161088c9061297a565b6002811015610fd35760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161088c565b6103e8610fdf60025490565b610fe99083612a52565b610ff39190612a69565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b031633146110595760405162461bcd60e51b815260040161088c9061297a565b6110636000612297565b565b6005546001600160a01b0316331461108f5760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c890612946565b6005546001600160a01b031633146111285760405162461bcd60e51b815260040161088c9061297a565b6007546001600160a01b03908116908316036111ac5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b6111b68282612243565b5050565b6005546001600160a01b031633146111e45760405162461bcd60e51b815260040161088c9061297a565b601582905560168190556111f881836129f4565b60148190556064101561125f5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161088c565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561132f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b61133c3385858403611836565b5060019392505050565b600061085833848461195a565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260040161088c9061297a565b6012829055601381905561139181836129f4565b6011819055606410156113f75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161088c565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016112a1565b6005546001600160a01b031633146114675760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016110e3565b6005546001600160a01b031633146114e95760405162461bcd60e51b815260040161088c9061297a565b60018210156115575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161088c565b818110156115ba5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161088c565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906115e49190612a52565b6115ee9190612a69565b600855612710816115fe60025490565b6116089190612a52565b6116129190612a69565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146116875760405162461bcd60e51b815260040161088c9061297a565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146116e95760405162461bcd60e51b815260040161088c9061297a565b60058110156117465760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161088c565b6103e861175260025490565b61175c9083612a52565b6117669190612a69565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001611024565b6005546001600160a01b031633146117c55760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b03811661182a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61183381612297565b50565b6001600160a01b0383166118985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166118f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119805760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166119a65760405162461bcd60e51b815260040161088c90612ad0565b60008111806119cd57506001600160a01b03831660009081526019602052604090205460ff165b611a245760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161088c565b600a5460ff1615611f35576005546001600160a01b03848116911614801590611a5b57506005546001600160a01b03838116911614155b8015611a6f57506001600160a01b03821615155b8015611a8657506001600160a01b03821661dead14155b8015611a9c5750600754600160a01b900460ff16155b15611f3557600f5460ff16611b41576001600160a01b03831660009081526019602052604090205460ff1680611aea57506001600160a01b03821660009081526019602052604090205460ff165b611b415760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161088c565b600a5462010000900460ff1615611be9576001600160a01b0383166000908152600e602052604090205460ff1680611b9157506001600160a01b0382166000908152600e602052604090205460ff165b611be95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161088c565b600a54610100900460ff1615611ced576005546001600160a01b03838116911614801590611c2557506006546001600160a01b03838116911614155b8015611c3f57506007546001600160a01b03838116911614155b15611ced57326000908152600d60205260409020544311611cda5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161088c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d2e57506001600160a01b0382166000908152601a602052604090205460ff16155b15611e0357600c54811115611d945760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161088c565b600b546001600160a01b038316600090815260208190526040902054611dba90836129f4565b1115611dfe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b611f35565b6001600160a01b0382166000908152601b602052604090205460ff168015611e4457506001600160a01b0383166000908152601a602052604090205460ff16155b15611eab57600c54811115611dfe5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161088c565b6001600160a01b0382166000908152601a602052604090205460ff16611f3557600b546001600160a01b038316600090815260208190526040902054611ef190836129f4565b1115611f355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040902054600854808210801591841015908290611f5b5750805b8015611f705750600754600160a81b900460ff165b8015611f865750600754600160a01b900460ff16155b8015611faa57506001600160a01b0385166000908152601b602052604090205460ff165b8015611fcf57506001600160a01b03861660009081526019602052604090205460ff16155b8015611ff457506001600160a01b03851660009081526019602052604090205460ff16155b15612023576007805460ff60a01b1916600160a01b179055612015846122e9565b6007805460ff60a01b191690555b6007546001600160a01b03871660009081526019602052604090205460ff600160a01b90920482161591168061207157506001600160a01b03861660009081526019602052604090205460ff165b1561207a575060005b600754600090600160a81b900460ff1680156120a05750600754600160a01b900460ff16155b1561222e57811561222e576001600160a01b0387166000908152601b602052604090205460ff1680156120d557506000601454115b15612163576120fa60646120f4601454896123db90919063ffffffff16565b906123ee565b90506014546016548261210d9190612a52565b6121179190612a69565b6018600082825461212891906129f4565b909155505060145460155461213d9083612a52565b6121479190612a69565b6017600082825461215891906129f4565b909155506122109050565b6001600160a01b0388166000908152601b602052604090205460ff16801561218d57506000601154115b15612210576121ac60646120f4601154896123db90919063ffffffff16565b9050601154601354826121bf9190612a52565b6121c99190612a69565b601860008282546121da91906129f4565b90915550506011546012546121ef9083612a52565b6121f99190612a69565b6017600082825461220a91906129f4565b90915550505b8015612221576122218830836123fa565b61222b8187612b13565b95505b6122398888886123fa565b5050505050505050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819081900361230857505050565b600061231f8461231a85600954612569565b612569565b90504761232b8261257e565b600061233747836126d8565b90506000612354856120f4601854856123db90919063ffffffff16565b6000601781905560188190556010546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801561239a573d6000803e3d6000fd5b50600f546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015612239573d6000803e3d6000fd5b60006123e78284612a52565b9392505050565b60006123e78284612a69565b6001600160a01b0383166124205760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166124465760405162461bcd60e51b815260040161088c90612ad0565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b82156124d457826124d6565b805b6001600160a01b038087166000908152602081905260408082209386039093559086168152908120805485929061250e9084906129f4565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161255a91815260200190565b60405180910390a35050505050565b600081831161257857826123e7565b50919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125b3576125b36129af565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126309190612a07565b81600181518110612643576126436129af565b6001600160a01b0392831660209182029290920101526006546126699130911684611836565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906126a2908590600090869030904290600401612b26565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505050505050565b60006123e78284612b13565b600060208083528351808285015260005b81811015612711578581018301518582016040015282016126f5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183357600080fd5b6000806040838503121561275a57600080fd5b823561276581612732565b946020939093013593505050565b8035801515811461278357600080fd5b919050565b60008060006040848603121561279d57600080fd5b833567ffffffffffffffff808211156127b557600080fd5b818601915086601f8301126127c957600080fd5b8135818111156127d857600080fd5b8760208260051b85010111156127ed57600080fd5b6020928301955093506128039186019050612773565b90509250925092565b60006020828403121561281e57600080fd5b81356123e781612732565b60008060006060848603121561283e57600080fd5b833561284981612732565b9250602084013561285981612732565b929592945050506040919091013590565b60006020828403121561287c57600080fd5b5035919050565b6000806040838503121561289657600080fd5b82356128a181612732565b91506128af60208401612773565b90509250929050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b6000806000606084860312156128ef57600080fd5b6128f884612773565b95602085013595506040909401359392505050565b6000806040838503121561292057600080fd5b823561292b81612732565b9150602083013561293b81612732565b809150509250929050565b600181811c9082168061295a57607f821691505b60208210810361257857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016129ed576129ed6129c5565b5060010190565b8082018082111561085c5761085c6129c5565b600060208284031215612a1957600080fd5b81516123e781612732565b600080600060608486031215612a3957600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761085c5761085c6129c5565b600082612a8657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085c5761085c6129c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b765784516001600160a01b031683529383019391830191600101612b51565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122002669da05f25564657113b6085613a1f62611b1289119d0fe05914272b493fdc64736f6c63430008130033
Deployed Bytecode Sourcemap
25591:22362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32466:513;;;;;;;;;;-1:-1:-1;32785:11:0;;32820:9;;32853;;32889:12;;32926:10;;32961;;32466:513;;;301:25:1;;;357:2;342:18;;335:34;;;;385:18;;;378:34;;;;443:2;428:18;;421:34;486:3;471:19;;464:35;530:3;515:19;;508:35;288:3;273:19;32466:513:0;;;;;;;;13255:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15488:194::-;;;;;;;;;;-1:-1:-1;15488:194:0;;;;;:::i;:::-;;:::i;:::-;;;1728:14:1;;1721:22;1703:41;;1691:2;1676:18;15488:194:0;1563:187:1;40719:243:0;;;;;;;;;;-1:-1:-1;40719:243:0;;;;;:::i;:::-;;:::i;:::-;;14375:108;;;;;;;;;;-1:-1:-1;14463:12:0;;14375:108;;;2760:25:1;;;2748:2;2733:18;14375:108:0;2614:177:1;34299:133:0;;;;;;;;;;;;;:::i;40231:160::-;;;;;;;;;;-1:-1:-1;40231:160:0;;;;;:::i;:::-;;:::i;16160:543::-;;;;;;;;;;-1:-1:-1;16160:543:0;;;;;:::i;:::-;;:::i;14217:93::-;;;;;;;;;;-1:-1:-1;14217:93:0;;14300:2;3651:36:1;;3639:2;3624:18;14217:93:0;3509:184:1;33986:158:0;;;;;;;;;;;;;:::i;17108:290::-;;;;;;;;;;-1:-1:-1;17108:290:0;;;;;:::i;:::-;;:::i;45853:736::-;;;;;;;;;;;;;:::i;39888:169::-;;;;;;;;;;-1:-1:-1;39888:169:0;;;;;:::i;:::-;;:::i;31824:178::-;;;;;;;;;;-1:-1:-1;31966:14:0;;31982:11;;31824:178;;;31966:14;;;;-1:-1:-1;;;;;31966:14:0;;;3910:34:1;;31982:11:0;;;3975:2:1;3960:18;;3953:43;3845:18;31824:178:0;3698:304:1;40399:312:0;;;;;;;;;;;;;:::i;30428:356::-;;;;;;;;;;-1:-1:-1;30667:15:0;;30713:16;;30760;;-1:-1:-1;;;30667:15:0;;;;;;30428:356;;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;;4303:18;;;4296:34;4191:2;4176:18;30428:356:0;4007:329:1;35978:215:0;;;;;;;;;;-1:-1:-1;35978:215:0;;;;;:::i;:::-;;:::i;31205:393::-;;;;;;;;;;;;31463:14;;31556:9;;31585:5;;31463:14;;;;;;31512:20;;;;;31205:393;;;;;4770:14:1;;4763:22;4745:41;;4829:14;;4822:22;4817:2;4802:18;;4795:50;4861:18;;;4854:34;4919:2;4904:18;;4897:34;4732:3;4717:19;31205:393:0;4526:411:1;14546:143:0;;;;;;;;;;-1:-1:-1;14546:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;14663:18:0;14636:7;14663:18;;;;;;;;;;;;14546:143;24737:103;;;;;;;;;;;;;:::i;36903:200::-;;;;;;;;;;-1:-1:-1;36903:200:0;;;;;:::i;:::-;;:::i;24086:87::-;;;;;;;;;;-1:-1:-1;24159:6:0;;-1:-1:-1;;;;;24159:6:0;24086:87;;;-1:-1:-1;;;;;5426:32:1;;;5408:51;;5396:2;5381:18;24086:87:0;5262:203:1;33429:414:0;;;;;;;;;;-1:-1:-1;33429:414:0;;;;;:::i;:::-;-1:-1:-1;;;;;33687:20:0;33545:17;33687:20;;;:11;:20;;;;;;;;;33737:15;:24;;;;;;33801:25;:34;;;;;;33687:20;;;;;33737:24;;;;33801:34;;33429:414;;;;;5679:14:1;;5672:22;5654:41;;5738:14;;5731:22;5726:2;5711:18;;5704:50;5797:14;5790:22;5770:18;;;5763:50;5642:2;5627:18;33429:414:0;5470:349:1;13474:104:0;;;;;;;;;;;;;:::i;39203:300::-;;;;;;;;;;-1:-1:-1;39203:300:0;;;;;:::i;:::-;;:::i;38049:419::-;;;;;;;;;;-1:-1:-1;38049:419:0;;;;;:::i;:::-;;:::i;17897:475::-;;;;;;;;;;-1:-1:-1;17897:475:0;;;;;:::i;:::-;;:::i;25699:19::-;;;;;;;;;;-1:-1:-1;25699:19:0;;;;-1:-1:-1;;;;;25699:19:0;;;14902:200;;;;;;;;;;-1:-1:-1;14902:200:0;;;;;:::i;:::-;;:::i;37390:370::-;;;;;;;;;;-1:-1:-1;37390:370:0;;;;;:::i;:::-;;:::i;26278:26::-;;;;;;;;;;-1:-1:-1;26278:26:0;;;;;;;;38717:174;;;;;;;;;;-1:-1:-1;38717:174:0;;;;;:::i;:::-;;:::i;35189:553::-;;;;;;;;;;-1:-1:-1;35189:553:0;;;;;:::i;:::-;;:::i;15165:176::-;;;;;;;;;;-1:-1:-1;15165:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;15306:18:0;;;15279:7;15306:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15165:176;34572:152;;;;;;;;;;;;;:::i;36400:235::-;;;;;;;;;;-1:-1:-1;36400:235:0;;;;;:::i;:::-;;:::i;24995:238::-;;;;;;;;;;-1:-1:-1;24995:238:0;;;;;:::i;:::-;;:::i;13255:100::-;13309:13;13342:5;13335:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13255:100;:::o;15488:194::-;15596:4;15613:39;12341:10;15636:7;15645:6;15613:8;:39::i;:::-;-1:-1:-1;15670:4:0;15488:194;;;;;:::o;40719:243::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;;;;;;;;;40845:9:::1;40840:115;40860:21:::0;;::::1;40840:115;;;40935:8;40903:14;:29;40918:10;;40929:1;40918:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40903:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40903:29:0;:40;;-1:-1:-1;;40903:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40883:3;::::1;::::0;::::1;:::i;:::-;;;;40840:115;;;;40719:243:::0;;;:::o;34299:133::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;34356:14:::1;:22:::0;;-1:-1:-1;;34356:22:0::1;::::0;;34394:30:::1;::::0;34408:15:::1;::::0;34394:30:::1;::::0;34373:5:::1;::::0;34394:30:::1;34299:133::o:0;40231:160::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;40337:11:::1;::::0;40307:42:::1;::::0;-1:-1:-1;;;;;40337:11:0;;::::1;::::0;40307:42;::::1;::::0;::::1;::::0;40337:11:::1;::::0;40307:42:::1;40360:11;:23:::0;;-1:-1:-1;;;;;;40360:23:0::1;-1:-1:-1::0;;;;;40360:23:0;;;::::1;::::0;;;::::1;::::0;;40231:160::o;16160:543::-;16300:4;16317:36;16327:6;16335:9;16346:6;16317:9;:36::i;:::-;-1:-1:-1;;;;;16393:19:0;;16366:24;16393:19;;;:11;:19;;;;;;;;12341:10;16393:33;;;;;;;;16459:26;;;;;;:40;;;16498:1;16489:6;:10;16459:40;16437:130;;;;-1:-1:-1;;;16437:130:0;;8143:2:1;16437:130:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:38;8320:19;;16437:130:0;7941:404:1;16437:130:0;16603:57;16612:6;12341:10;16653:6;16634:16;:25;16603:8;:57::i;:::-;-1:-1:-1;16691:4:0;;16160:543;-1:-1:-1;;;;16160:543:0:o;33986:158::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;34043:6:::1;:13:::0;;-1:-1:-1;;34043:13:0::1;34052:4;34043:13;::::0;;34067:15:::1;:22:::0;;-1:-1:-1;;;;34067:22:0::1;-1:-1:-1::0;;;34067:22:0::1;::::0;;34105:31:::1;::::0;34120:15:::1;::::0;34105:31:::1;::::0;34043:6:::1;::::0;34105:31:::1;33986:158::o:0;17108:290::-;12341:10;17221:4;17310:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17310:34:0;;;;;;;;;;17221:4;;17238:130;;17288:7;;17310:47;;17347:10;;17310:47;:::i;:::-;17238:8;:130::i;45853:736::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;46023:6:::1;:16:::0;;-1:-1:-1;;;;;;46023:16:0::1;45957:42;46023:16:::0;;::::1;::::0;;;46052:53:::1;46069:4;45957:42:::0;-1:-1:-1;;46052:8:0::1;:53::i;:::-;46137:7;-1:-1:-1::0;;;;;46137:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46125:41:0::1;;46190:4;46210:7;-1:-1:-1::0;;;;;46210:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46125:110;::::0;-1:-1:-1;;;;;;46125:110:0::1;::::0;;;;;;-1:-1:-1;;;;;3928:15:1;;;46125:110:0::1;::::0;::::1;3910:34:1::0;3980:15;;3960:18;;;3953:43;3845:18;;46125:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46118:4;:117:::0;;-1:-1:-1;;;;;;46118:117:0::1;-1:-1:-1::0;;;;;46118:117:0;;;::::1;::::0;;::::1;::::0;;46246:46:::1;::::0;-1:-1:-1;46246:25:0::1;:46::i;:::-;46340:4;::::0;46303:49:::1;::::0;-1:-1:-1;;;;;46340:4:0::1;::::0;46303:28:::1;:49::i;:::-;46365:7;-1:-1:-1::0;;;;;46365:23:0::1;;46396:21;46442:4;46462:24;46480:4;-1:-1:-1::0;;;;;14663:18:0;14636:7;14663:18;;;;;;;;;;;;14546:143;46462:24:::1;46501:1;46517::::0;46533:7:::1;24159:6:::0;;-1:-1:-1;;;;;24159:6:0;;24086:87;46533:7:::1;46365:216;::::0;::::1;::::0;;;-1:-1:-1;;;;;;46365:216:0;;;-1:-1:-1;;;;;9095:15:1;;;46365:216:0::1;::::0;::::1;9077:34:1::0;9127:18;;;9120:34;;;;9170:18;;;9163:34;;;;9213:18;;;9206:34;9277:15;;;9256:19;;;9249:44;46555:15:0::1;9309:19:1::0;;;9302:35;9011:19;;46365:216:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;39888:169::-:0;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;39997:14:::1;::::0;39967:45:::1;::::0;-1:-1:-1;;;;;39997:14:0::1;::::0;;::::1;::::0;::::1;::::0;39967:45;::::1;::::0;::::1;::::0;;;::::1;40023:14;:26:::0;;-1:-1:-1;;;;;40023:26:0;;::::1;;;-1:-1:-1::0;;;;;;40023:26:0;;::::1;::::0;;;::::1;::::0;;39888:169::o;40399:312::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;40457:7:::1;::::0;;;::::1;;;40449:31;;;::::0;-1:-1:-1;;;40449:31:0;;9861:2:1;40449:31:0::1;::::0;::::1;9843:21:1::0;9900:2;9880:18;;;9873:30;-1:-1:-1;;;9919:18:1;;;9912:41;9970:18;;40449:31:0::1;9659:335:1::0;40449:31:0::1;40491:7;:15:::0;;-1:-1:-1;;40491:15:0::1;::::0;;40529:2:::1;40517:9;:14:::0;;;40501:5:::1;40542:9;:13:::0;;;40580:21:::1;::::0;::::1;:::i;:::-;40566:11;:35:::0;40627:2:::1;40614:10;:15:::0;;;-1:-1:-1;40640:10:0::1;:14:::0;;;40680:23:::1;::::0;::::1;:::i;:::-;40665:12;:38:::0;40399:312::o;35978:215::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;36062:1:::1;36052:6;:11;;36044:56;;;::::0;-1:-1:-1;;;36044:56:0;;10201:2:1;36044:56:0::1;::::0;::::1;10183:21:1::0;;;10220:18;;;10213:30;10279:34;10259:18;;;10252:62;10331:18;;36044:56:0::1;9999:356:1::0;36044:56:0::1;36146:4;36129:13;14463:12:::0;;;14375:108;36129:13:::1;36120:22;::::0;:6;:22:::1;:::i;:::-;36119:31;;;;:::i;:::-;36111:5;:39:::0;;;36166:19:::1;::::0;2760:25:1;;;36166:19:0::1;::::0;2748:2:1;2733:18;36166:19:0::1;;;;;;;;35978:215:::0;:::o;24737:103::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;24802:30:::1;24829:1;24802:18;:30::i;:::-;24737:103::o:0;36903:200::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37018:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37018:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37064:31;;1703:41:1;;;37064:31:0::1;::::0;1676:18:1;37064:31:0::1;;;;;;;;36903:200:::0;;:::o;13474:104::-;13530:13;13563:7;13556:14;;;;;:::i;39203:300::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;39351:4:::1;::::0;-1:-1:-1;;;;;39351:4:0;;::::1;39342:13:::0;;::::1;::::0;39320:120:::1;;;::::0;-1:-1:-1;;;39320:120:0;;10957:2:1;39320:120:0::1;::::0;::::1;10939:21:1::0;10996:2;10976:18;;;10969:30;11035:34;11015:18;;;11008:62;11106:27;11086:18;;;11079:55;11151:19;;39320:120:0::1;10755:421:1::0;39320:120:0::1;39453:42;39482:5;39489;39453:28;:42::i;:::-;39203:300:::0;;:::o;38049:419::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;38165:10:::1;:26:::0;;;38202:10:::1;:20:::0;;;38248:23:::1;38215:7:::0;38178:13;38248:23:::1;:::i;:::-;38233:12;:38:::0;;;38320:3:::1;-1:-1:-1::0;38304:19:0::1;38282:110;;;::::0;-1:-1:-1;;;38282:110:0;;11383:2:1;38282:110:0::1;::::0;::::1;11365:21:1::0;11422:2;11402:18;;;11395:30;11461:34;11441:18;;;11434:62;-1:-1:-1;;;11512:18:1;;;11505:39;11561:19;;38282:110:0::1;11181:405:1::0;38282:110:0::1;38423:12;::::0;38437:10:::1;::::0;38449::::1;::::0;38408:52:::1;::::0;;11793:25:1;;;11849:2;11834:18;;11827:34;;;;11877:18;;;11870:34;38408:52:0::1;::::0;11781:2:1;11766:18;38408:52:0::1;;;;;;;;38049:419:::0;;:::o;17897:475::-;12341:10;18015:4;18059:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18059:34:0;;;;;;;;;;18126:35;;;;18104:122;;;;-1:-1:-1;;;18104:122:0;;12117:2:1;18104:122:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:35;12291:19;;18104:122:0;11915:401:1;18104:122:0;18262:67;12341:10;18285:7;18313:15;18294:16;:34;18262:8;:67::i;:::-;-1:-1:-1;18360:4:0;;17897:475;-1:-1:-1;;;17897:475:0:o;14902:200::-;15013:4;15030:42;12341:10;15054:9;15065:6;15030:9;:42::i;37390:370::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;37505:9:::1;:25:::0;;;37541:9:::1;:19:::0;;;37585:21:::1;37553:7:::0;37517:13;37585:21:::1;:::i;:::-;37571:11;:35:::0;;;37640:3:::1;-1:-1:-1::0;37625:18:0::1;37617:71;;;::::0;-1:-1:-1;;;37617:71:0;;12523:2:1;37617:71:0::1;::::0;::::1;12505:21:1::0;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:38;12700:19;;37617:71:0::1;12321:404:1::0;37617:71:0::1;37718:11;::::0;37731:9:::1;::::0;37742::::1;::::0;37704:48:::1;::::0;;11793:25:1;;;11849:2;11834:18;;11827:34;;;;11877:18;;;11870:34;37704:48:0::1;::::0;11781:2:1;11766:18;37704:48:0::1;11591:319:1::0;38717:174:0;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38802:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38802:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38849:34;;1703:41:1;;;38849:34:0::1;::::0;1676:18:1;38849:34:0::1;1563:187:1::0;35189:553:0;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;35355:1:::1;35347:4;:9;;35325:111;;;::::0;-1:-1:-1;;;35325:111:0;;12932:2:1;35325:111:0::1;::::0;::::1;12914:21:1::0;12971:2;12951:18;;;12944:30;13010:34;12990:18;;;12983:62;-1:-1:-1;;;13061:18:1;;;13054:50;13121:19;;35325:111:0::1;12730:416:1::0;35325:111:0::1;35463:4;35455;:12;;35447:67;;;::::0;-1:-1:-1;;;35447:67:0;;13353:2:1;35447:67:0::1;::::0;::::1;13335:21:1::0;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:40;13532:19;;35447:67:0::1;13151:406:1::0;35447:67:0::1;35527:15;:26:::0;;-1:-1:-1;;;;35527:26:0::1;-1:-1:-1::0;;;35527:26:0;::::1;;;;::::0;;14463:12;;35608:5:::1;::::0;35600:4;;35584:20:::1;;;;:::i;:::-;35583:30;;;;:::i;:::-;35564:16;:49:::0;35668:5:::1;35660:4:::0;35644:13:::1;14463:12:::0;;;14375:108;35644:13:::1;:20;;;;:::i;:::-;35643:30;;;;:::i;:::-;35624:16;:49:::0;35689:45:::1;::::0;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;4303:18;;;4296:34;;;35689:45:0::1;::::0;4191:2:1;4176:18;35689:45:0::1;;;;;;;35189:553:::0;;;:::o;34572:152::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;34634:20:::1;:28:::0;;-1:-1:-1;;34634:28:0::1;::::0;;34678:38:::1;::::0;34700:15:::1;::::0;34678:38:::1;::::0;34657:5:::1;::::0;34678:38:::1;34572:152::o:0;36400:235::-;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;36488:1:::1;36478:6;:11;;36470:60;;;::::0;-1:-1:-1;;;36470:60:0;;13764:2:1;36470:60:0::1;::::0;::::1;13746:21:1::0;13803:2;13783:18;;;13776:30;13842:34;13822:18;;;13815:62;-1:-1:-1;;;13893:18:1;;;13886:34;13937:19;;36470:60:0::1;13562:400:1::0;36470:60:0::1;36580:4;36563:13;14463:12:::0;;;14375:108;36563:13:::1;36554:22;::::0;:6;:22:::1;:::i;:::-;36553:31;;;;:::i;:::-;36541:9;:43:::0;;;36600:27:::1;::::0;2760:25:1;;;36600:27:0::1;::::0;2748:2:1;2733:18;36600:27:0::1;2614:177:1::0;24995:238:0;24159:6;;-1:-1:-1;;;;;24159:6:0;12341:10;24306:23;24298:68;;;;-1:-1:-1;;;24298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25098:22:0;::::1;25076:110;;;::::0;-1:-1:-1;;;25076:110:0;;14169:2:1;25076:110:0::1;::::0;::::1;14151:21:1::0;14208:2;14188:18;;;14181:30;14247:34;14227:18;;;14220:62;-1:-1:-1;;;14298:18:1;;;14291:36;14344:19;;25076:110:0::1;13967:402:1::0;25076:110:0::1;25197:28;25216:8;25197:18;:28::i;:::-;24995:238:::0;:::o;21809:380::-;-1:-1:-1;;;;;21945:19:0;;21937:68;;;;-1:-1:-1;;;21937:68:0;;14576:2:1;21937:68:0;;;14558:21:1;14615:2;14595:18;;;14588:30;14654:34;14634:18;;;14627:62;-1:-1:-1;;;14705:18:1;;;14698:34;14749:19;;21937:68:0;14374:400:1;21937:68:0;-1:-1:-1;;;;;22024:21:0;;22016:68;;;;-1:-1:-1;;;22016:68:0;;14981:2:1;22016:68:0;;;14963:21:1;15020:2;15000:18;;;14993:30;15059:34;15039:18;;;15032:62;-1:-1:-1;;;15110:18:1;;;15103:32;15152:19;;22016:68:0;14779:398:1;22016:68:0;-1:-1:-1;;;;;22097:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22149:32;;2760:25:1;;;22149:32:0;;2733:18:1;22149:32:0;;;;;;;21809:380;;;:::o;41077:4768::-;-1:-1:-1;;;;;41209:18:0;;41201:68;;;;-1:-1:-1;;;41201:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41288:16:0;;41280:64;;;;-1:-1:-1;;;41280:64:0;;;;;;;:::i;:::-;41388:1;41379:6;:10;:31;;;-1:-1:-1;;;;;;41393:17:0;;;;;;:11;:17;;;;;;;;41379:31;41357:115;;;;-1:-1:-1;;;41357:115:0;;16194:2:1;41357:115:0;;;16176:21:1;16233:2;16213:18;;;16206:30;16272:34;16252:18;;;16245:62;-1:-1:-1;;;16323:18:1;;;16316:32;16365:19;;41357:115:0;15992:398:1;41357:115:0;41489:14;;;;41485:2506;;;24159:6;;-1:-1:-1;;;;;41542:15:0;;;24159:6;;41542:15;;;;:49;;-1:-1:-1;24159:6:0;;-1:-1:-1;;;;;41578:13:0;;;24159:6;;41578:13;;41542:49;:86;;;;-1:-1:-1;;;;;;41612:16:0;;;;41542:86;:128;;;;-1:-1:-1;;;;;;41649:21:0;;41663:6;41649:21;;41542:128;:158;;;;-1:-1:-1;41692:8:0;;-1:-1:-1;;;41692:8:0;;;;41691:9;41542:158;41520:2460;;;41740:6;;;;41735:212;;-1:-1:-1;;;;;41805:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;41826:15:0;;;;;;:11;:15;;;;;;;;41805:36;41771:156;;;;-1:-1:-1;;;41771:156:0;;16597:2:1;41771:156:0;;;16579:21:1;16636:2;16616:18;;;16609:30;16675:34;16655:18;;;16648:62;-1:-1:-1;;;16726:18:1;;;16719:32;16768:19;;41771:156:0;16395:398:1;41771:156:0;41969:7;;;;;;;41965:220;;;-1:-1:-1;;;;;42035:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42059:18:0;;;;;;:14;:18;;;;;;;;42035:42;42001:164;;;;-1:-1:-1;;;42001:164:0;;17000:2:1;42001:164:0;;;16982:21:1;17039:2;17019:18;;;17012:30;17078:34;17058:18;;;17051:62;-1:-1:-1;;;17129:18:1;;;17122:34;17173:19;;42001:164:0;16798:400:1;42001:164:0;42341:20;;;;;;;42337:623;;;24159:6;;-1:-1:-1;;;;;42416:13:0;;;24159:6;;42416:13;;;;:63;;-1:-1:-1;42472:6:0;;-1:-1:-1;;;;;42458:21:0;;;42472:6;;42458:21;;42416:63;:111;;;;-1:-1:-1;42522:4:0;;-1:-1:-1;;;;;42508:19:0;;;42522:4;;42508:19;;42416:111;42386:555;;;42645:9;42616:39;;;;:28;:39;;;;;;42691:12;-1:-1:-1;42578:258:0;;;;-1:-1:-1;;;42578:258:0;;17405:2:1;42578:258:0;;;17387:21:1;17444:2;17424:18;;;17417:30;17483:34;17463:18;;;17456:62;17554:34;17534:18;;;17527:62;-1:-1:-1;;;17605:19:1;;;17598:40;17655:19;;42578:258:0;17203:477:1;42578:258:0;42892:9;42863:39;;;;:28;:39;;;;;42905:12;42863:54;;42386:555;-1:-1:-1;;;;;43012:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43048:19:0;;;;;;:15;:19;;;;;;;;43047:20;43012:55;43008:957;;;43136:5;;43126:6;:15;;43092:139;;;;-1:-1:-1;;;43092:139:0;;17887:2:1;43092:139:0;;;17869:21:1;17926:2;17906:18;;;17899:30;17965:34;17945:18;;;17938:62;-1:-1:-1;;;18016:18:1;;;18009:36;18062:19;;43092:139:0;17685:402:1;43092:139:0;43314:9;;-1:-1:-1;;;;;14663:18:0;;14636:7;14663:18;;;;;;;;;;;43288:22;;:6;:22;:::i;:::-;:35;;43254:140;;;;-1:-1:-1;;;43254:140:0;;18294:2:1;43254:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;43254:140:0;18092:343:1;43254:140:0;43008:957;;;-1:-1:-1;;;;;43492:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43526:21:0;;;;;;:15;:21;;;;;;;;43525:22;43492:55;43466:499;;;43634:5;;43624:6;:15;;43590:140;;;;-1:-1:-1;;;43590:140:0;;18642:2:1;43590:140:0;;;18624:21:1;18681:2;18661:18;;;18654:30;18720:34;18700:18;;;18693:62;-1:-1:-1;;;18771:18:1;;;18764:37;18818:19;;43590:140:0;18440:403:1;43466:499:0;-1:-1:-1;;;;;43761:19:0;;;;;;:15;:19;;;;;;;;43756:209;;43865:9;;-1:-1:-1;;;;;14663:18:0;;14636:7;14663:18;;;;;;;;;;;43839:22;;:6;:22;:::i;:::-;:35;;43805:140;;;;-1:-1:-1;;;43805:140:0;;18294:2:1;43805:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;43805:140:0;18092:343:1;43805:140:0;44052:4;44003:28;14663:18;;;;;;;;;;;44110:16;;44086:40;;;;;;44159:26;;;;44086:40;;44216:38;;;44240:14;44216:38;:70;;;;-1:-1:-1;44271:15:0;;-1:-1:-1;;;44271:15:0;;;;44216:70;:96;;;;-1:-1:-1;44304:8:0;;-1:-1:-1;;;44304:8:0;;;;44303:9;44216:96;:142;;;;-1:-1:-1;;;;;;44329:29:0;;;;;;:25;:29;;;;;;;;44216:142;:177;;;;-1:-1:-1;;;;;;44376:17:0;;;;;;:11;:17;;;;;;;;44375:18;44216:177;:210;;;;-1:-1:-1;;;;;;44411:15:0;;;;;;:11;:15;;;;;;;;44410:16;44216:210;44198:348;;;44453:8;:15;;-1:-1:-1;;;;44453:15:0;-1:-1:-1;;;44453:15:0;;;44485:16;44494:6;44485:8;:16::i;:::-;44518:8;:16;;-1:-1:-1;;;;44518:16:0;;;44198:348;44574:8;;-1:-1:-1;;;;;44684:17:0;;44558:12;44684:17;;;:11;:17;;;;;;44574:8;-1:-1:-1;;;44574:8:0;;;;;44573:9;;44684:17;;:36;;-1:-1:-1;;;;;;44705:15:0;;;;;;:11;:15;;;;;;;;44684:36;44680:84;;;-1:-1:-1;44747:5:0;44680:84;44881:15;;44776:12;;-1:-1:-1;;;44881:15:0;;;;:28;;;;-1:-1:-1;44901:8:0;;-1:-1:-1;;;44901:8:0;;;;44900:9;44881:28;44877:915;;;44930:7;44926:855;;;-1:-1:-1;;;;;44990:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;45038:1;45023:12;;:16;44990:49;44986:626;;;45071:33;45100:3;45071:24;45082:12;;45071:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;45064:40;;45165:12;;45151:10;;45144:4;:17;;;;:::i;:::-;45143:34;;;;:::i;:::-;45127:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45244:12:0;;45230:10;;45223:17;;:4;:17;:::i;:::-;45222:34;;;;:::i;:::-;45200:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;44986:626:0;;-1:-1:-1;44986:626:0;;-1:-1:-1;;;;;45330:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45379:1;45365:11;;:15;45330:50;45326:286;;;45412:32;45440:3;45412:23;45423:11;;45412:6;:10;;:23;;;;:::i;:32::-;45405:39;;45504:11;;45491:9;;45484:4;:16;;;;:::i;:::-;45483:32;;;;:::i;:::-;45467:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45581:11:0;;45568:9;;45561:16;;:4;:16;:::i;:::-;45560:32;;;;:::i;:::-;45538:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45326:286:0;45636:8;;45632:99;;45669:42;45685:4;45699;45706;45669:15;:42::i;:::-;45751:14;45761:4;45751:14;;:::i;:::-;;;44926:855;45804:33;45820:4;45826:2;45830:6;45804:15;:33::i;:::-;41190:4655;;;;;41077:4768;;;:::o;39511:191::-;-1:-1:-1;;;;;39595:32:0;;;;;;:25;:32;;;;;;:40;;-1:-1:-1;;39595:40:0;;;;;;;;;;39653:41;;39595:40;;:32;39653:41;;;39511:191;;:::o;25393:::-;25486:6;;;-1:-1:-1;;;;;25503:17:0;;;-1:-1:-1;;;;;;25503:17:0;;;;;;;25536:40;;25486:6;;;25503:17;25486:6;;25536:40;;25467:16;;25536:40;25456:128;25393:191;:::o;47167:783::-;47264:4;47220:23;14663:18;;;;;;;;;;;;;;47341:20;;;47337:59;;47378:7;;47167:783;:::o;47337:59::-;47408:26;47437:51;47441:6;47449:38;47453:15;47470:16;;47449:3;:38::i;:::-;47437:3;:51::i;:::-;47408:80;-1:-1:-1;47529:21:0;47563:36;47408:80;47563:16;:36::i;:::-;47612:18;47633:44;:21;47659:17;47633:25;:44::i;:::-;47612:65;;47690:17;47710:51;47743:17;47710:28;47725:12;;47710:10;:14;;:28;;;;:::i;:51::-;47795:1;47774:18;:22;;;47807:12;:16;;;47844:11;;47836:40;;47690:71;;-1:-1:-1;;;;;;47844:11:0;;47836:40;;;;;47690:71;;47836:40;;47795:1;47836:40;47690:71;47844:11;47836:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47895:14:0;;47887:55;;-1:-1:-1;;;;;47895:14:0;;;;;;;;;47920:21;47887:55;;;;;;;;;47920:21;47895:14;47887:55;;;;;;;;;;;;;;;;;;;3411:98;3469:7;3496:5;3500:1;3496;:5;:::i;:::-;3489:12;3411:98;-1:-1:-1;;;3411:98:0:o;3810:::-;3868:7;3895:5;3899:1;3895;:5;:::i;18862:899::-;-1:-1:-1;;;;;19002:20:0;;18994:70;;;;-1:-1:-1;;;18994:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19083:23:0;;19075:71;;;;-1:-1:-1;;;19075:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19243:17:0;;;19219:21;19243:17;;;;;;;;;;;;19298:20;;;;;;;;19353:23;;;;19331:111;;;;-1:-1:-1;;;19331:111:0;;19183:2:1;19331:111:0;;;19165:21:1;19222:2;19202:18;;;19195:30;19261:34;19241:18;;;19234:62;-1:-1:-1;;;19312:18:1;;;19305:36;19358:19;;19331:111:0;18981:402:1;19331:111:0;19549:11;;:39;;19582:6;19549:39;;;19563:16;19549:39;-1:-1:-1;;;;;19478:17:0;;;:9;:17;;;;;;;;;;;19515:74;;;19478:111;;;19611:20;;;;;;;;:30;;19635:6;;19478:9;19611:30;;19635:6;;19611:30;:::i;:::-;;;;;;;;19676:9;-1:-1:-1;;;;;19659:35:0;19668:6;-1:-1:-1;;;;;19659:35:0;;19687:6;19659:35;;;;2760:25:1;;2748:2;2733:18;;2614:177;19659:35:0;;;;;;;;18983:778;;18862:899;;;:::o;40970:99::-;41027:7;41055:1;41053;:3;41052:9;;41060:1;41052:9;;;-1:-1:-1;41058:1:0;40970:99;-1:-1:-1;40970:99:0:o;46597:562::-;46747:16;;;46761:1;46747:16;;;;;;;;46723:21;;46747:16;;;;;;;;;;-1:-1:-1;46747:16:0;46723:40;;46792:4;46774;46779:1;46774:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46774:23:0;;;:7;;;;;;;;;;:23;;;;46818:6;;:13;;;-1:-1:-1;;;46818:13:0;;;;:6;;;;;:11;;:13;;;;;46774:7;;46818:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46808:4;46813:1;46808:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46808:23:0;;;:7;;;;;;;;;:23;46876:6;;46844:53;;46861:4;;46876:6;46885:11;46844:8;:53::i;:::-;46936:6;;:215;;-1:-1:-1;;;46936:215:0;;-1:-1:-1;;;;;46936:6:0;;;;:57;;:215;;47008:11;;46936:6;;47078:4;;47105;;47125:15;;46936:215;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46652:507;46597:562;:::o;3054:98::-;3112:7;3139:5;3143:1;3139;:5;:::i;554:548:1:-;666:4;695:2;724;713:9;706:21;756:6;750:13;799:6;794:2;783:9;779:18;772:34;824:1;834:140;848:6;845:1;842:13;834:140;;;943:14;;;939:23;;933:30;909:17;;;928:2;905:26;898:66;863:10;;834:140;;;838:3;1023:1;1018:2;1009:6;998:9;994:22;990:31;983:42;1093:2;1086;1082:7;1077:2;1069:6;1065:15;1061:29;1050:9;1046:45;1042:54;1034:62;;;;554:548;;;;:::o;1107:131::-;-1:-1:-1;;;;;1182:31:1;;1172:42;;1162:70;;1228:1;1225;1218:12;1243:315;1311:6;1319;1372:2;1360:9;1351:7;1347:23;1343:32;1340:52;;;1388:1;1385;1378:12;1340:52;1427:9;1414:23;1446:31;1471:5;1446:31;:::i;:::-;1496:5;1548:2;1533:18;;;;1520:32;;-1:-1:-1;;;1243:315:1:o;1755:160::-;1820:20;;1876:13;;1869:21;1859:32;;1849:60;;1905:1;1902;1895:12;1849:60;1755:160;;;:::o;1920:689::-;2012:6;2020;2028;2081:2;2069:9;2060:7;2056:23;2052:32;2049:52;;;2097:1;2094;2087:12;2049:52;2137:9;2124:23;2166:18;2207:2;2199:6;2196:14;2193:34;;;2223:1;2220;2213:12;2193:34;2261:6;2250:9;2246:22;2236:32;;2306:7;2299:4;2295:2;2291:13;2287:27;2277:55;;2328:1;2325;2318:12;2277:55;2368:2;2355:16;2394:2;2386:6;2383:14;2380:34;;;2410:1;2407;2400:12;2380:34;2465:7;2458:4;2448:6;2445:1;2441:14;2437:2;2433:23;2429:34;2426:47;2423:67;;;2486:1;2483;2476:12;2423:67;2517:4;2509:13;;;;-1:-1:-1;2541:6:1;-1:-1:-1;2566:37:1;;2582:20;;;-1:-1:-1;2566:37:1;:::i;:::-;2556:47;;1920:689;;;;;:::o;2796:247::-;2855:6;2908:2;2896:9;2887:7;2883:23;2879:32;2876:52;;;2924:1;2921;2914:12;2876:52;2963:9;2950:23;2982:31;3007:5;2982:31;:::i;3048:456::-;3125:6;3133;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:33;3347:32;3388:33;:::i;:::-;3048:456;;3440:7;;-1:-1:-1;;;3494:2:1;3479:18;;;;3466:32;;3048:456::o;4341:180::-;4400:6;4453:2;4441:9;4432:7;4428:23;4424:32;4421:52;;;4469:1;4466;4459:12;4421:52;-1:-1:-1;4492:23:1;;4341:180;-1:-1:-1;4341:180:1:o;4942:315::-;5007:6;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5123:9;5110:23;5142:31;5167:5;5142:31;:::i;:::-;5192:5;-1:-1:-1;5216:35:1;5247:2;5232:18;;5216:35;:::i;:::-;5206:45;;4942:315;;;;;:::o;5824:248::-;5892:6;5900;5953:2;5941:9;5932:7;5928:23;5924:32;5921:52;;;5969:1;5966;5959:12;5921:52;-1:-1:-1;;5992:23:1;;;6062:2;6047:18;;;6034:32;;-1:-1:-1;5824:248:1:o;6077:316::-;6151:6;6159;6167;6220:2;6208:9;6199:7;6195:23;6191:32;6188:52;;;6236:1;6233;6226:12;6188:52;6259:26;6275:9;6259:26;:::i;:::-;6249:36;6332:2;6317:18;;6304:32;;-1:-1:-1;6383:2:1;6368:18;;;6355:32;;6077:316;-1:-1:-1;;;6077:316:1:o;6398:388::-;6466:6;6474;6527:2;6515:9;6506:7;6502:23;6498:32;6495:52;;;6543:1;6540;6533:12;6495:52;6582:9;6569:23;6601:31;6626:5;6601:31;:::i;:::-;6651:5;-1:-1:-1;6708:2:1;6693:18;;6680:32;6721:33;6680:32;6721:33;:::i;:::-;6773:7;6763:17;;;6398:388;;;;;:::o;6791:380::-;6870:1;6866:12;;;;6913;;;6934:61;;6988:4;6980:6;6976:17;6966:27;;6934:61;7041:2;7033:6;7030:14;7010:18;7007:38;7004:161;;7087:10;7082:3;7078:20;7075:1;7068:31;7122:4;7119:1;7112:15;7150:4;7147:1;7140:15;7176:356;7378:2;7360:21;;;7397:18;;;7390:30;7456:34;7451:2;7436:18;;7429:62;7523:2;7508:18;;7176:356::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:127;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:135;7840:3;7861:17;;;7858:43;;7881:18;;:::i;:::-;-1:-1:-1;7928:1:1;7917:13;;7801:135::o;8350:125::-;8415:9;;;8436:10;;;8433:36;;;8449:18;;:::i;8480:251::-;8550:6;8603:2;8591:9;8582:7;8578:23;8574:32;8571:52;;;8619:1;8616;8609:12;8571:52;8651:9;8645:16;8670:31;8695:5;8670:31;:::i;9348:306::-;9436:6;9444;9452;9505:2;9493:9;9484:7;9480:23;9476:32;9473:52;;;9521:1;9518;9511:12;9473:52;9550:9;9544:16;9534:26;;9600:2;9589:9;9585:18;9579:25;9569:35;;9644:2;9633:9;9629:18;9623:25;9613:35;;9348:306;;;;;:::o;10360:168::-;10433:9;;;10464;;10481:15;;;10475:22;;10461:37;10451:71;;10502:18;;:::i;10533:217::-;10573:1;10599;10589:132;;10643:10;10638:3;10634:20;10631:1;10624:31;10678:4;10675:1;10668:15;10706:4;10703:1;10696:15;10589:132;-1:-1:-1;10735:9:1;;10533:217::o;15182:401::-;15384:2;15366:21;;;15423:2;15403:18;;;15396:30;15462:34;15457:2;15442:18;;15435:62;-1:-1:-1;;;15528:2:1;15513:18;;15506:35;15573:3;15558:19;;15182:401::o;15588:399::-;15790:2;15772:21;;;15829:2;15809:18;;;15802:30;15868:34;15863:2;15848:18;;15841:62;-1:-1:-1;;;15934:2:1;15919:18;;15912:33;15977:3;15962:19;;15588:399::o;18848:128::-;18915:9;;;18936:11;;;18933:37;;;18950:18;;:::i;19520:980::-;19782:4;19830:3;19819:9;19815:19;19861:6;19850:9;19843:25;19887:2;19925:6;19920:2;19909:9;19905:18;19898:34;19968:3;19963:2;19952:9;19948:18;19941:31;19992:6;20027;20021:13;20058:6;20050;20043:22;20096:3;20085:9;20081:19;20074:26;;20135:2;20127:6;20123:15;20109:29;;20156:1;20166:195;20180:6;20177:1;20174:13;20166:195;;;20245:13;;-1:-1:-1;;;;;20241:39:1;20229:52;;20336:15;;;;20301:12;;;;20277:1;20195:9;20166:195;;;-1:-1:-1;;;;;;;20417:32:1;;;;20412:2;20397:18;;20390:60;-1:-1:-1;;;20481:3:1;20466:19;20459:35;20378:3;19520:980;-1:-1:-1;;;19520:980:1:o
Swarm Source
ipfs://02669da05f25564657113b6085613a1f62611b1289119d0fe05914272b493fdc
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.