ERC-20
Overview
Max Total Supply
100,000,000,000 GROKI
Holders
144
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
33,678,770.967986878916861581 GROKIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GROKI
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-05 */ /* * SPDX-License-Identifier: MIT * https://groki.dog/ * https://t.me/Groki_eth * https://twitter.com/RealGroki */ pragma solidity 0.8.19; 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 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, "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]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface 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; } contract GROKI is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsInEffect = true; bool private transferDelayEnabled = true; bool private delayOn = true; 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 tradingLive = false; // Fee receivers address private mktReceiver; 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 TriggerBurn(uint256 percentBurnt); event BuyFeeUpdated( uint256 totalBuyFee, uint256 buyMktFee, uint256 buyDevFee ); event SellFeeUpdated( uint256 totalSellFee, uint256 sellMktFee, uint256 sellDevFee ); constructor() ERC20("Groki", "GROKI") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); excludeFromMaxTransaction(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _buyMktFee = 30; uint256 _buyDevFee = 0; uint256 _sellMktFee = 50; uint256 _sellDevFee = 0; uint256 totalSupply = 100_000_000_000 * 10 ** decimals(); maxTx = (totalSupply * 10) / 1000; maxWallet = (totalSupply * 10) / 1000; swapBackValueMin = (totalSupply * 1) / 1000; swapBackValueMax = (totalSupply * 1) / 100; buyMktFee = _buyMktFee; buyDevFee = _buyDevFee; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = _sellMktFee; sellDevFee = _sellDevFee; totalSellFee = sellMktFee + sellDevFee; mktReceiver = address(0xaD54ee7439C74a4dD5E87C01267c89b0e6fa4C47); devReceiver = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(mktReceiver, true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(mktReceiver, true); transferOwnership(msg.sender); /* _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 caSellInfo() 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 txLimitsInfo() 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 receivers() external view returns ( address _mktReceiver, address _devReceiver ) { return (mktReceiver, 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 txTaxes() 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 addressInfo( 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 groki() external onlyOwner { tradingLive = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeLimits() 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 != dexPair, "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 setMarketingWallet(address newWallet) external onlyOwner { emit mktReceiverUpdated(newWallet, mktReceiver); mktReceiver = 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; } function setDelayOn(address[] calldata _addresses, bool _enabled) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _isDelayExempt[_addresses[i]] = _enabled; } } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingLive) { 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(dexRouter) && to != address(dexPair) ) { 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; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !isFeeExempt[from] && !isFeeExempt[to] ) { swapping = true; swapBack(); 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 (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 swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } uint256 amountToSwapForETH = contractBalance; 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; (success, ) = address(devReceiver).call{value: ethForDev}(""); (success, ) = address(mktReceiver).call{value: address(this).balance}( "" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"uint256","name":"percentBurnt","type":"uint256"}],"name":"TriggerBurn","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":[{"internalType":"address","name":"_target","type":"address"}],"name":"addressInfo","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":"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":"caSellInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","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":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"groki","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"receivers","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","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":"setMarketingWallet","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimitsInfo","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":"txTaxes","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805462ffffff191662010101179055600d805460ff191690553480156200003957600080fd5b506040518060400160405280600581526020016447726f6b6960d81b8152506040518060400160405280600581526020016447524f4b4960d81b81525081600390816200008791906200086c565b5060046200009682826200086c565b505050620000b3620000ad6200042160201b60201c565b62000425565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d581600162000477565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000146919062000938565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000938565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000938565b6001600160a01b031660a08190526200024990600162000477565b60a0516200025990600162000526565b601e6000603281806200026f6012600a62000a7f565b620002809064174876e80062000a90565b90506103e86200029282600a62000a90565b6200029e919062000aaa565b600a9081556103e890620002b490839062000a90565b620002c0919062000aaa565b6009556103e8620002d382600162000a90565b620002df919062000aaa565b6006556064620002f182600162000a90565b620002fd919062000aaa565b6007556010859055601184905562000316848662000acd565b600f55601383905560148290556200032f828462000acd565b601255600d8054610100600160a81b03191674ad54ee7439c74a4dd5e87c01267c89b0e6fa4c4700179055600e8054336001600160a01b031990911681179091556200037d9060016200057a565b6200038a3060016200057a565b6200039961dead60016200057a565b600d54620003b79061010090046001600160a01b031660016200057a565b620003c433600162000477565b620003d130600162000477565b620003e061dead600162000477565b600d54620003fe9061010090046001600160a01b0316600162000477565b62000409336200061e565b620004153382620006de565b50505050505062000ae3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c65760405162461bcd60e51b815260206004820181905260248201526000805160206200340b83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c55760405162461bcd60e51b815260206004820181905260248201526000805160206200340b8339815191526044820152606401620004bd565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016200051a565b6005546001600160a01b03163314620006695760405162461bcd60e51b815260206004820181905260248201526000805160206200340b8339815191526044820152606401620004bd565b6001600160a01b038116620006d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004bd565b620006db8162000425565b50565b6001600160a01b038216620007365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004bd565b80600260008282546200074a919062000acd565b90915550506001600160a01b038216600090815260208190526040812080548392906200077990849062000acd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007f357607f821691505b6020821081036200081457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007c357600081815260208120601f850160051c81016020861015620008435750805b601f850160051c820191505b8181101562000864578281556001016200084f565b505050505050565b81516001600160401b03811115620008885762000888620007c8565b620008a081620008998454620007de565b846200081a565b602080601f831160018114620008d85760008415620008bf5750858301515b600019600386901b1c1916600185901b17855562000864565b600085815260208120601f198616915b828110156200090957888601518255948401946001909101908401620008e8565b5085821015620009285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200094b57600080fd5b81516001600160a01b03811681146200096357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009c1578160001904821115620009a557620009a56200096a565b80851615620009b357918102915b93841c939080029062000985565b509250929050565b600082620009da5750600162000a79565b81620009e95750600062000a79565b816001811462000a02576002811462000a0d5762000a2d565b600191505062000a79565b60ff84111562000a215762000a216200096a565b50506001821b62000a79565b5060208310610133831016604e8410600b841016171562000a52575081810a62000a79565b62000a5e838362000980565b806000190482111562000a755762000a756200096a565b0290505b92915050565b60006200096360ff841683620009c9565b808202811582820484141762000a795762000a796200096a565b60008262000ac857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a795762000a796200096a565b60805160a0516128df62000b2c6000396000818161077001528181610e2c01526119120152600081816118d4015281816122a901528181612362015261239e01526128df6000f3fe6080604052600436106102135760003560e01c806374f8979011610118578063b2d8f208116100a0578063dd62ed3e1161006f578063dd62ed3e146106e3578063e884f26014610729578063f1d5f5171461073e578063f242ab411461075e578063f2fde38b1461079257600080fd5b8063b2d8f20814610644578063c024666814610664578063c7e3955f14610684578063d0889358146106c357600080fd5b806395d89b41116100e757806395d89b41146105af5780639a7a23d6146105c45780639fd8234e146105e4578063a457c2d714610604578063a9059cbb1461062457600080fd5b806374f89790146104fc578063751039fc146105485780637571336a1461055d5780638da5cb5b1461057d57600080fd5b8063341683911161019b57806356224ea71161016a57806356224ea71461045c5780635c85974f146104715780635d098b381461049157806370a08231146104b1578063715018a6146104e757600080fd5b806334168391146103a457806339509351146103dc57806344b2267b146103fc5780634cd94ce31461041157600080fd5b806318160ddd116101e257806318160ddd146102b65780631f53ac02146102d55780632126fcb2146102f557806323b872dd14610368578063313ce5671461038857600080fd5b806306fdde031461021f578063095ea7b31461024a57806311704f521461027a57806314d178ac1461029457600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107b2565b604051610241919061241e565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612481565b610844565b6040519015158152602001610241565b34801561028657600080fd5b50600d5461026a9060ff1681565b3480156102a057600080fd5b506102b46102af3660046124c2565b61085b565b005b3480156102c257600080fd5b506002545b604051908152602001610241565b3480156102e157600080fd5b506102b46102f0366004612546565b610905565b34801561030157600080fd5b50610349610310366004612546565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610241565b34801561037457600080fd5b5061026a610383366004612563565b61098c565b34801561039457600080fd5b5060405160128152602001610241565b3480156103b057600080fd5b50600d54600e54604080516101009093046001600160a01b039081168452909116602083015201610241565b3480156103e857600080fd5b5061026a6103f7366004612481565b610a36565b34801561040857600080fd5b506102b4610a72565b34801561041d57600080fd5b5061043a600854600954600a5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610241565b34801561046857600080fd5b506102b4610ae9565b34801561047d57600080fd5b506102b461048c3660046125a4565b610b67565b34801561049d57600080fd5b506102b46104ac366004612546565b610c3e565b3480156104bd57600080fd5b506102c76104cc366004612546565b6001600160a01b031660009081526020819052604090205490565b3480156104f357600080fd5b506102b4610cd0565b34801561050857600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561055457600080fd5b506102b4610d06565b34801561056957600080fd5b506102b46105783660046125bd565b610d67565b34801561058957600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610241565b3480156105bb57600080fd5b50610234610df1565b3480156105d057600080fd5b506102b46105df3660046125bd565b610e00565b3480156105f057600080fd5b506102b46105ff3660046125f2565b610edf565b34801561061057600080fd5b5061026a61061f366004612481565b610fd2565b34801561063057600080fd5b5061026a61063f366004612481565b61106b565b34801561065057600080fd5b506102b461065f3660046125f2565b611078565b34801561067057600080fd5b506102b461067f3660046125bd565b611162565b34801561069057600080fd5b50600554600654600754600160a81b90920460ff1691604080519315158452602084019290925290820152606001610241565b3480156106cf57600080fd5b506102b46106de366004612614565b6111e4565b3480156106ef57600080fd5b506102c76106fe366004612647565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073557600080fd5b506102b4611382565b34801561074a57600080fd5b506102b46107593660046125a4565b6113e4565b34801561076a57600080fd5b506105977f000000000000000000000000000000000000000000000000000000000000000081565b34801561079e57600080fd5b506102b46107ad366004612546565b6114c0565b6060600380546107c190612680565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612680565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061085133848461155b565b5060015b92915050565b6005546001600160a01b0316331461088e5760405162461bcd60e51b8152600401610885906126ba565b60405180910390fd5b60005b828110156108ff5781600c60008686858181106108b0576108b06126ef565b90506020020160208101906108c59190612546565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f78161271b565b915050610891565b50505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b8152600401610885906126ba565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600061099984848461167f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a1e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610885565b610a2b853385840361155b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610851918590610a6d908690612734565b61155b565b6005546001600160a01b03163314610a9c5760405162461bcd60e51b8152600401610885906126ba565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610885906126ba565b60085462010000900460ff16610b595760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b6044820152606401610885565b6008805462ff000019169055565b6005546001600160a01b03163314610b915760405162461bcd60e51b8152600401610885906126ba565b6002811015610be25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610885565b6103e8610bee60025490565b610bf89083612747565b610c02919061275e565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c685760405162461bcd60e51b8152600401610885906126ba565b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610885906126ba565b610d046000611f13565b565b6005546001600160a01b03163314610d305760405162461bcd60e51b8152600401610885906126ba565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d915760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c190612680565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b8152600401610885906126ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ed15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610885565b610edb8282611f65565b5050565b6005546001600160a01b03163314610f095760405162461bcd60e51b8152600401610885906126ba565b60138290556014819055610f1d8183612734565b601281905560641015610f845760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610885565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110545760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610885565b611061338585840361155b565b5060019392505050565b600061085133848461167f565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610885906126ba565b601082905560118190556110b68183612734565b600f8190556064101561111c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610885565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610fc6565b6005546001600160a01b0316331461118c5760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610de5565b6005546001600160a01b0316331461120e5760405162461bcd60e51b8152600401610885906126ba565b600182101561127c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610885565b818110156112df5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610885565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906113099190612747565b611313919061275e565b6006556127108161132360025490565b61132d9190612747565b611337919061275e565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113ac5760405162461bcd60e51b8152600401610885906126ba565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610885906126ba565b600581101561146b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610885565b6103e861147760025490565b6114819083612747565b61148b919061275e565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c33565b6005546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b61155881611f13565b50565b6001600160a01b0383166115bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610885565b6001600160a01b03821661161e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610885565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a55760405162461bcd60e51b815260040161088590612780565b6001600160a01b0382166116cb5760405162461bcd60e51b8152600401610885906127c5565b806000036116e4576116df83836000611fb9565b505050565b60085460ff1615611c3d576005546001600160a01b0384811691161480159061171b57506005546001600160a01b03838116911614155b801561172f57506001600160a01b03821615155b801561174657506001600160a01b03821661dead14155b801561175c5750600554600160a01b900460ff16155b15611c3d57600d5460ff16611801576001600160a01b03831660009081526017602052604090205460ff16806117aa57506001600160a01b03821660009081526017602052604090205460ff165b6118015760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610885565b60085462010000900460ff16156118a9576001600160a01b0383166000908152600c602052604090205460ff168061185157506001600160a01b0382166000908152600c602052604090205460ff165b6118a95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b6064820152608401610885565b600854610100900460ff16156119f5576005546001600160a01b0383811691161480159061190957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561194757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156119f557326000908152600b602052604090205443116119e25760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610885565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3657506001600160a01b03821660009081526018602052604090205460ff16155b15611b0b57600a54811115611a9c5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610885565b6009546001600160a01b038316600090815260208190526040902054611ac29083612734565b1115611b065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b611c3d565b6001600160a01b03821660009081526019602052604090205460ff168015611b4c57506001600160a01b03831660009081526018602052604090205460ff16155b15611bb357600a54811115611b065760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610885565b6001600160a01b03821660009081526018602052604090205460ff16611c3d576009546001600160a01b038316600090815260208190526040902054611bf99083612734565b1115611c3d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b3060009081526020819052604090205460065481108015908190611c6a5750600554600160a81b900460ff165b8015611c805750600554600160a01b900460ff16155b8015611ca557506001600160a01b03851660009081526019602052604090205460ff16155b8015611cca57506001600160a01b03851660009081526017602052604090205460ff16155b8015611cef57506001600160a01b03841660009081526017602052604090205460ff16155b15611d1d576005805460ff60a01b1916600160a01b179055611d0f61210d565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6b57506001600160a01b03851660009081526017602052604090205460ff165b15611d74575060005b60008115611eff576001600160a01b03861660009081526019602052604090205460ff168015611da657506000601254115b15611e3457611dcb6064611dc56012548861223390919063ffffffff16565b90612246565b905060125460145482611dde9190612747565b611de8919061275e565b60166000828254611df99190612734565b9091555050601254601354611e0e9083612747565b611e18919061275e565b60156000828254611e299190612734565b90915550611ee19050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5e57506000600f54115b15611ee157611e7d6064611dc5600f548861223390919063ffffffff16565b9050600f5460115482611e909190612747565b611e9a919061275e565b60166000828254611eab9190612734565b9091555050600f54601054611ec09083612747565b611eca919061275e565b60156000828254611edb9190612734565b90915550505b8015611ef257611ef2873083611fb9565b611efc8186612808565b94505b611f0a878787611fb9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdf5760405162461bcd60e51b815260040161088590612780565b6001600160a01b0382166120055760405162461bcd60e51b8152600401610885906127c5565b6001600160a01b0383166000908152602081905260409020548181101561207d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610885565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b4908490612734565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210091815260200190565b60405180910390a36108ff565b3060009081526020819052604081205490819081810361212c57505050565b60075483111561213c5760075492505b824761214782612252565b60006121534783612412565b9050600061217086611dc56016548561223390919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c8576040519150601f19603f3d011682016040523d82523d6000602084013e6121cd565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612222576040519150601f19603f3d011682016040523d82523d6000602084013e612227565b606091505b50505050505050505050565b600061223f8284612747565b9392505050565b600061223f828461275e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612287576122876126ef565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612329919061281b565b8160018151811061233c5761233c6126ef565b60200260200101906001600160a01b031690816001600160a01b031681525050612387307f00000000000000000000000000000000000000000000000000000000000000008461155b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123dc908590600090869030904290600401612838565b600060405180830381600087803b1580156123f657600080fd5b505af115801561240a573d6000803e3d6000fd5b505050505050565b600061223f8284612808565b600060208083528351808285015260005b8181101561244b5785810183015185820160400152820161242f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461155857600080fd5b6000806040838503121561249457600080fd5b823561249f8161246c565b946020939093013593505050565b803580151581146124bd57600080fd5b919050565b6000806000604084860312156124d757600080fd5b833567ffffffffffffffff808211156124ef57600080fd5b818601915086601f83011261250357600080fd5b81358181111561251257600080fd5b8760208260051b850101111561252757600080fd5b60209283019550935061253d91860190506124ad565b90509250925092565b60006020828403121561255857600080fd5b813561223f8161246c565b60008060006060848603121561257857600080fd5b83356125838161246c565b925060208401356125938161246c565b929592945050506040919091013590565b6000602082840312156125b657600080fd5b5035919050565b600080604083850312156125d057600080fd5b82356125db8161246c565b91506125e9602084016124ad565b90509250929050565b6000806040838503121561260557600080fd5b50508035926020909101359150565b60008060006060848603121561262957600080fd5b612632846124ad565b95602085013595506040909401359392505050565b6000806040838503121561265a57600080fd5b82356126658161246c565b915060208301356126758161246c565b809150509250929050565b600181811c9082168061269457607f821691505b6020821081036126b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272d5761272d612705565b5060010190565b8082018082111561085557610855612705565b808202811582820484141761085557610855612705565b60008261277b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085557610855612705565b60006020828403121561282d57600080fd5b815161223f8161246c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128885784516001600160a01b031683529383019391830191600101612863565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206442c3eeab2ce9f8bd17f6b4d9e5f2ad1eca1b8b67999caffb3a6cc6aeca80a964736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102135760003560e01c806374f8979011610118578063b2d8f208116100a0578063dd62ed3e1161006f578063dd62ed3e146106e3578063e884f26014610729578063f1d5f5171461073e578063f242ab411461075e578063f2fde38b1461079257600080fd5b8063b2d8f20814610644578063c024666814610664578063c7e3955f14610684578063d0889358146106c357600080fd5b806395d89b41116100e757806395d89b41146105af5780639a7a23d6146105c45780639fd8234e146105e4578063a457c2d714610604578063a9059cbb1461062457600080fd5b806374f89790146104fc578063751039fc146105485780637571336a1461055d5780638da5cb5b1461057d57600080fd5b8063341683911161019b57806356224ea71161016a57806356224ea71461045c5780635c85974f146104715780635d098b381461049157806370a08231146104b1578063715018a6146104e757600080fd5b806334168391146103a457806339509351146103dc57806344b2267b146103fc5780634cd94ce31461041157600080fd5b806318160ddd116101e257806318160ddd146102b65780631f53ac02146102d55780632126fcb2146102f557806323b872dd14610368578063313ce5671461038857600080fd5b806306fdde031461021f578063095ea7b31461024a57806311704f521461027a57806314d178ac1461029457600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107b2565b604051610241919061241e565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612481565b610844565b6040519015158152602001610241565b34801561028657600080fd5b50600d5461026a9060ff1681565b3480156102a057600080fd5b506102b46102af3660046124c2565b61085b565b005b3480156102c257600080fd5b506002545b604051908152602001610241565b3480156102e157600080fd5b506102b46102f0366004612546565b610905565b34801561030157600080fd5b50610349610310366004612546565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610241565b34801561037457600080fd5b5061026a610383366004612563565b61098c565b34801561039457600080fd5b5060405160128152602001610241565b3480156103b057600080fd5b50600d54600e54604080516101009093046001600160a01b039081168452909116602083015201610241565b3480156103e857600080fd5b5061026a6103f7366004612481565b610a36565b34801561040857600080fd5b506102b4610a72565b34801561041d57600080fd5b5061043a600854600954600a5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610241565b34801561046857600080fd5b506102b4610ae9565b34801561047d57600080fd5b506102b461048c3660046125a4565b610b67565b34801561049d57600080fd5b506102b46104ac366004612546565b610c3e565b3480156104bd57600080fd5b506102c76104cc366004612546565b6001600160a01b031660009081526020819052604090205490565b3480156104f357600080fd5b506102b4610cd0565b34801561050857600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561055457600080fd5b506102b4610d06565b34801561056957600080fd5b506102b46105783660046125bd565b610d67565b34801561058957600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610241565b3480156105bb57600080fd5b50610234610df1565b3480156105d057600080fd5b506102b46105df3660046125bd565b610e00565b3480156105f057600080fd5b506102b46105ff3660046125f2565b610edf565b34801561061057600080fd5b5061026a61061f366004612481565b610fd2565b34801561063057600080fd5b5061026a61063f366004612481565b61106b565b34801561065057600080fd5b506102b461065f3660046125f2565b611078565b34801561067057600080fd5b506102b461067f3660046125bd565b611162565b34801561069057600080fd5b50600554600654600754600160a81b90920460ff1691604080519315158452602084019290925290820152606001610241565b3480156106cf57600080fd5b506102b46106de366004612614565b6111e4565b3480156106ef57600080fd5b506102c76106fe366004612647565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073557600080fd5b506102b4611382565b34801561074a57600080fd5b506102b46107593660046125a4565b6113e4565b34801561076a57600080fd5b506105977f00000000000000000000000088c29c9711f3d98213417a2fe6092455d35fbd1f81565b34801561079e57600080fd5b506102b46107ad366004612546565b6114c0565b6060600380546107c190612680565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612680565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061085133848461155b565b5060015b92915050565b6005546001600160a01b0316331461088e5760405162461bcd60e51b8152600401610885906126ba565b60405180910390fd5b60005b828110156108ff5781600c60008686858181106108b0576108b06126ef565b90506020020160208101906108c59190612546565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f78161271b565b915050610891565b50505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b8152600401610885906126ba565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600061099984848461167f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a1e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610885565b610a2b853385840361155b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610851918590610a6d908690612734565b61155b565b6005546001600160a01b03163314610a9c5760405162461bcd60e51b8152600401610885906126ba565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610b135760405162461bcd60e51b8152600401610885906126ba565b60085462010000900460ff16610b595760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b6044820152606401610885565b6008805462ff000019169055565b6005546001600160a01b03163314610b915760405162461bcd60e51b8152600401610885906126ba565b6002811015610be25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610885565b6103e8610bee60025490565b610bf89083612747565b610c02919061275e565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c685760405162461bcd60e51b8152600401610885906126ba565b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610885906126ba565b610d046000611f13565b565b6005546001600160a01b03163314610d305760405162461bcd60e51b8152600401610885906126ba565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d915760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c190612680565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b8152600401610885906126ba565b7f00000000000000000000000088c29c9711f3d98213417a2fe6092455d35fbd1f6001600160a01b0316826001600160a01b031603610ed15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610885565b610edb8282611f65565b5050565b6005546001600160a01b03163314610f095760405162461bcd60e51b8152600401610885906126ba565b60138290556014819055610f1d8183612734565b601281905560641015610f845760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610885565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110545760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610885565b611061338585840361155b565b5060019392505050565b600061085133848461167f565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610885906126ba565b601082905560118190556110b68183612734565b600f8190556064101561111c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610885565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610fc6565b6005546001600160a01b0316331461118c5760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610de5565b6005546001600160a01b0316331461120e5760405162461bcd60e51b8152600401610885906126ba565b600182101561127c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610885565b818110156112df5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610885565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906113099190612747565b611313919061275e565b6006556127108161132360025490565b61132d9190612747565b611337919061275e565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113ac5760405162461bcd60e51b8152600401610885906126ba565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610885906126ba565b600581101561146b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610885565b6103e861147760025490565b6114819083612747565b61148b919061275e565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c33565b6005546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610885906126ba565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b61155881611f13565b50565b6001600160a01b0383166115bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610885565b6001600160a01b03821661161e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610885565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a55760405162461bcd60e51b815260040161088590612780565b6001600160a01b0382166116cb5760405162461bcd60e51b8152600401610885906127c5565b806000036116e4576116df83836000611fb9565b505050565b60085460ff1615611c3d576005546001600160a01b0384811691161480159061171b57506005546001600160a01b03838116911614155b801561172f57506001600160a01b03821615155b801561174657506001600160a01b03821661dead14155b801561175c5750600554600160a01b900460ff16155b15611c3d57600d5460ff16611801576001600160a01b03831660009081526017602052604090205460ff16806117aa57506001600160a01b03821660009081526017602052604090205460ff165b6118015760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610885565b60085462010000900460ff16156118a9576001600160a01b0383166000908152600c602052604090205460ff168061185157506001600160a01b0382166000908152600c602052604090205460ff165b6118a95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b6064820152608401610885565b600854610100900460ff16156119f5576005546001600160a01b0383811691161480159061190957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561194757507f00000000000000000000000088c29c9711f3d98213417a2fe6092455d35fbd1f6001600160a01b0316826001600160a01b031614155b156119f557326000908152600b602052604090205443116119e25760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610885565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3657506001600160a01b03821660009081526018602052604090205460ff16155b15611b0b57600a54811115611a9c5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610885565b6009546001600160a01b038316600090815260208190526040902054611ac29083612734565b1115611b065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b611c3d565b6001600160a01b03821660009081526019602052604090205460ff168015611b4c57506001600160a01b03831660009081526018602052604090205460ff16155b15611bb357600a54811115611b065760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610885565b6001600160a01b03821660009081526018602052604090205460ff16611c3d576009546001600160a01b038316600090815260208190526040902054611bf99083612734565b1115611c3d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b3060009081526020819052604090205460065481108015908190611c6a5750600554600160a81b900460ff165b8015611c805750600554600160a01b900460ff16155b8015611ca557506001600160a01b03851660009081526019602052604090205460ff16155b8015611cca57506001600160a01b03851660009081526017602052604090205460ff16155b8015611cef57506001600160a01b03841660009081526017602052604090205460ff16155b15611d1d576005805460ff60a01b1916600160a01b179055611d0f61210d565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6b57506001600160a01b03851660009081526017602052604090205460ff165b15611d74575060005b60008115611eff576001600160a01b03861660009081526019602052604090205460ff168015611da657506000601254115b15611e3457611dcb6064611dc56012548861223390919063ffffffff16565b90612246565b905060125460145482611dde9190612747565b611de8919061275e565b60166000828254611df99190612734565b9091555050601254601354611e0e9083612747565b611e18919061275e565b60156000828254611e299190612734565b90915550611ee19050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5e57506000600f54115b15611ee157611e7d6064611dc5600f548861223390919063ffffffff16565b9050600f5460115482611e909190612747565b611e9a919061275e565b60166000828254611eab9190612734565b9091555050600f54601054611ec09083612747565b611eca919061275e565b60156000828254611edb9190612734565b90915550505b8015611ef257611ef2873083611fb9565b611efc8186612808565b94505b611f0a878787611fb9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdf5760405162461bcd60e51b815260040161088590612780565b6001600160a01b0382166120055760405162461bcd60e51b8152600401610885906127c5565b6001600160a01b0383166000908152602081905260409020548181101561207d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610885565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b4908490612734565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210091815260200190565b60405180910390a36108ff565b3060009081526020819052604081205490819081810361212c57505050565b60075483111561213c5760075492505b824761214782612252565b60006121534783612412565b9050600061217086611dc56016548561223390919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c8576040519150601f19603f3d011682016040523d82523d6000602084013e6121cd565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612222576040519150601f19603f3d011682016040523d82523d6000602084013e612227565b606091505b50505050505050505050565b600061223f8284612747565b9392505050565b600061223f828461275e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612287576122876126ef565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612329919061281b565b8160018151811061233c5761233c6126ef565b60200260200101906001600160a01b031690816001600160a01b031681525050612387307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461155b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123dc908590600090869030904290600401612838565b600060405180830381600087803b1580156123f657600080fd5b505af115801561240a573d6000803e3d6000fd5b505050505050565b600061223f8284612808565b600060208083528351808285015260005b8181101561244b5785810183015185820160400152820161242f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461155857600080fd5b6000806040838503121561249457600080fd5b823561249f8161246c565b946020939093013593505050565b803580151581146124bd57600080fd5b919050565b6000806000604084860312156124d757600080fd5b833567ffffffffffffffff808211156124ef57600080fd5b818601915086601f83011261250357600080fd5b81358181111561251257600080fd5b8760208260051b850101111561252757600080fd5b60209283019550935061253d91860190506124ad565b90509250925092565b60006020828403121561255857600080fd5b813561223f8161246c565b60008060006060848603121561257857600080fd5b83356125838161246c565b925060208401356125938161246c565b929592945050506040919091013590565b6000602082840312156125b657600080fd5b5035919050565b600080604083850312156125d057600080fd5b82356125db8161246c565b91506125e9602084016124ad565b90509250929050565b6000806040838503121561260557600080fd5b50508035926020909101359150565b60008060006060848603121561262957600080fd5b612632846124ad565b95602085013595506040909401359392505050565b6000806040838503121561265a57600080fd5b82356126658161246c565b915060208301356126758161246c565b809150509250929050565b600181811c9082168061269457607f821691505b6020821081036126b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272d5761272d612705565b5060010190565b8082018082111561085557610855612705565b808202811582820484141761085557610855612705565b60008261277b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085557610855612705565b60006020828403121561282d57600080fd5b815161223f8161246c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128885784516001600160a01b031683529383019391830191600101612863565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206442c3eeab2ce9f8bd17f6b4d9e5f2ad1eca1b8b67999caffb3a6cc6aeca80a964736f6c63430008130033
Deployed Bytecode Sourcemap
25405:21811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11003:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13236:194;;;;;;;;;;-1:-1:-1;13236:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13236:194:0;1023:187:1;26115:31:0;;;;;;;;;;-1:-1:-1;26115:31:0;;;;;;;;40906:241;;;;;;;;;;-1:-1:-1;40906:241:0;;;;;:::i;:::-;;:::i;:::-;;12123:108;;;;;;;;;;-1:-1:-1;12211:12:0;;12123:108;;;2220:25:1;;;2208:2;2193:18;12123:108:0;2074:177:1;40615:160:0;;;;;;;;;;-1:-1:-1;40615:160:0;;;;;:::i;:::-;;:::i;33826:416::-;;;;;;;;;;-1:-1:-1;33826:416:0;;;;;:::i;:::-;-1:-1:-1;;;;;34086:20:0;33944:17;34086:20;;;:11;:20;;;;;;;;;34136:15;:24;;;;;;34200:25;:34;;;;;;34086:20;;;;;34136:24;;;;34200:34;;33826:416;;;;;2717:14:1;;2710:22;2692:41;;2776:14;;2769:22;2764:2;2749:18;;2742:50;2835:14;2828:22;2808:18;;;2801:50;2680:2;2665:18;33826:416:0;2508:349:1;13908:529:0;;;;;;;;;;-1:-1:-1;13908:529:0;;;;;:::i;:::-;;:::i;11965:93::-;;;;;;;;;;-1:-1:-1;11965:93:0;;12048:2;3465:36:1;;3453:2;3438:18;11965:93:0;3323:184:1;32193:209:0;;;;;;;;;;-1:-1:-1;32369:11:0;;32382;;32193:209;;;32369:11;;;;-1:-1:-1;;;;;32369:11:0;;;3724:34:1;;32382:11:0;;;3789:2:1;3774:18;;3767:43;3659:18;32193:209:0;3512:304:1;14842:290:0;;;;;;;;;;-1:-1:-1;14842:290:0;;;;;:::i;:::-;;:::i;34385:153::-;;;;;;;;;;;;;:::i;31575:392::-;;;;;;;;;;;;31832:14;;31925:9;;31954:5;;31832:14;;;;;;31881:20;;;;;31575:392;;;;;4065:14:1;;4058:22;4040:41;;4124:14;;4117:22;4112:2;4097:18;;4090:50;4156:18;;;4149:34;4214:2;4199:18;;4192:34;4027:3;4012:19;31575:392:0;3821:411:1;40783:115:0;;;;;;;;;;;;;:::i;36369:215::-;;;;;;;;;;-1:-1:-1;36369:215:0;;;;;:::i;:::-;;:::i;40275:166::-;;;;;;;;;;-1:-1:-1;40275:166:0;;;;;:::i;:::-;;:::i;12294:143::-;;;;;;;;;;-1:-1:-1;12294:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12411:18:0;12384:7;12411:18;;;;;;;;;;;;12294:143;22342:103;;;;;;;;;;;;;:::i;32866:510::-;;;;;;;;;;-1:-1:-1;33182:11:0;;33217:9;;33250;;33286:12;;33323:10;;33358;;32866:510;;;4709:25:1;;;4765:2;4750:18;;4743:34;;;;4793:18;;;4786:34;;;;4851:2;4836:18;;4829:34;4894:3;4879:19;;4872:35;4938:3;4923:19;;4916:35;4696:3;4681:19;32866:510:0;4422:535:1;34693:130:0;;;;;;;;;;;;;:::i;37294:200::-;;;;;;;;;;-1:-1:-1;37294:200:0;;;;;:::i;:::-;;:::i;21691:87::-;;;;;;;;;;-1:-1:-1;21764:6:0;;-1:-1:-1;;;;;21764:6:0;21691:87;;;-1:-1:-1;;;;;5446:32:1;;;5428:51;;5416:2;5401:18;21691:87:0;5282:203:1;11222:104:0;;;;;;;;;;;;;:::i;39593:300::-;;;;;;;;;;-1:-1:-1;39593:300:0;;;;;:::i;:::-;;:::i;38440:419::-;;;;;;;;;;-1:-1:-1;38440:419:0;;;;;:::i;:::-;;:::i;15631:475::-;;;;;;;;;;-1:-1:-1;15631:475:0;;;;;:::i;:::-;;:::i;12650:200::-;;;;;;;;;;-1:-1:-1;12650:200:0;;;;;:::i;:::-;;:::i;37781:370::-;;;;;;;;;;-1:-1:-1;37781:370:0;;;;;:::i;:::-;;:::i;39108:174::-;;;;;;;;;;-1:-1:-1;39108:174:0;;;;;:::i;:::-;;:::i;30803:351::-;;;;;;;;;;-1:-1:-1;31037:15:0;;31083:16;;31130;;-1:-1:-1;;;31037:15:0;;;;;;30803:351;;;5964:14:1;;5957:22;5939:41;;6011:2;5996:18;;5989:34;;;;6039:18;;;6032:34;5927:2;5912:18;30803:351:0;5743:329:1;35580:553:0;;;;;;;;;;-1:-1:-1;35580:553:0;;;;;:::i;:::-;;:::i;12913:176::-;;;;;;;;;;-1:-1:-1;12913:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13054:18:0;;;13027:7;13054:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12913:176;34963:152;;;;;;;;;;;;;:::i;36791:235::-;;;;;;;;;;-1:-1:-1;36791:235:0;;;;;:::i;:::-;;:::i;25525:32::-;;;;;;;;;;;;;;;22600:238;;;;;;;;;;-1:-1:-1;22600:238:0;;;;;:::i;:::-;;:::i;11003:100::-;11057:13;11090:5;11083:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11003:100;:::o;13236:194::-;13344:4;13361:39;10089:10;13384:7;13393:6;13361:8;:39::i;:::-;-1:-1:-1;13418:4:0;13236:194;;;;;:::o;40906:241::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;;;;;;;;;41030:9:::1;41025:115;41045:21:::0;;::::1;41025:115;;;41120:8;41088:14;:29;41103:10;;41114:1;41103:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41088:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41088:29:0;:40;;-1:-1:-1;;41088:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41068:3;::::1;::::0;::::1;:::i;:::-;;;;41025:115;;;;40906:241:::0;;;:::o;40615:160::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;40721:11:::1;::::0;40691:42:::1;::::0;-1:-1:-1;;;;;40721:11:0;;::::1;::::0;40691:42;::::1;::::0;::::1;::::0;40721:11:::1;::::0;40691:42:::1;40744:11;:23:::0;;-1:-1:-1;;;;;;40744:23:0::1;-1:-1:-1::0;;;;;40744:23:0;;;::::1;::::0;;;::::1;::::0;;40615:160::o;13908:529::-;14048:4;14065:36;14075:6;14083:9;14094:6;14065:9;:36::i;:::-;-1:-1:-1;;;;;14141:19:0;;14114:24;14141:19;;;:11;:19;;;;;;;;10089:10;14141:33;;;;;;;;14207:26;;;;14185:116;;;;-1:-1:-1;;;14185:116:0;;8143:2:1;14185:116: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;;14185:116:0;7941:404:1;14185:116:0;14337:57;14346:6;10089:10;14387:6;14368:16;:25;14337:8;:57::i;:::-;-1:-1:-1;14425:4:0;;13908:529;-1:-1:-1;;;;13908:529:0:o;14842:290::-;10089:10;14955:4;15044:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15044:34:0;;;;;;;;;;14955:4;;14972:130;;15022:7;;15044:47;;15081:10;;15044:47;:::i;:::-;14972:8;:130::i;34385:153::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;34432:11:::1;:18:::0;;-1:-1:-1;;34432:18:0::1;34446:4;34432:18;::::0;;34461:15:::1;:22:::0;;-1:-1:-1;;;;34461:22:0::1;-1:-1:-1::0;;;34461:22:0::1;::::0;;34499:31:::1;::::0;34514:15:::1;::::0;34499:31:::1;::::0;34432:11:::1;::::0;34499:31:::1;34385:153::o:0;40783:115::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;40841:7:::1;::::0;;;::::1;;;40833:31;;;::::0;-1:-1:-1;;;40833:31:0;;8682:2:1;40833:31:0::1;::::0;::::1;8664:21:1::0;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:41;8791:18;;40833:31:0::1;8480:335:1::0;40833:31:0::1;40875:7;:15:::0;;-1:-1:-1;;40875:15:0::1;::::0;;40783:115::o;36369:215::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;36453:1:::1;36443:6;:11;;36435:56;;;::::0;-1:-1:-1;;;36435:56:0;;9022:2:1;36435:56:0::1;::::0;::::1;9004:21:1::0;;;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9152:18;;36435:56:0::1;8820:356:1::0;36435:56:0::1;36537:4;36520:13;12211:12:::0;;;12123:108;36520:13:::1;36511:22;::::0;:6;:22:::1;:::i;:::-;36510:31;;;;:::i;:::-;36502:5;:39:::0;;;36557:19:::1;::::0;2220:25:1;;;36557:19:0::1;::::0;2208:2:1;2193:18;36557:19:0::1;;;;;;;;36369:215:::0;:::o;40275:166::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;40387:11:::1;::::0;40357:42:::1;::::0;-1:-1:-1;;;;;40387:11:0::1;::::0;;::::1;::::0;::::1;::::0;40357:42;::::1;::::0;::::1;::::0;;;::::1;40410:11;:23:::0;;-1:-1:-1;;;;;40410:23:0;;::::1;;;-1:-1:-1::0;;;;;;40410:23:0;;::::1;::::0;;;::::1;::::0;;40275:166::o;22342:103::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;22407:30:::1;22434:1;22407:18;:30::i;:::-;22342:103::o:0;34693:130::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;34747:14:::1;:22:::0;;-1:-1:-1;;34747:22:0::1;::::0;;34785:30:::1;::::0;34799:15:::1;::::0;34785:30:::1;::::0;34764:5:::1;::::0;34785:30:::1;34693:130::o:0;37294:200::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37409:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37409:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37455:31;;1163:41:1;;;37455:31:0::1;::::0;1136:18:1;37455:31:0::1;;;;;;;;37294:200:::0;;:::o;11222:104::-;11278:13;11311:7;11304:14;;;;;:::i;39593:300::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;39739:7:::1;-1:-1:-1::0;;;;;39731:15:0::1;:4;-1:-1:-1::0;;;;;39731:15:0::1;::::0;39709:122:::1;;;::::0;-1:-1:-1;;;39709:122:0;;9778:2:1;39709:122:0::1;::::0;::::1;9760:21:1::0;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;9927:27;9907:18;;;9900:55;9972:19;;39709:122:0::1;9576:421:1::0;39709:122:0::1;39844:41;39873:4;39879:5;39844:28;:41::i;:::-;39593:300:::0;;:::o;38440:419::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;38556:10:::1;:26:::0;;;38593:10:::1;:20:::0;;;38639:23:::1;38606:7:::0;38569:13;38639:23:::1;:::i;:::-;38624:12;:38:::0;;;38711:3:::1;-1:-1:-1::0;38695:19:0::1;38673:110;;;::::0;-1:-1:-1;;;38673:110:0;;10204:2:1;38673:110:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:39;10382:19;;38673:110:0::1;10002:405:1::0;38673:110:0::1;38814:12;::::0;38828:10:::1;::::0;38840::::1;::::0;38799:52:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38799:52:0::1;::::0;10602:2:1;10587:18;38799:52:0::1;;;;;;;;38440:419:::0;;:::o;15631:475::-;10089:10;15749:4;15793:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15793:34:0;;;;;;;;;;15860:35;;;;15838:122;;;;-1:-1:-1;;;15838:122:0;;10938:2:1;15838:122:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:35;11112:19;;15838:122:0;10736:401:1;15838:122:0;15996:67;10089:10;16019:7;16047:15;16028:16;:34;15996:8;:67::i;:::-;-1:-1:-1;16094:4:0;;15631:475;-1:-1:-1;;;15631:475:0:o;12650:200::-;12761:4;12778:42;10089:10;12802:9;12813:6;12778:9;:42::i;37781:370::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;37896:9:::1;:25:::0;;;37932:9:::1;:19:::0;;;37976:21:::1;37944:7:::0;37908:13;37976:21:::1;:::i;:::-;37962:11;:35:::0;;;38031:3:::1;-1:-1:-1::0;38016:18:0::1;38008:71;;;::::0;-1:-1:-1;;;38008:71:0;;11344:2:1;38008:71:0::1;::::0;::::1;11326:21:1::0;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:38;11521:19;;38008:71:0::1;11142:404:1::0;38008:71:0::1;38109:11;::::0;38122:9:::1;::::0;38133::::1;::::0;38095:48:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38095:48:0::1;::::0;10602:2:1;10587:18;38095:48:0::1;10412:319:1::0;39108:174:0;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39193:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;39193:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39240:34;;1163:41:1;;;39240:34:0::1;::::0;1136:18:1;39240:34:0::1;1023:187:1::0;35580:553:0;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;35746:1:::1;35738:4;:9;;35716:111;;;::::0;-1:-1:-1;;;35716:111:0;;11753:2:1;35716:111:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:50;11942:19;;35716:111:0::1;11551:416:1::0;35716:111:0::1;35854:4;35846;:12;;35838:67;;;::::0;-1:-1:-1;;;35838:67:0;;12174:2:1;35838:67:0::1;::::0;::::1;12156:21:1::0;12213:2;12193:18;;;12186:30;12252:34;12232:18;;;12225:62;-1:-1:-1;;;12303:18:1;;;12296:40;12353:19;;35838:67:0::1;11972:406:1::0;35838:67:0::1;35918:15;:26:::0;;-1:-1:-1;;;;35918:26:0::1;-1:-1:-1::0;;;35918:26:0;::::1;;;;::::0;;12211:12;;35999:5:::1;::::0;35991:4;;35975:20:::1;;;;:::i;:::-;35974:30;;;;:::i;:::-;35955:16;:49:::0;36059:5:::1;36051:4:::0;36035:13:::1;12211:12:::0;;;12123:108;36035:13:::1;:20;;;;:::i;:::-;36034:30;;;;:::i;:::-;36015:16;:49:::0;36080:45:::1;::::0;;5964:14:1;;5957:22;5939:41;;6011:2;5996:18;;5989:34;;;6039:18;;;6032:34;;;36080:45:0::1;::::0;5927:2:1;5912:18;36080:45:0::1;;;;;;;35580:553:::0;;;:::o;34963:152::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;35025:20:::1;:28:::0;;-1:-1:-1;;35025:28:0::1;::::0;;35069:38:::1;::::0;35091:15:::1;::::0;35069:38:::1;::::0;35048:5:::1;::::0;35069:38:::1;34963:152::o:0;36791:235::-;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;36879:1:::1;36869:6;:11;;36861:60;;;::::0;-1:-1:-1;;;36861:60:0;;12585:2:1;36861:60:0::1;::::0;::::1;12567:21:1::0;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:34;12758:19;;36861:60:0::1;12383:400:1::0;36861:60:0::1;36971:4;36954:13;12211:12:::0;;;12123:108;36954:13:::1;36945:22;::::0;:6;:22:::1;:::i;:::-;36944:31;;;;:::i;:::-;36932:9;:43:::0;;;36991:27:::1;::::0;2220:25:1;;;36991:27:0::1;::::0;2208:2:1;2193:18;36991:27:0::1;2074:177:1::0;22600:238:0;21764:6;;-1:-1:-1;;;;;21764:6:0;10089:10;21911:23;21903:68;;;;-1:-1:-1;;;21903:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22703:22:0;::::1;22681:110;;;::::0;-1:-1:-1;;;22681:110:0;;12990:2:1;22681:110:0::1;::::0;::::1;12972:21:1::0;13029:2;13009:18;;;13002:30;13068:34;13048:18;;;13041:62;-1:-1:-1;;;13119:18:1;;;13112:36;13165:19;;22681:110:0::1;12788:402:1::0;22681:110:0::1;22802:28;22821:8;22802:18;:28::i;:::-;22600:238:::0;:::o;19414:380::-;-1:-1:-1;;;;;19550:19:0;;19542:68;;;;-1:-1:-1;;;19542:68:0;;13397:2:1;19542:68:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:34;13570:19;;19542:68:0;13195:400:1;19542:68:0;-1:-1:-1;;;;;19629:21:0;;19621:68;;;;-1:-1:-1;;;19621:68:0;;13802:2:1;19621:68:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:32;13973:19;;19621:68:0;13600:398:1;19621:68:0;-1:-1:-1;;;;;19702:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19754:32;;2220:25:1;;;19754:32:0;;2193:18:1;19754:32:0;;;;;;;19414:380;;;:::o;41155:4535::-;-1:-1:-1;;;;;41287:18:0;;41279:68;;;;-1:-1:-1;;;41279:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41366:16:0;;41358:64;;;;-1:-1:-1;;;41358:64:0;;;;;;;:::i;:::-;41439:6;41449:1;41439:11;41435:93;;41467:28;41483:4;41489:2;41493:1;41467:15;:28::i;:::-;41155:4535;;;:::o;41435:93::-;41544:14;;;;41540:2517;;;21764:6;;-1:-1:-1;;;;;41597:15:0;;;21764:6;;41597:15;;;;:49;;-1:-1:-1;21764:6:0;;-1:-1:-1;;;;;41633:13:0;;;21764:6;;41633:13;;41597:49;:86;;;;-1:-1:-1;;;;;;41667:16:0;;;;41597:86;:128;;;;-1:-1:-1;;;;;;41704:21:0;;41718:6;41704:21;;41597:128;:158;;;;-1:-1:-1;41747:8:0;;-1:-1:-1;;;41747:8:0;;;;41746:9;41597:158;41575:2471;;;41795:11;;;;41790:217;;-1:-1:-1;;;;;41865:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;41886:15:0;;;;;;:11;:15;;;;;;;;41865:36;41831:156;;;;-1:-1:-1;;;41831:156:0;;15015:2:1;41831:156:0;;;14997:21:1;15054:2;15034:18;;;15027:30;15093:34;15073:18;;;15066:62;-1:-1:-1;;;15144:18:1;;;15137:32;15186:19;;41831:156:0;14813:398:1;41831:156:0;42029:7;;;;;;;42025:220;;;-1:-1:-1;;;;;42095:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42119:18:0;;;;;;:14;:18;;;;;;;;42095:42;42061:164;;;;-1:-1:-1;;;42061:164:0;;15418:2:1;42061:164:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:34;15476:18;;;15469:62;-1:-1:-1;;;15547:18:1;;;15540:34;15591:19;;42061:164:0;15216:400:1;42061:164:0;42401:20;;;;;;;42397:629;;;21764:6;;-1:-1:-1;;;;;42476:13:0;;;21764:6;;42476:13;;;;:66;;;42532:9;-1:-1:-1;;;;;42518:24:0;:2;-1:-1:-1;;;;;42518:24:0;;;42476:66;:117;;;;;42585:7;-1:-1:-1;;;;;42571:22:0;:2;-1:-1:-1;;;;;42571:22:0;;;42476:117;42446:561;;;42711:9;42682:39;;;;:28;:39;;;;;;42757:12;-1:-1:-1;42644:258:0;;;;-1:-1:-1;;;42644:258:0;;15823:2:1;42644:258:0;;;15805:21:1;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;15972:34;15952:18;;;15945:62;-1:-1:-1;;;16023:19:1;;;16016:40;16073:19;;42644:258:0;15621:477:1;42644:258:0;42958:9;42929:39;;;;:28;:39;;;;;42971:12;42929:54;;42446:561;-1:-1:-1;;;;;43078:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43114:19:0;;;;;;:15;:19;;;;;;;;43113:20;43078:55;43074:957;;;43202:5;;43192:6;:15;;43158:139;;;;-1:-1:-1;;;43158:139:0;;16305:2:1;43158:139:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:36;16480:19;;43158:139:0;16103:402:1;43158:139:0;43380:9;;-1:-1:-1;;;;;12411:18:0;;12384:7;12411:18;;;;;;;;;;;43354:22;;:6;:22;:::i;:::-;:35;;43320:140;;;;-1:-1:-1;;;43320:140:0;;16712:2:1;43320:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43320:140:0;16510:343:1;43320:140:0;43074:957;;;-1:-1:-1;;;;;43558:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43592:21:0;;;;;;:15;:21;;;;;;;;43591:22;43558:55;43532:499;;;43700:5;;43690:6;:15;;43656:140;;;;-1:-1:-1;;;43656:140:0;;17060:2:1;43656:140:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:34;17118:18;;;17111:62;-1:-1:-1;;;17189:18:1;;;17182:37;17236:19;;43656:140:0;16858:403:1;43532:499:0;-1:-1:-1;;;;;43827:19:0;;;;;;:15;:19;;;;;;;;43822:209;;43931:9;;-1:-1:-1;;;;;12411:18:0;;12384:7;12411:18;;;;;;;;;;;43905:22;;:6;:22;:::i;:::-;:35;;43871:140;;;;-1:-1:-1;;;43871:140:0;;16712:2:1;43871:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43871:140:0;16510:343:1;43871:140:0;44118:4;44069:28;12411:18;;;;;;;;;;;44176:16;;44152:40;;;;;;;44223:39;;-1:-1:-1;44247:15:0;;-1:-1:-1;;;44247:15:0;;;;44223:39;:65;;;;-1:-1:-1;44280:8:0;;-1:-1:-1;;;44280:8:0;;;;44279:9;44223:65;:114;;;;-1:-1:-1;;;;;;44306:31:0;;;;;;:25;:31;;;;;;;;44305:32;44223:114;:149;;;;-1:-1:-1;;;;;;44355:17:0;;;;;;:11;:17;;;;;;;;44354:18;44223:149;:182;;;;-1:-1:-1;;;;;;44390:15:0;;;;;;:11;:15;;;;;;;;44389:16;44223:182;44205:314;;;44432:8;:15;;-1:-1:-1;;;;44432:15:0;-1:-1:-1;;;44432:15:0;;;44464:10;:8;:10::i;:::-;44491:8;:16;;-1:-1:-1;;;;44491:16:0;;;44205:314;44547:8;;-1:-1:-1;;;;;44657:17:0;;44531:12;44657:17;;;:11;:17;;;;;;44547:8;-1:-1:-1;;;44547:8:0;;;;;44546:9;;44657:17;;:36;;-1:-1:-1;;;;;;44678:15:0;;;;;;:11;:15;;;;;;;;44657:36;44653:84;;;-1:-1:-1;44720:5:0;44653:84;44749:12;44854:7;44850:787;;;-1:-1:-1;;;;;44906:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;44954:1;44939:12;;:16;44906:49;44902:586;;;44983:33;45012:3;44983:24;44994:12;;44983:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;44976:40;;45073:12;;45059:10;;45052:4;:17;;;;:::i;:::-;45051:34;;;;:::i;:::-;45035:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45148:12:0;;45134:10;;45127:17;;:4;:17;:::i;:::-;45126:34;;;;:::i;:::-;45104:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;44902:586:0;;-1:-1:-1;44902:586:0;;-1:-1:-1;;;;;45222:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45271:1;45257:11;;:15;45222:50;45218:270;;;45300:32;45328:3;45300:23;45311:11;;45300:6;:10;;:23;;;;:::i;:32::-;45293:39;;45388:11;;45375:9;;45368:4;:16;;;;:::i;:::-;45367:32;;;;:::i;:::-;45351:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45461:11:0;;45448:9;;45441:16;;:4;:16;:::i;:::-;45440:32;;;;:::i;:::-;45418:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45218:270:0;45508:8;;45504:91;;45537:42;45553:4;45567;45574;45537:15;:42::i;:::-;45611:14;45621:4;45611:14;;:::i;:::-;;;44850:787;45649:33;45665:4;45671:2;45675:6;45649:15;:33::i;:::-;41268:4422;;;;41155:4535;;;:::o;22998:191::-;23091:6;;;-1:-1:-1;;;;;23108:17:0;;;-1:-1:-1;;;;;;23108:17:0;;;;;;;23141:40;;23091:6;;;23108:17;23091:6;;23141:40;;23072:16;;23141:40;23061:128;22998:191;:::o;39901:188::-;-1:-1:-1;;;;;39984:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39984:39:0;;;;;;;;;;40041:40;;39984:39;;:31;40041:40;;;39901:188;;:::o;16596:770::-;-1:-1:-1;;;;;16736:20:0;;16728:70;;;;-1:-1:-1;;;16728:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16817:23:0;;16809:71;;;;-1:-1:-1;;;16809:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16977:17:0;;16953:21;16977:17;;;;;;;;;;;17027:23;;;;17005:111;;;;-1:-1:-1;;;17005:111:0;;17601:2:1;17005:111:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;-1:-1:-1;;;17730:18:1;;;17723:36;17776:19;;17005:111:0;17399:402:1;17005:111:0;-1:-1:-1;;;;;17152:17:0;;;:9;:17;;;;;;;;;;;17172:22;;;17152:42;;17216:20;;;;;;;;:30;;17188:6;;17152:9;17216:30;;17188:6;;17216:30;:::i;:::-;;;;;;;;17281:9;-1:-1:-1;;;;;17264:35:0;17273:6;-1:-1:-1;;;;;17264:35:0;;17292:6;17264:35;;;;2220:25:1;;2208:2;2193:18;;2074:177;17264:35:0;;;;;;;;17312:46;41155:4535;46279:934;46362:4;46318:23;12411:18;;;;;;;;;;;;;;46462:20;;;46458:59;;46499:7;;;46279:934::o;46458:59::-;46551:16;;46533:15;:34;46529:101;;;46602:16;;46584:34;;46529:101;46671:15;46727:21;46761:36;46671:15;46761:16;:36::i;:::-;46810:18;46831:44;:21;46857:17;46831:25;:44::i;:::-;46810:65;;46888:17;46908:51;46941:17;46908:28;46923:12;;46908:10;:14;;:28;;;;:::i;:51::-;46993:1;46972:18;:22;;;47005:12;:16;;;47056:11;;47048:47;;46888:71;;-1:-1:-1;;;;;;47056:11:0;;46888:71;;47048:47;46993:1;47048:47;46888:71;47056:11;47048:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47130:11:0;;47122:83;;47034:61;;-1:-1:-1;47130:11:0;;;-1:-1:-1;;;;;47130:11:0;;47155:21;;47122:83;;;;47155:21;47130:11;47122:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;46279:934:0:o;3368:98::-;3426:7;3453:5;3457:1;3453;:5;:::i;:::-;3446:12;3368:98;-1:-1:-1;;;3368:98:0:o;3767:::-;3825:7;3852:5;3856:1;3852;:5;:::i;45698:571::-;45848:16;;;45862:1;45848:16;;;;;;;;45824:21;;45848:16;;;;;;;;;;-1:-1:-1;45848:16:0;45824:40;;45893:4;45875;45880:1;45875:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45875:23:0;;;-1:-1:-1;;;;;45875:23:0;;;;;45919:9;-1:-1:-1;;;;;45919:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45909:4;45914:1;45909:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;45909:26:0;;;-1:-1:-1;;;;;45909:26:0;;;;;45948:56;45965:4;45980:9;45992:11;45948:8;:56::i;:::-;46043:218;;-1:-1:-1;;;46043:218:0;;-1:-1:-1;;;;;46043:9:0;:60;;;;:218;;46118:11;;46144:1;;46188:4;;46215;;46235:15;;46043:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45753:516;45698:571;:::o;3011:98::-;3069:7;3096:5;3100:1;3096;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:160::-;1280:20;;1336:13;;1329:21;1319:32;;1309:60;;1365:1;1362;1355:12;1309:60;1215:160;;;:::o;1380:689::-;1472:6;1480;1488;1541:2;1529:9;1520:7;1516:23;1512:32;1509:52;;;1557:1;1554;1547:12;1509:52;1597:9;1584:23;1626:18;1667:2;1659:6;1656:14;1653:34;;;1683:1;1680;1673:12;1653:34;1721:6;1710:9;1706:22;1696:32;;1766:7;1759:4;1755:2;1751:13;1747:27;1737:55;;1788:1;1785;1778:12;1737:55;1828:2;1815:16;1854:2;1846:6;1843:14;1840:34;;;1870:1;1867;1860:12;1840:34;1925:7;1918:4;1908:6;1905:1;1901:14;1897:2;1893:23;1889:34;1886:47;1883:67;;;1946:1;1943;1936:12;1883:67;1977:4;1969:13;;;;-1:-1:-1;2001:6:1;-1:-1:-1;2026:37:1;;2042:20;;;-1:-1:-1;2026:37:1;:::i;:::-;2016:47;;1380:689;;;;;:::o;2256:247::-;2315:6;2368:2;2356:9;2347:7;2343:23;2339:32;2336:52;;;2384:1;2381;2374:12;2336:52;2423:9;2410:23;2442:31;2467:5;2442:31;:::i;2862:456::-;2939:6;2947;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3063:9;3050:23;3082:31;3107:5;3082:31;:::i;:::-;3132:5;-1:-1:-1;3189:2:1;3174:18;;3161:32;3202:33;3161:32;3202:33;:::i;:::-;2862:456;;3254:7;;-1:-1:-1;;;3308:2:1;3293:18;;;;3280:32;;2862:456::o;4237:180::-;4296:6;4349:2;4337:9;4328:7;4324:23;4320:32;4317:52;;;4365:1;4362;4355:12;4317:52;-1:-1:-1;4388:23:1;;4237:180;-1:-1:-1;4237:180:1:o;4962:315::-;5027:6;5035;5088:2;5076:9;5067:7;5063:23;5059:32;5056:52;;;5104:1;5101;5094:12;5056:52;5143:9;5130:23;5162:31;5187:5;5162:31;:::i;:::-;5212:5;-1:-1:-1;5236:35:1;5267:2;5252:18;;5236:35;:::i;:::-;5226:45;;4962:315;;;;;:::o;5490:248::-;5558:6;5566;5619:2;5607:9;5598:7;5594:23;5590:32;5587:52;;;5635:1;5632;5625:12;5587:52;-1:-1:-1;;5658:23:1;;;5728:2;5713:18;;;5700:32;;-1:-1:-1;5490: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;7004:161;;6791:380;;;:::o;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;9181:168::-;9254:9;;;9285;;9302:15;;;9296:22;;9282:37;9272:71;;9323:18;;:::i;9354:217::-;9394:1;9420;9410:132;;9464:10;9459:3;9455:20;9452:1;9445:31;9499:4;9496:1;9489:15;9527:4;9524:1;9517:15;9410:132;-1:-1:-1;9556:9:1;;9354:217::o;14003:401::-;14205:2;14187:21;;;14244:2;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;-1:-1:-1;;;14349:2:1;14334:18;;14327:35;14394:3;14379:19;;14003:401::o;14409:399::-;14611:2;14593:21;;;14650:2;14630:18;;;14623:30;14689:34;14684:2;14669:18;;14662:62;-1:-1:-1;;;14755:2:1;14740:18;;14733:33;14798:3;14783:19;;14409:399::o;17266:128::-;17333:9;;;17354:11;;;17351:37;;;17368:18;;:::i;18148:251::-;18218:6;18271:2;18259:9;18250:7;18246:23;18242:32;18239:52;;;18287:1;18284;18277:12;18239:52;18319:9;18313:16;18338:31;18363:5;18338:31;:::i;18404:980::-;18666:4;18714:3;18703:9;18699:19;18745:6;18734:9;18727:25;18771:2;18809:6;18804:2;18793:9;18789:18;18782:34;18852:3;18847:2;18836:9;18832:18;18825:31;18876:6;18911;18905:13;18942:6;18934;18927:22;18980:3;18969:9;18965:19;18958:26;;19019:2;19011:6;19007:15;18993:29;;19040:1;19050:195;19064:6;19061:1;19058:13;19050:195;;;19129:13;;-1:-1:-1;;;;;19125:39:1;19113:52;;19220:15;;;;19185:12;;;;19161:1;19079:9;19050:195;;;-1:-1:-1;;;;;;;19301:32:1;;;;19296:2;19281:18;;19274:60;-1:-1:-1;;;19365:3:1;19350:19;19343:35;19262:3;18404:980;-1:-1:-1;;;18404:980:1:o
Swarm Source
ipfs://6442c3eeab2ce9f8bd17f6b4d9e5f2ad1eca1b8b67999caffb3a6cc6aeca80a9
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.