ERC-20
Overview
Max Total Supply
420,690,000,000,000 HAMS2
Holders
114
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,331,746,717,579.39 HAMS2Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hams2Coin
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-21 */ /** *Submitted for verification at Etherscan.io on 2023-07-06 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /* _ _ (`-`;-"```"-;`-`) \.' './ / \ ; 0 0 ; /| = = |\ ; \ '._Y_.' / ; ; `-._ \|/ _.-' ; ; `"""` ; ; `""-. .-""` ; /; '--._ \ / _.-- ;\ : `. `/|| ||\` .' : '. '-._ _.-' .' 2.0 (((-'` `"""""` `'-))) Twitter: https://twitter.com/Hams2Coin Telegram: t.me/hams2coin LETS TRY THIS AGAIN */ // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: yeyozerookay.sol pragma solidity ^0.8.0; contract Hams2Coin is Ownable, ERC20 { IUniswapV2Router02 public uniswapV2Router; bool public limited; bool taxesEnabled; uint256 public maxHoldingAmount; uint256 public buyTaxPercent = 20; uint256 public sellTaxPercent = 20; uint256 minAmountToSwapTaxes = (totalSupply() * 1) / 1000; bool inSwapAndLiq; bool paused = true; address public marketingWallet; address public uniswapV2Pair; mapping(address => bool) public _isExcludedFromFees; modifier lockTheSwap() { inSwapAndLiq = true; _; inSwapAndLiq = false; } constructor() ERC20("Hams2 Coin", "HAMS2") { _mint(msg.sender, 420690000000000000000000000000000); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _isExcludedFromFees[msg.sender] = true; _isExcludedFromFees[marketingWallet] = true; _isExcludedFromFees[uniswapV2Pair] = true; _isExcludedFromFees[address(this)] = true; marketingWallet = 0x0f10fe9F72e3058B6b990FFf077637a7974aC2B5; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "ERC20: transfer must be greater than 0"); if (paused) { require( from == owner() || from == address(this) || from == 0xD152f549545093347A162Dce210e7293f1452150, "Trading not active yet" ); } if (limited && from == uniswapV2Pair) { require(balanceOf(to) + amount <= maxHoldingAmount, "Forbid"); } uint256 taxAmount; if (taxesEnabled) { //Buy if (from == uniswapV2Pair && buyTaxPercent != 0) { if (!_isExcludedFromFees[to]) { taxAmount = (amount * buyTaxPercent) / 100; } } // Sell if (to == uniswapV2Pair && sellTaxPercent != 0) { if (!_isExcludedFromFees[from]) { taxAmount = (amount * sellTaxPercent) / 100; } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes; if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) { handleTax(); } } // Fees if (taxAmount > 0) { uint256 userAmount = amount - taxAmount; super._transfer(from, address(this), taxAmount); super._transfer(from, to, userAmount); } else { super._transfer(from, to, amount); } } function handleTax() internal lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve( address(this), address(uniswapV2Router), balanceOf(address(this)) ); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balanceOf(address(this)), 0, // accept any amount of ETH path, marketingWallet, block.timestamp ); } function changeMarketingWallet( address _newMarketingWallet ) external onlyOwner { marketingWallet = _newMarketingWallet; } function changeTaxPercent( uint256 _newBuyTaxPercent, uint256 _newSellTaxPercent ) external onlyOwner { buyTaxPercent = _newBuyTaxPercent; sellTaxPercent = _newSellTaxPercent; } function excludeFromFees( address _address, bool _isExcluded ) external onlyOwner { _isExcludedFromFees[_address] = _isExcluded; } function changeMinAmountToSwapTaxes( uint256 newMinAmount ) external onlyOwner { require(newMinAmount > 0, "Cannot set to zero"); minAmountToSwapTaxes = newMinAmount; } function burn(uint256 value) external { _burn(msg.sender, value); } function enableTaxes(bool _enable) external onlyOwner { taxesEnabled = _enable; } function activate() external onlyOwner { paused = !paused; } function toggleLimited() external onlyOwner { limited = !limited; } function setRule( bool _limited, uint256 _maxHoldingAmount ) external onlyOwner { limited = _limited; maxHoldingAmount = _maxHoldingAmount; } function airdrop( address[] memory recipients, uint[] memory values ) external onlyOwner { uint256 total = 0; for (uint256 i; i < recipients.length; i++) total += values[i]; _transfer(msg.sender, address(this), total); for (uint i; i < recipients.length; i++) { _transfer(address(this), recipients[i], values[i]); } } } // Interfaces interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052601460085560146009556103e86001620000236200053e60201b60201c565b6200002f9190620007c5565b6200003b91906200083f565b600a556001600b60016101000a81548160ff0219169083151502179055503480156200006657600080fd5b506040518060400160405280600a81526020017f48616d733220436f696e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f48414d5332000000000000000000000000000000000000000000000000000000815250620000f3620000e76200054860201b60201c565b6200055060201b60201c565b816004908162000104919062000ae7565b50806005908162000116919062000ae7565b50505062000139336d14bddab3e51a57cff87a500000006200061460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c6919062000c38565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000254919062000c38565b6040518363ffffffff1660e01b81526004016200027392919062000c7b565b6020604051808303816000875af115801562000293573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b9919062000c38565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550730f10fe9f72e3058b6b990fff077637a7974ac2b5600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000d94565b6000600354905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000686576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067d9062000d09565b60405180910390fd5b6200069a600083836200078260201b60201c565b8060036000828254620006ae919062000d2b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000762919062000d77565b60405180910390a36200077e600083836200078760201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007d2826200078c565b9150620007df836200078c565b9250828202620007ef816200078c565b9150828204841483151762000809576200080862000796565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200084c826200078c565b915062000859836200078c565b9250826200086c576200086b62000810565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008f957607f821691505b6020821081036200090f576200090e620008b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200093a565b6200098586836200093a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009c8620009c2620009bc846200078c565b6200099d565b6200078c565b9050919050565b6000819050919050565b620009e483620009a7565b620009fc620009f382620009cf565b84845462000947565b825550505050565b600090565b62000a1362000a04565b62000a20818484620009d9565b505050565b5b8181101562000a485762000a3c60008262000a09565b60018101905062000a26565b5050565b601f82111562000a975762000a618162000915565b62000a6c846200092a565b8101602085101562000a7c578190505b62000a9462000a8b856200092a565b83018262000a25565b50505b505050565b600082821c905092915050565b600062000abc6000198460080262000a9c565b1980831691505092915050565b600062000ad7838362000aa9565b9150826002028217905092915050565b62000af28262000877565b67ffffffffffffffff81111562000b0e5762000b0d62000882565b5b62000b1a8254620008e0565b62000b2782828562000a4c565b600060209050601f83116001811462000b5f576000841562000b4a578287015190505b62000b56858262000ac9565b86555062000bc6565b601f19841662000b6f8662000915565b60005b8281101562000b995784890151825560018201915060208501945060208101905062000b72565b8683101562000bb9578489015162000bb5601f89168262000aa9565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b811462000c1e57600080fd5b50565b60008151905062000c328162000c07565b92915050565b60006020828403121562000c515762000c5062000bce565b5b600062000c618482850162000c21565b91505092915050565b62000c758162000bf3565b82525050565b600060408201905062000c92600083018562000c6a565b62000ca1602083018462000c6a565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cf1601f8362000ca8565b915062000cfe8262000cb9565b602082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b600062000d38826200078c565b915062000d45836200078c565b925082820190508082111562000d605762000d5f62000796565b5b92915050565b62000d71816200078c565b82525050565b600060208201905062000d8e600083018462000d66565b92915050565b6130768062000da46000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d21079e611610071578063d21079e61461055f578063dd62ed3e1461057b578063e0bf7fd1146105ab578063f2fde38b146105db576101f0565b8063a457c2d7146104c7578063a9059cbb146104f7578063bb85c6d114610527578063c024666814610543576101f0565b806389f9a1d3116100de57806389f9a1d3146104515780638da5cb5b1461046f57806395d89b411461048d57806397f92e95146104ab576101f0565b8063715018a6146103ed57806375f0a874146103f75780637df405a414610415578063860a32ec14610433576101f0565b8063313ce5671161018757806349bd5a5e1161015657806349bd5a5e1461036557806367243482146103835780636fb1896c1461039f57806370a08231146103bd576101f0565b8063313ce567146102df57806339509351146102fd5780633d5369f61461032d57806342966c6814610349576101f0565b80631694505e116101c35780631694505e1461025757806318160ddd1461027557806323b872dd1461029357806330275744146102c3576101f0565b806303417ed5146101f557806306fdde03146101ff578063095ea7b31461021d5780630f15f4c01461024d575b600080fd5b6101fd6105f7565b005b61020761062b565b6040516102149190611dfd565b60405180910390f35b61023760048036038101906102329190611ec7565b6106bd565b6040516102449190611f22565b60405180910390f35b6102556106e0565b005b61025f610714565b60405161026c9190611f9c565b60405180910390f35b61027d61073a565b60405161028a9190611fc6565b60405180910390f35b6102ad60048036038101906102a89190611fe1565b610744565b6040516102ba9190611f22565b60405180910390f35b6102dd60048036038101906102d89190612060565b610773565b005b6102e7610798565b6040516102f491906120a9565b60405180910390f35b61031760048036038101906103129190611ec7565b6107a1565b6040516103249190611f22565b60405180910390f35b610347600480360381019061034291906120c4565b6107d8565b005b610363600480360381019061035e91906120c4565b61082d565b005b61036d61083a565b60405161037a9190612100565b60405180910390f35b61039d60048036038101906103989190612326565b610860565b005b6103a7610920565b6040516103b49190611fc6565b60405180910390f35b6103d760048036038101906103d2919061239e565b610926565b6040516103e49190611fc6565b60405180910390f35b6103f561096f565b005b6103ff610983565b60405161040c9190612100565b60405180910390f35b61041d6109a9565b60405161042a9190611fc6565b60405180910390f35b61043b6109af565b6040516104489190611f22565b60405180910390f35b6104596109c2565b6040516104669190611fc6565b60405180910390f35b6104776109c8565b6040516104849190612100565b60405180910390f35b6104956109f1565b6040516104a29190611dfd565b60405180910390f35b6104c560048036038101906104c091906123cb565b610a83565b005b6104e160048036038101906104dc9190611ec7565b610a9d565b6040516104ee9190611f22565b60405180910390f35b610511600480360381019061050c9190611ec7565b610b14565b60405161051e9190611f22565b60405180910390f35b610541600480360381019061053c919061239e565b610b37565b005b61055d6004803603810190610558919061240b565b610b83565b005b6105796004803603810190610574919061244b565b610be6565b005b6105956004803603810190610590919061248b565b610c13565b6040516105a29190611fc6565b60405180910390f35b6105c560048036038101906105c0919061239e565b610c9a565b6040516105d29190611f22565b60405180910390f35b6105f560048036038101906105f0919061239e565b610cba565b005b6105ff610d3d565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461063a906124fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610666906124fa565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b6000806106c8610dbb565b90506106d5818585610dc3565b600191505092915050565b6106e8610d3d565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061074f610dbb565b905061075c858285610f8c565b610767858585611018565b60019150509392505050565b61077b610d3d565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b6000806107ac610dbb565b90506107cd8185856107be8589610c13565b6107c8919061255a565b610dc3565b600191505092915050565b6107e0610d3d565b60008111610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906125da565b60405180910390fd5b80600a8190555050565b61083733826115ad565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610868610d3d565b6000805b83518110156108b057828181518110610888576108876125fa565b5b60200260200101518261089b919061255a565b915080806108a890612629565b91505061086c565b506108bc333083611018565b60005b835181101561091a57610907308583815181106108df576108de6125fa565b5b60200260200101518584815181106108fa576108f96125fa565b5b6020026020010151611018565b808061091290612629565b9150506108bf565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610977610d3d565b610981600061177c565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a00906124fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c906124fa565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b610a8b610d3d565b81600881905550806009819055505050565b600080610aa8610dbb565b90506000610ab68286610c13565b905083811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906126e3565b60405180910390fd5b610b088286868403610dc3565b60019250505092915050565b600080610b1f610dbb565b9050610b2c818585611018565b600191505092915050565b610b3f610d3d565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b8b610d3d565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610bee610d3d565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610cc2610d3d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612775565b60405180910390fd5b610d3a8161177c565b50565b610d45610dbb565b73ffffffffffffffffffffffffffffffffffffffff16610d636109c8565b73ffffffffffffffffffffffffffffffffffffffff1614610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127e1565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990612873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890612905565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7f9190611fc6565b60405180910390a3505050565b6000610f988484610c13565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110125781811015611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612971565b60405180910390fd5b6110118484848403610dc3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90612a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612a95565b60405180910390fd5b60008111611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090612b27565b60405180910390fd5b600b60019054906101000a900460ff1615611244576111566109c8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111ba57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611204575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612b93565b60405180910390fd5b5b600660149054906101000a900460ff1680156112ad5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561130b57600754816112bf84610926565b6112c9919061255a565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612bff565b60405180910390fd5b5b6000600660159054906101000a900460ff161561156657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113825750600060085414155b156113f657600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113f5576064600854836113e89190612c1f565b6113f29190612c90565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114565750600060095414155b156114ca57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114c9576064600954836114bc9190612c1f565b6114c69190612c90565b90505b5b60006114d530610926565b90506000600a5482101590508080156114fb5750600b60009054906101000a900460ff16155b80156115555750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561156357611562611840565b5b50505b600081111561159b576000818361157d9190612cc1565b905061158a853084611aea565b611595858583611aea565b506115a7565b6115a6848484611aea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390612d67565b60405180910390fd5b61162882600083611d63565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690612df9565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117639190611fc6565b60405180910390a361177783600084611d68565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561187857611877612120565b5b6040519080825280602002602001820160405280156118a65781602001602082028036833780820191505090505b50905030816000815181106118be576118bd6125fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611965573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119899190612e2e565b8160018151811061199d5761199c6125fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a0c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a0730610926565b610dc3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611a5330610926565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611a9a959493929190612f54565b600060405180830381600087803b158015611ab457600080fd5b505af1158015611ac8573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090612a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90612a95565b60405180910390fd5b611bd3838383611d63565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613020565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4a9190611fc6565b60405180910390a3611d5d848484611d68565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611da7578082015181840152602081019050611d8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dcf82611d6d565b611dd98185611d78565b9350611de9818560208601611d89565b611df281611db3565b840191505092915050565b60006020820190508181036000830152611e178184611dc4565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e5e82611e33565b9050919050565b611e6e81611e53565b8114611e7957600080fd5b50565b600081359050611e8b81611e65565b92915050565b6000819050919050565b611ea481611e91565b8114611eaf57600080fd5b50565b600081359050611ec181611e9b565b92915050565b60008060408385031215611ede57611edd611e29565b5b6000611eec85828601611e7c565b9250506020611efd85828601611eb2565b9150509250929050565b60008115159050919050565b611f1c81611f07565b82525050565b6000602082019050611f376000830184611f13565b92915050565b6000819050919050565b6000611f62611f5d611f5884611e33565b611f3d565b611e33565b9050919050565b6000611f7482611f47565b9050919050565b6000611f8682611f69565b9050919050565b611f9681611f7b565b82525050565b6000602082019050611fb16000830184611f8d565b92915050565b611fc081611e91565b82525050565b6000602082019050611fdb6000830184611fb7565b92915050565b600080600060608486031215611ffa57611ff9611e29565b5b600061200886828701611e7c565b935050602061201986828701611e7c565b925050604061202a86828701611eb2565b9150509250925092565b61203d81611f07565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611e29565b5b60006120848482850161204b565b91505092915050565b600060ff82169050919050565b6120a38161208d565b82525050565b60006020820190506120be600083018461209a565b92915050565b6000602082840312156120da576120d9611e29565b5b60006120e884828501611eb2565b91505092915050565b6120fa81611e53565b82525050565b600060208201905061211560008301846120f1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61215882611db3565b810181811067ffffffffffffffff8211171561217757612176612120565b5b80604052505050565b600061218a611e1f565b9050612196828261214f565b919050565b600067ffffffffffffffff8211156121b6576121b5612120565b5b602082029050602081019050919050565b600080fd5b60006121df6121da8461219b565b612180565b90508083825260208201905060208402830185811115612202576122016121c7565b5b835b8181101561222b57806122178882611e7c565b845260208401935050602081019050612204565b5050509392505050565b600082601f83011261224a5761224961211b565b5b813561225a8482602086016121cc565b91505092915050565b600067ffffffffffffffff82111561227e5761227d612120565b5b602082029050602081019050919050565b60006122a261229d84612263565b612180565b905080838252602082019050602084028301858111156122c5576122c46121c7565b5b835b818110156122ee57806122da8882611eb2565b8452602084019350506020810190506122c7565b5050509392505050565b600082601f83011261230d5761230c61211b565b5b813561231d84826020860161228f565b91505092915050565b6000806040838503121561233d5761233c611e29565b5b600083013567ffffffffffffffff81111561235b5761235a611e2e565b5b61236785828601612235565b925050602083013567ffffffffffffffff81111561238857612387611e2e565b5b612394858286016122f8565b9150509250929050565b6000602082840312156123b4576123b3611e29565b5b60006123c284828501611e7c565b91505092915050565b600080604083850312156123e2576123e1611e29565b5b60006123f085828601611eb2565b925050602061240185828601611eb2565b9150509250929050565b6000806040838503121561242257612421611e29565b5b600061243085828601611e7c565b92505060206124418582860161204b565b9150509250929050565b6000806040838503121561246257612461611e29565b5b60006124708582860161204b565b925050602061248185828601611eb2565b9150509250929050565b600080604083850312156124a2576124a1611e29565b5b60006124b085828601611e7c565b92505060206124c185828601611e7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251257607f821691505b602082108103612525576125246124cb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256582611e91565b915061257083611e91565b92508282019050808211156125885761258761252b565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b60006125c4601283611d78565b91506125cf8261258e565b602082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061263482611e91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126665761266561252b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126cd602583611d78565b91506126d882612671565b604082019050919050565b600060208201905081810360008301526126fc816126c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061275f602683611d78565b915061276a82612703565b604082019050919050565b6000602082019050818103600083015261278e81612752565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127cb602083611d78565b91506127d682612795565b602082019050919050565b600060208201905081810360008301526127fa816127be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061285d602483611d78565b915061286882612801565b604082019050919050565b6000602082019050818103600083015261288c81612850565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ef602283611d78565b91506128fa82612893565b604082019050919050565b6000602082019050818103600083015261291e816128e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061295b601d83611d78565b915061296682612925565b602082019050919050565b6000602082019050818103600083015261298a8161294e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129ed602583611d78565b91506129f882612991565b604082019050919050565b60006020820190508181036000830152612a1c816129e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7f602383611d78565b9150612a8a82612a23565b604082019050919050565b60006020820190508181036000830152612aae81612a72565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612b11602683611d78565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612b7d601683611d78565b9150612b8882612b47565b602082019050919050565b60006020820190508181036000830152612bac81612b70565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612be9600683611d78565b9150612bf482612bb3565b602082019050919050565b60006020820190508181036000830152612c1881612bdc565b9050919050565b6000612c2a82611e91565b9150612c3583611e91565b9250828202612c4381611e91565b91508282048414831517612c5a57612c5961252b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c9b82611e91565b9150612ca683611e91565b925082612cb657612cb5612c61565b5b828204905092915050565b6000612ccc82611e91565b9150612cd783611e91565b9250828203905081811115612cef57612cee61252b565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d51602183611d78565b9150612d5c82612cf5565b604082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612de3602283611d78565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b600081519050612e2881611e65565b92915050565b600060208284031215612e4457612e43611e29565b5b6000612e5284828501612e19565b91505092915050565b6000819050919050565b6000612e80612e7b612e7684612e5b565b611f3d565b611e91565b9050919050565b612e9081612e65565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ecb81611e53565b82525050565b6000612edd8383612ec2565b60208301905092915050565b6000602082019050919050565b6000612f0182612e96565b612f0b8185612ea1565b9350612f1683612eb2565b8060005b83811015612f47578151612f2e8882612ed1565b9750612f3983612ee9565b925050600181019050612f1a565b5085935050505092915050565b600060a082019050612f696000830188611fb7565b612f766020830187612e87565b8181036040830152612f888186612ef6565b9050612f9760608301856120f1565b612fa46080830184611fb7565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061300a602683611d78565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b905091905056fea264697066735822122046e2152bc605651315011f59684ba6af1b2e95928ba617164a7b7c4519bf659964736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d21079e611610071578063d21079e61461055f578063dd62ed3e1461057b578063e0bf7fd1146105ab578063f2fde38b146105db576101f0565b8063a457c2d7146104c7578063a9059cbb146104f7578063bb85c6d114610527578063c024666814610543576101f0565b806389f9a1d3116100de57806389f9a1d3146104515780638da5cb5b1461046f57806395d89b411461048d57806397f92e95146104ab576101f0565b8063715018a6146103ed57806375f0a874146103f75780637df405a414610415578063860a32ec14610433576101f0565b8063313ce5671161018757806349bd5a5e1161015657806349bd5a5e1461036557806367243482146103835780636fb1896c1461039f57806370a08231146103bd576101f0565b8063313ce567146102df57806339509351146102fd5780633d5369f61461032d57806342966c6814610349576101f0565b80631694505e116101c35780631694505e1461025757806318160ddd1461027557806323b872dd1461029357806330275744146102c3576101f0565b806303417ed5146101f557806306fdde03146101ff578063095ea7b31461021d5780630f15f4c01461024d575b600080fd5b6101fd6105f7565b005b61020761062b565b6040516102149190611dfd565b60405180910390f35b61023760048036038101906102329190611ec7565b6106bd565b6040516102449190611f22565b60405180910390f35b6102556106e0565b005b61025f610714565b60405161026c9190611f9c565b60405180910390f35b61027d61073a565b60405161028a9190611fc6565b60405180910390f35b6102ad60048036038101906102a89190611fe1565b610744565b6040516102ba9190611f22565b60405180910390f35b6102dd60048036038101906102d89190612060565b610773565b005b6102e7610798565b6040516102f491906120a9565b60405180910390f35b61031760048036038101906103129190611ec7565b6107a1565b6040516103249190611f22565b60405180910390f35b610347600480360381019061034291906120c4565b6107d8565b005b610363600480360381019061035e91906120c4565b61082d565b005b61036d61083a565b60405161037a9190612100565b60405180910390f35b61039d60048036038101906103989190612326565b610860565b005b6103a7610920565b6040516103b49190611fc6565b60405180910390f35b6103d760048036038101906103d2919061239e565b610926565b6040516103e49190611fc6565b60405180910390f35b6103f561096f565b005b6103ff610983565b60405161040c9190612100565b60405180910390f35b61041d6109a9565b60405161042a9190611fc6565b60405180910390f35b61043b6109af565b6040516104489190611f22565b60405180910390f35b6104596109c2565b6040516104669190611fc6565b60405180910390f35b6104776109c8565b6040516104849190612100565b60405180910390f35b6104956109f1565b6040516104a29190611dfd565b60405180910390f35b6104c560048036038101906104c091906123cb565b610a83565b005b6104e160048036038101906104dc9190611ec7565b610a9d565b6040516104ee9190611f22565b60405180910390f35b610511600480360381019061050c9190611ec7565b610b14565b60405161051e9190611f22565b60405180910390f35b610541600480360381019061053c919061239e565b610b37565b005b61055d6004803603810190610558919061240b565b610b83565b005b6105796004803603810190610574919061244b565b610be6565b005b6105956004803603810190610590919061248b565b610c13565b6040516105a29190611fc6565b60405180910390f35b6105c560048036038101906105c0919061239e565b610c9a565b6040516105d29190611f22565b60405180910390f35b6105f560048036038101906105f0919061239e565b610cba565b005b6105ff610d3d565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461063a906124fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610666906124fa565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b6000806106c8610dbb565b90506106d5818585610dc3565b600191505092915050565b6106e8610d3d565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061074f610dbb565b905061075c858285610f8c565b610767858585611018565b60019150509392505050565b61077b610d3d565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b6000806107ac610dbb565b90506107cd8185856107be8589610c13565b6107c8919061255a565b610dc3565b600191505092915050565b6107e0610d3d565b60008111610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906125da565b60405180910390fd5b80600a8190555050565b61083733826115ad565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610868610d3d565b6000805b83518110156108b057828181518110610888576108876125fa565b5b60200260200101518261089b919061255a565b915080806108a890612629565b91505061086c565b506108bc333083611018565b60005b835181101561091a57610907308583815181106108df576108de6125fa565b5b60200260200101518584815181106108fa576108f96125fa565b5b6020026020010151611018565b808061091290612629565b9150506108bf565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610977610d3d565b610981600061177c565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a00906124fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c906124fa565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b610a8b610d3d565b81600881905550806009819055505050565b600080610aa8610dbb565b90506000610ab68286610c13565b905083811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906126e3565b60405180910390fd5b610b088286868403610dc3565b60019250505092915050565b600080610b1f610dbb565b9050610b2c818585611018565b600191505092915050565b610b3f610d3d565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b8b610d3d565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610bee610d3d565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610cc2610d3d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612775565b60405180910390fd5b610d3a8161177c565b50565b610d45610dbb565b73ffffffffffffffffffffffffffffffffffffffff16610d636109c8565b73ffffffffffffffffffffffffffffffffffffffff1614610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127e1565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990612873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890612905565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7f9190611fc6565b60405180910390a3505050565b6000610f988484610c13565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110125781811015611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612971565b60405180910390fd5b6110118484848403610dc3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90612a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612a95565b60405180910390fd5b60008111611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090612b27565b60405180910390fd5b600b60019054906101000a900460ff1615611244576111566109c8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111ba57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611204575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612b93565b60405180910390fd5b5b600660149054906101000a900460ff1680156112ad5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561130b57600754816112bf84610926565b6112c9919061255a565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612bff565b60405180910390fd5b5b6000600660159054906101000a900460ff161561156657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113825750600060085414155b156113f657600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113f5576064600854836113e89190612c1f565b6113f29190612c90565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114565750600060095414155b156114ca57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114c9576064600954836114bc9190612c1f565b6114c69190612c90565b90505b5b60006114d530610926565b90506000600a5482101590508080156114fb5750600b60009054906101000a900460ff16155b80156115555750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561156357611562611840565b5b50505b600081111561159b576000818361157d9190612cc1565b905061158a853084611aea565b611595858583611aea565b506115a7565b6115a6848484611aea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390612d67565b60405180910390fd5b61162882600083611d63565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690612df9565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117639190611fc6565b60405180910390a361177783600084611d68565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561187857611877612120565b5b6040519080825280602002602001820160405280156118a65781602001602082028036833780820191505090505b50905030816000815181106118be576118bd6125fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611965573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119899190612e2e565b8160018151811061199d5761199c6125fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a0c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a0730610926565b610dc3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611a5330610926565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611a9a959493929190612f54565b600060405180830381600087803b158015611ab457600080fd5b505af1158015611ac8573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090612a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90612a95565b60405180910390fd5b611bd3838383611d63565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613020565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4a9190611fc6565b60405180910390a3611d5d848484611d68565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611da7578082015181840152602081019050611d8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dcf82611d6d565b611dd98185611d78565b9350611de9818560208601611d89565b611df281611db3565b840191505092915050565b60006020820190508181036000830152611e178184611dc4565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e5e82611e33565b9050919050565b611e6e81611e53565b8114611e7957600080fd5b50565b600081359050611e8b81611e65565b92915050565b6000819050919050565b611ea481611e91565b8114611eaf57600080fd5b50565b600081359050611ec181611e9b565b92915050565b60008060408385031215611ede57611edd611e29565b5b6000611eec85828601611e7c565b9250506020611efd85828601611eb2565b9150509250929050565b60008115159050919050565b611f1c81611f07565b82525050565b6000602082019050611f376000830184611f13565b92915050565b6000819050919050565b6000611f62611f5d611f5884611e33565b611f3d565b611e33565b9050919050565b6000611f7482611f47565b9050919050565b6000611f8682611f69565b9050919050565b611f9681611f7b565b82525050565b6000602082019050611fb16000830184611f8d565b92915050565b611fc081611e91565b82525050565b6000602082019050611fdb6000830184611fb7565b92915050565b600080600060608486031215611ffa57611ff9611e29565b5b600061200886828701611e7c565b935050602061201986828701611e7c565b925050604061202a86828701611eb2565b9150509250925092565b61203d81611f07565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611e29565b5b60006120848482850161204b565b91505092915050565b600060ff82169050919050565b6120a38161208d565b82525050565b60006020820190506120be600083018461209a565b92915050565b6000602082840312156120da576120d9611e29565b5b60006120e884828501611eb2565b91505092915050565b6120fa81611e53565b82525050565b600060208201905061211560008301846120f1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61215882611db3565b810181811067ffffffffffffffff8211171561217757612176612120565b5b80604052505050565b600061218a611e1f565b9050612196828261214f565b919050565b600067ffffffffffffffff8211156121b6576121b5612120565b5b602082029050602081019050919050565b600080fd5b60006121df6121da8461219b565b612180565b90508083825260208201905060208402830185811115612202576122016121c7565b5b835b8181101561222b57806122178882611e7c565b845260208401935050602081019050612204565b5050509392505050565b600082601f83011261224a5761224961211b565b5b813561225a8482602086016121cc565b91505092915050565b600067ffffffffffffffff82111561227e5761227d612120565b5b602082029050602081019050919050565b60006122a261229d84612263565b612180565b905080838252602082019050602084028301858111156122c5576122c46121c7565b5b835b818110156122ee57806122da8882611eb2565b8452602084019350506020810190506122c7565b5050509392505050565b600082601f83011261230d5761230c61211b565b5b813561231d84826020860161228f565b91505092915050565b6000806040838503121561233d5761233c611e29565b5b600083013567ffffffffffffffff81111561235b5761235a611e2e565b5b61236785828601612235565b925050602083013567ffffffffffffffff81111561238857612387611e2e565b5b612394858286016122f8565b9150509250929050565b6000602082840312156123b4576123b3611e29565b5b60006123c284828501611e7c565b91505092915050565b600080604083850312156123e2576123e1611e29565b5b60006123f085828601611eb2565b925050602061240185828601611eb2565b9150509250929050565b6000806040838503121561242257612421611e29565b5b600061243085828601611e7c565b92505060206124418582860161204b565b9150509250929050565b6000806040838503121561246257612461611e29565b5b60006124708582860161204b565b925050602061248185828601611eb2565b9150509250929050565b600080604083850312156124a2576124a1611e29565b5b60006124b085828601611e7c565b92505060206124c185828601611e7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251257607f821691505b602082108103612525576125246124cb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256582611e91565b915061257083611e91565b92508282019050808211156125885761258761252b565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b60006125c4601283611d78565b91506125cf8261258e565b602082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061263482611e91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126665761266561252b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126cd602583611d78565b91506126d882612671565b604082019050919050565b600060208201905081810360008301526126fc816126c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061275f602683611d78565b915061276a82612703565b604082019050919050565b6000602082019050818103600083015261278e81612752565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127cb602083611d78565b91506127d682612795565b602082019050919050565b600060208201905081810360008301526127fa816127be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061285d602483611d78565b915061286882612801565b604082019050919050565b6000602082019050818103600083015261288c81612850565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ef602283611d78565b91506128fa82612893565b604082019050919050565b6000602082019050818103600083015261291e816128e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061295b601d83611d78565b915061296682612925565b602082019050919050565b6000602082019050818103600083015261298a8161294e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129ed602583611d78565b91506129f882612991565b604082019050919050565b60006020820190508181036000830152612a1c816129e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7f602383611d78565b9150612a8a82612a23565b604082019050919050565b60006020820190508181036000830152612aae81612a72565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612b11602683611d78565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612b7d601683611d78565b9150612b8882612b47565b602082019050919050565b60006020820190508181036000830152612bac81612b70565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612be9600683611d78565b9150612bf482612bb3565b602082019050919050565b60006020820190508181036000830152612c1881612bdc565b9050919050565b6000612c2a82611e91565b9150612c3583611e91565b9250828202612c4381611e91565b91508282048414831517612c5a57612c5961252b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c9b82611e91565b9150612ca683611e91565b925082612cb657612cb5612c61565b5b828204905092915050565b6000612ccc82611e91565b9150612cd783611e91565b9250828203905081811115612cef57612cee61252b565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d51602183611d78565b9150612d5c82612cf5565b604082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612de3602283611d78565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b600081519050612e2881611e65565b92915050565b600060208284031215612e4457612e43611e29565b5b6000612e5284828501612e19565b91505092915050565b6000819050919050565b6000612e80612e7b612e7684612e5b565b611f3d565b611e91565b9050919050565b612e9081612e65565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ecb81611e53565b82525050565b6000612edd8383612ec2565b60208301905092915050565b6000602082019050919050565b6000612f0182612e96565b612f0b8185612ea1565b9350612f1683612eb2565b8060005b83811015612f47578151612f2e8882612ed1565b9750612f3983612ee9565b925050600181019050612f1a565b5085935050505092915050565b600060a082019050612f696000830188611fb7565b612f766020830187612e87565b8181036040830152612f888186612ef6565b9050612f9760608301856120f1565b612fa46080830184611fb7565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061300a602683611d78565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b905091905056fea264697066735822122046e2152bc605651315011f59684ba6af1b2e95928ba617164a7b7c4519bf659964736f6c63430008120033
Deployed Bytecode Sourcemap
22111:5683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27102:81;;;:::i;:::-;;7193:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27019:74;;;:::i;:::-;;22155:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8322:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10334:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26915:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8164:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11004:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26611:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26825:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22528:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27388:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22331:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8493:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21226:103;;;:::i;:::-;;22491:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22291:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22203:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22253:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20585:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7412:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26203:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11745:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8826:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26043:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26435:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27192:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9082:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22563:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21484:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27102:81;20471:13;:11;:13::i;:::-;27168:7:::1;;;;;;;;;;;27167:8;27157:7;;:18;;;;;;;;;;;;;;;;;;27102:81::o:0;7193:100::-;7247:13;7280:5;7273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7193:100;:::o;9553:201::-;9636:4;9653:13;9669:12;:10;:12::i;:::-;9653:28;;9692:32;9701:5;9708:7;9717:6;9692:8;:32::i;:::-;9742:4;9735:11;;;9553:201;;;;:::o;27019:74::-;20471:13;:11;:13::i;:::-;27079:6:::1;;;;;;;;;;;27078:7;27069:6;;:16;;;;;;;;;;;;;;;;;;27019:74::o:0;22155:41::-;;;;;;;;;;;;;:::o;8322:108::-;8383:7;8410:12;;8403:19;;8322:108;:::o;10334:261::-;10431:4;10448:15;10466:12;:10;:12::i;:::-;10448:30;;10489:38;10505:4;10511:7;10520:6;10489:15;:38::i;:::-;10538:27;10548:4;10554:2;10558:6;10538:9;:27::i;:::-;10583:4;10576:11;;;10334:261;;;;;:::o;26915:95::-;20471:13;:11;:13::i;:::-;26995:7:::1;26980:12;;:22;;;;;;;;;;;;;;;;;;26915:95:::0;:::o;8164:93::-;8222:5;8247:2;8240:9;;8164:93;:::o;11004:238::-;11092:4;11109:13;11125:12;:10;:12::i;:::-;11109:28;;11148:64;11157:5;11164:7;11201:10;11173:25;11183:5;11190:7;11173:9;:25::i;:::-;:38;;;;:::i;:::-;11148:8;:64::i;:::-;11230:4;11223:11;;;11004:238;;;;:::o;26611:205::-;20471:13;:11;:13::i;:::-;26738:1:::1;26723:12;:16;26715:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;26796:12;26773:20;:35;;;;26611:205:::0;:::o;26825:81::-;26874:24;26880:10;26892:5;26874;:24::i;:::-;26825:81;:::o;22528:28::-;;;;;;;;;;;;;:::o;27388:403::-;20471:13;:11;:13::i;:::-;27511::::1;27544:9:::0;27539:62:::1;27559:10;:17;27555:1;:21;27539:62;;;27592:6;27599:1;27592:9;;;;;;;;:::i;:::-;;;;;;;;27583:18;;;;;:::i;:::-;;;27578:3;;;;;:::i;:::-;;;;27539:62;;;;27612:43;27622:10;27642:4;27649:5;27612:9;:43::i;:::-;27671:6;27666:118;27683:10;:17;27679:1;:21;27666:118;;;27722:50;27740:4;27747:10;27758:1;27747:13;;;;;;;;:::i;:::-;;;;;;;;27762:6;27769:1;27762:9;;;;;;;;:::i;:::-;;;;;;;;27722;:50::i;:::-;27702:3;;;;;:::i;:::-;;;;27666:118;;;;27500:291;27388:403:::0;;:::o;22331:34::-;;;;:::o;8493:127::-;8567:7;8594:9;:18;8604:7;8594:18;;;;;;;;;;;;;;;;8587:25;;8493:127;;;:::o;21226:103::-;20471:13;:11;:13::i;:::-;21291:30:::1;21318:1;21291:18;:30::i;:::-;21226:103::o:0;22491:30::-;;;;;;;;;;;;;:::o;22291:33::-;;;;:::o;22203:19::-;;;;;;;;;;;;;:::o;22253:31::-;;;;:::o;20585:87::-;20631:7;20658:6;;;;;;;;;;;20651:13;;20585:87;:::o;7412:104::-;7468:13;7501:7;7494:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7412:104;:::o;26203:223::-;20471:13;:11;:13::i;:::-;26355:17:::1;26339:13;:33;;;;26400:18;26383:14;:35;;;;26203:223:::0;;:::o;11745:436::-;11838:4;11855:13;11871:12;:10;:12::i;:::-;11855:28;;11894:24;11921:25;11931:5;11938:7;11921:9;:25::i;:::-;11894:52;;11985:15;11965:16;:35;;11957:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12078:60;12087:5;12094:7;12122:15;12103:16;:34;12078:8;:60::i;:::-;12169:4;12162:11;;;;11745:436;;;;:::o;8826:193::-;8905:4;8922:13;8938:12;:10;:12::i;:::-;8922:28;;8961;8971:5;8978:2;8982:6;8961:9;:28::i;:::-;9007:4;9000:11;;;8826:193;;;;:::o;26043:151::-;20471:13;:11;:13::i;:::-;26167:19:::1;26149:15;;:37;;;;;;;;;;;;;;;;;;26043:151:::0;:::o;26435:167::-;20471:13;:11;:13::i;:::-;26583:11:::1;26551:19;:29;26571:8;26551:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26435:167:::0;;:::o;27192:187::-;20471:13;:11;:13::i;:::-;27316:8:::1;27306:7;;:18;;;;;;;;;;;;;;;;;;27354:17;27335:16;:36;;;;27192:187:::0;;:::o;9082:151::-;9171:7;9198:11;:18;9210:5;9198:18;;;;;;;;;;;;;;;:27;9217:7;9198:27;;;;;;;;;;;;;;;;9191:34;;9082:151;;;;:::o;22563:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21484:201::-;20471:13;:11;:13::i;:::-;21593:1:::1;21573:22;;:8;:22;;::::0;21565:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21649:28;21668:8;21649:18;:28::i;:::-;21484:201:::0;:::o;20750:132::-;20825:12;:10;:12::i;:::-;20814:23;;:7;:5;:7::i;:::-;:23;;;20806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20750:132::o;4831:98::-;4884:7;4911:10;4904:17;;4831:98;:::o;15738:346::-;15857:1;15840:19;;:5;:19;;;15832:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15938:1;15919:21;;:7;:21;;;15911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16022:6;15992:11;:18;16004:5;15992:18;;;;;;;;;;;;;;;:27;16011:7;15992:27;;;;;;;;;;;;;;;:36;;;;16060:7;16044:32;;16053:5;16044:32;;;16069:6;16044:32;;;;;;:::i;:::-;;;;;;;;15738:346;;;:::o;16375:419::-;16476:24;16503:25;16513:5;16520:7;16503:9;:25::i;:::-;16476:52;;16563:17;16543:16;:37;16539:248;;16625:6;16605:16;:26;;16597:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16709:51;16718:5;16725:7;16753:6;16734:16;:25;16709:8;:51::i;:::-;16539:248;16465:329;16375:419;;;:::o;23514:1855::-;23662:1;23646:18;;:4;:18;;;23638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23739:1;23725:16;;:2;:16;;;23717:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23809:1;23800:6;:10;23792:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23871:6;;;;;;;;;;;23867:217;;;23928:7;:5;:7::i;:::-;23920:15;;:4;:15;;;:40;;;;23955:4;23939:21;;:4;:21;;;23920:40;:94;;;;23972:42;23964:50;;:4;:50;;;23920:94;23894:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;23867:217;24102:7;;;;;;;;;;;:32;;;;;24121:13;;;;;;;;;;;24113:21;;:4;:21;;;24102:32;24098:126;;;24185:16;;24175:6;24159:13;24169:2;24159:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;24151:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24098:126;24237:17;24269:12;;;;;;;;;;;24265:802;;;24329:13;;;;;;;;;;;24321:21;;:4;:21;;;:43;;;;;24363:1;24346:13;;:18;;24321:43;24317:198;;;24390:19;:23;24410:2;24390:23;;;;;;;;;;;;;;;;;;;;;;;;;24385:115;;24477:3;24460:13;;24451:6;:22;;;;:::i;:::-;24450:30;;;;:::i;:::-;24438:42;;24385:115;24317:198;24560:13;;;;;;;;;;;24554:19;;:2;:19;;;:42;;;;;24595:1;24577:14;;:19;;24554:42;24550:200;;;24622:19;:25;24642:4;24622:25;;;;;;;;;;;;;;;;;;;;;;;;;24617:118;;24712:3;24694:14;;24685:6;:23;;;;:::i;:::-;24684:31;;;;:::i;:::-;24672:43;;24617:118;24550:200;24767:28;24798:24;24816:4;24798:9;:24::i;:::-;24767:55;;24837:24;24905:20;;24864;:61;;24837:88;;24947:19;:36;;;;;24971:12;;;;;;;;;;;24970:13;24947:36;:61;;;;;24995:13;;;;;;;;;;;24987:21;;:4;:21;;;;24947:61;24943:113;;;25029:11;:9;:11::i;:::-;24943:113;24283:784;;24265:802;25113:1;25101:9;:13;25097:265;;;25131:18;25161:9;25152:6;:18;;;;:::i;:::-;25131:39;;25185:47;25201:4;25215;25222:9;25185:15;:47::i;:::-;25247:37;25263:4;25269:2;25273:10;25247:15;:37::i;:::-;25116:180;25097:265;;;25317:33;25333:4;25339:2;25343:6;25317:15;:33::i;:::-;25097:265;23627:1742;23514:1855;;;:::o;14625:675::-;14728:1;14709:21;;:7;:21;;;14701:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14781:49;14802:7;14819:1;14823:6;14781:20;:49::i;:::-;14843:22;14868:9;:18;14878:7;14868:18;;;;;;;;;;;;;;;;14843:43;;14923:6;14905:14;:24;;14897:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15042:6;15025:14;:23;15004:9;:18;15014:7;15004:18;;;;;;;;;;;;;;;:44;;;;15159:6;15143:12;;:22;;;;;;;;;;;15220:1;15194:37;;15203:7;15194:37;;;15224:6;15194:37;;;;;;:::i;:::-;;;;;;;;15244:48;15264:7;15281:1;15285:6;15244:19;:48::i;:::-;14690:610;14625:675;;:::o;21845:191::-;21919:16;21938:6;;;;;;;;;;;21919:25;;21964:8;21955:6;;:17;;;;;;;;;;;;;;;;;;22019:8;21988:40;;22009:8;21988:40;;;;;;;;;;;;21908:128;21845:191;:::o;25378:656::-;22673:4;22658:12;;:19;;;;;;;;;;;;;;;;;;25491:21:::1;25529:1;25515:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25491:40;;25560:4;25542;25547:1;25542:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;25586:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25576:4;25581:1;25576:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;25622:125;25653:4;25681:15;;;;;;;;;;;25712:24;25730:4;25712:9;:24::i;:::-;25622:8;:125::i;:::-;25787:15;;;;;;;;;;;:66;;;25868:24;25886:4;25868:9;:24::i;:::-;25907:1;25951:4;25970:15;;;;;;;;;;;26000;25787:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25420:614;22715:5:::0;22700:12;;:20;;;;;;;;;;;;;;;;;;25378:656::o;12651:806::-;12764:1;12748:18;;:4;:18;;;12740:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12841:1;12827:16;;:2;:16;;;12819:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12896:38;12917:4;12923:2;12927:6;12896:20;:38::i;:::-;12947:19;12969:9;:15;12979:4;12969:15;;;;;;;;;;;;;;;;12947:37;;13018:6;13003:11;:21;;12995:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13135:6;13121:11;:20;13103:9;:15;13113:4;13103:15;;;;;;;;;;;;;;;:38;;;;13338:6;13321:9;:13;13331:2;13321:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13388:2;13373:26;;13382:4;13373:26;;;13392:6;13373:26;;;;;;:::i;:::-;;;;;;;;13412:37;13432:4;13438:2;13442:6;13412:19;:37::i;:::-;12729:728;12651:806;;;:::o;17394:91::-;;;;:::o;18089:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:116::-;5471:21;5486:5;5471:21;:::i;:::-;5464:5;5461:32;5451:60;;5507:1;5504;5497:12;5451:60;5401:116;:::o;5523:133::-;5566:5;5604:6;5591:20;5582:29;;5620:30;5644:5;5620:30;:::i;:::-;5523:133;;;;:::o;5662:323::-;5718:6;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:50;5960:7;5951:6;5940:9;5936:22;5918:50;:::i;:::-;5908:60;;5864:114;5662:323;;;;:::o;5991:86::-;6026:7;6066:4;6059:5;6055:16;6044:27;;5991:86;;;:::o;6083:112::-;6166:22;6182:5;6166:22;:::i;:::-;6161:3;6154:35;6083:112;;:::o;6201:214::-;6290:4;6328:2;6317:9;6313:18;6305:26;;6341:67;6405:1;6394:9;6390:17;6381:6;6341:67;:::i;:::-;6201:214;;;;:::o;6421:329::-;6480:6;6529:2;6517:9;6508:7;6504:23;6500:32;6497:119;;;6535:79;;:::i;:::-;6497:119;6655:1;6680:53;6725:7;6716:6;6705:9;6701:22;6680:53;:::i;:::-;6670:63;;6626:117;6421:329;;;;:::o;6756:118::-;6843:24;6861:5;6843:24;:::i;:::-;6838:3;6831:37;6756:118;;:::o;6880:222::-;6973:4;7011:2;7000:9;6996:18;6988:26;;7024:71;7092:1;7081:9;7077:17;7068:6;7024:71;:::i;:::-;6880:222;;;;:::o;7108:117::-;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:311::-;7916:4;8006:18;7998:6;7995:30;7992:56;;;8028:18;;:::i;:::-;7992:56;8078:4;8070:6;8066:17;8058:25;;8138:4;8132;8128:15;8120:23;;7839:311;;;:::o;8156:117::-;8265:1;8262;8255:12;8296:710;8392:5;8417:81;8433:64;8490:6;8433:64;:::i;:::-;8417:81;:::i;:::-;8408:90;;8518:5;8547:6;8540:5;8533:21;8581:4;8574:5;8570:16;8563:23;;8634:4;8626:6;8622:17;8614:6;8610:30;8663:3;8655:6;8652:15;8649:122;;;8682:79;;:::i;:::-;8649:122;8797:6;8780:220;8814:6;8809:3;8806:15;8780:220;;;8889:3;8918:37;8951:3;8939:10;8918:37;:::i;:::-;8913:3;8906:50;8985:4;8980:3;8976:14;8969:21;;8856:144;8840:4;8835:3;8831:14;8824:21;;8780:220;;;8784:21;8398:608;;8296:710;;;;;:::o;9029:370::-;9100:5;9149:3;9142:4;9134:6;9130:17;9126:27;9116:122;;9157:79;;:::i;:::-;9116:122;9274:6;9261:20;9299:94;9389:3;9381:6;9374:4;9366:6;9362:17;9299:94;:::i;:::-;9290:103;;9106:293;9029:370;;;;:::o;9405:311::-;9482:4;9572:18;9564:6;9561:30;9558:56;;;9594:18;;:::i;:::-;9558:56;9644:4;9636:6;9632:17;9624:25;;9704:4;9698;9694:15;9686:23;;9405:311;;;:::o;9739:710::-;9835:5;9860:81;9876:64;9933:6;9876:64;:::i;:::-;9860:81;:::i;:::-;9851:90;;9961:5;9990:6;9983:5;9976:21;10024:4;10017:5;10013:16;10006:23;;10077:4;10069:6;10065:17;10057:6;10053:30;10106:3;10098:6;10095:15;10092:122;;;10125:79;;:::i;:::-;10092:122;10240:6;10223:220;10257:6;10252:3;10249:15;10223:220;;;10332:3;10361:37;10394:3;10382:10;10361:37;:::i;:::-;10356:3;10349:50;10428:4;10423:3;10419:14;10412:21;;10299:144;10283:4;10278:3;10274:14;10267:21;;10223:220;;;10227:21;9841:608;;9739:710;;;;;:::o;10472:370::-;10543:5;10592:3;10585:4;10577:6;10573:17;10569:27;10559:122;;10600:79;;:::i;:::-;10559:122;10717:6;10704:20;10742:94;10832:3;10824:6;10817:4;10809:6;10805:17;10742:94;:::i;:::-;10733:103;;10549:293;10472:370;;;;:::o;10848:894::-;10966:6;10974;11023:2;11011:9;11002:7;10998:23;10994:32;10991:119;;;11029:79;;:::i;:::-;10991:119;11177:1;11166:9;11162:17;11149:31;11207:18;11199:6;11196:30;11193:117;;;11229:79;;:::i;:::-;11193:117;11334:78;11404:7;11395:6;11384:9;11380:22;11334:78;:::i;:::-;11324:88;;11120:302;11489:2;11478:9;11474:18;11461:32;11520:18;11512:6;11509:30;11506:117;;;11542:79;;:::i;:::-;11506:117;11647:78;11717:7;11708:6;11697:9;11693:22;11647:78;:::i;:::-;11637:88;;11432:303;10848:894;;;;;:::o;11748:329::-;11807:6;11856:2;11844:9;11835:7;11831:23;11827:32;11824:119;;;11862:79;;:::i;:::-;11824:119;11982:1;12007:53;12052:7;12043:6;12032:9;12028:22;12007:53;:::i;:::-;11997:63;;11953:117;11748:329;;;;:::o;12083:474::-;12151:6;12159;12208:2;12196:9;12187:7;12183:23;12179:32;12176:119;;;12214:79;;:::i;:::-;12176:119;12334:1;12359:53;12404:7;12395:6;12384:9;12380:22;12359:53;:::i;:::-;12349:63;;12305:117;12461:2;12487:53;12532:7;12523:6;12512:9;12508:22;12487:53;:::i;:::-;12477:63;;12432:118;12083:474;;;;;:::o;12563:468::-;12628:6;12636;12685:2;12673:9;12664:7;12660:23;12656:32;12653:119;;;12691:79;;:::i;:::-;12653:119;12811:1;12836:53;12881:7;12872:6;12861:9;12857:22;12836:53;:::i;:::-;12826:63;;12782:117;12938:2;12964:50;13006:7;12997:6;12986:9;12982:22;12964:50;:::i;:::-;12954:60;;12909:115;12563:468;;;;;:::o;13037:::-;13102:6;13110;13159:2;13147:9;13138:7;13134:23;13130:32;13127:119;;;13165:79;;:::i;:::-;13127:119;13285:1;13310:50;13352:7;13343:6;13332:9;13328:22;13310:50;:::i;:::-;13300:60;;13256:114;13409:2;13435:53;13480:7;13471:6;13460:9;13456:22;13435:53;:::i;:::-;13425:63;;13380:118;13037:468;;;;;:::o;13511:474::-;13579:6;13587;13636:2;13624:9;13615:7;13611:23;13607:32;13604:119;;;13642:79;;:::i;:::-;13604:119;13762:1;13787:53;13832:7;13823:6;13812:9;13808:22;13787:53;:::i;:::-;13777:63;;13733:117;13889:2;13915:53;13960:7;13951:6;13940:9;13936:22;13915:53;:::i;:::-;13905:63;;13860:118;13511:474;;;;;:::o;13991:180::-;14039:77;14036:1;14029:88;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15;14177:320;14221:6;14258:1;14252:4;14248:12;14238:22;;14305:1;14299:4;14295:12;14326:18;14316:81;;14382:4;14374:6;14370:17;14360:27;;14316:81;14444:2;14436:6;14433:14;14413:18;14410:38;14407:84;;14463:18;;:::i;:::-;14407:84;14228:269;14177:320;;;:::o;14503:180::-;14551:77;14548:1;14541:88;14648:4;14645:1;14638:15;14672:4;14669:1;14662:15;14689:191;14729:3;14748:20;14766:1;14748:20;:::i;:::-;14743:25;;14782:20;14800:1;14782:20;:::i;:::-;14777:25;;14825:1;14822;14818:9;14811:16;;14846:3;14843:1;14840:10;14837:36;;;14853:18;;:::i;:::-;14837:36;14689:191;;;;:::o;14886:168::-;15026:20;15022:1;15014:6;15010:14;15003:44;14886:168;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:233;16082:3;16105:24;16123:5;16105:24;:::i;:::-;16096:33;;16151:66;16144:5;16141:77;16138:103;;16221:18;;:::i;:::-;16138:103;16268:1;16261:5;16257:13;16250:20;;16043:233;;;:::o;16282:224::-;16422:34;16418:1;16410:6;16406:14;16399:58;16491:7;16486:2;16478:6;16474:15;16467:32;16282:224;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:225::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:8;17513:2;17505:6;17501:15;17494:33;17309:225;:::o;17540:366::-;17682:3;17703:67;17767:2;17762:3;17703:67;:::i;:::-;17696:74;;17779:93;17868:3;17779:93;:::i;:::-;17897:2;17892:3;17888:12;17881:19;;17540:366;;;:::o;17912:419::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:131;18319:4;18193:131;:::i;:::-;18185:139;;17912:419;;;:::o;18337:182::-;18477:34;18473:1;18465:6;18461:14;18454:58;18337:182;:::o;18525:366::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:419::-;19063:4;19101:2;19090:9;19086:18;19078:26;;19150:9;19144:4;19140:20;19136:1;19125:9;19121:17;19114:47;19178:131;19304:4;19178:131;:::i;:::-;19170:139;;18897:419;;;:::o;19322:223::-;19462:34;19458:1;19450:6;19446:14;19439:58;19531:6;19526:2;19518:6;19514:15;19507:31;19322:223;:::o;19551:366::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:419::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:221::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:4;20552:2;20544:6;20540:15;20533:29;20348:221;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:179::-;21512:31;21508:1;21500:6;21496:14;21489:55;21372:179;:::o;21557:366::-;21699:3;21720:67;21784:2;21779:3;21720:67;:::i;:::-;21713:74;;21796:93;21885:3;21796:93;:::i;:::-;21914:2;21909:3;21905:12;21898:19;;21557:366;;;:::o;21929:419::-;22095:4;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;21929:419;;;:::o;22354:224::-;22494:34;22490:1;22482:6;22478:14;22471:58;22563:7;22558:2;22550:6;22546:15;22539:32;22354:224;:::o;22584:366::-;22726:3;22747:67;22811:2;22806:3;22747:67;:::i;:::-;22740:74;;22823:93;22912:3;22823:93;:::i;:::-;22941:2;22936:3;22932:12;22925:19;;22584:366;;;:::o;22956:419::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23209:9;23203:4;23199:20;23195:1;23184:9;23180:17;23173:47;23237:131;23363:4;23237:131;:::i;:::-;23229:139;;22956:419;;;:::o;23381:222::-;23521:34;23517:1;23509:6;23505:14;23498:58;23590:5;23585:2;23577:6;23573:15;23566:30;23381:222;:::o;23609:366::-;23751:3;23772:67;23836:2;23831:3;23772:67;:::i;:::-;23765:74;;23848:93;23937:3;23848:93;:::i;:::-;23966:2;23961:3;23957:12;23950:19;;23609:366;;;:::o;23981:419::-;24147:4;24185:2;24174:9;24170:18;24162:26;;24234:9;24228:4;24224:20;24220:1;24209:9;24205:17;24198:47;24262:131;24388:4;24262:131;:::i;:::-;24254:139;;23981:419;;;:::o;24406:225::-;24546:34;24542:1;24534:6;24530:14;24523:58;24615:8;24610:2;24602:6;24598:15;24591:33;24406:225;:::o;24637:366::-;24779:3;24800:67;24864:2;24859:3;24800:67;:::i;:::-;24793:74;;24876:93;24965:3;24876:93;:::i;:::-;24994:2;24989:3;24985:12;24978:19;;24637:366;;;:::o;25009:419::-;25175:4;25213:2;25202:9;25198:18;25190:26;;25262:9;25256:4;25252:20;25248:1;25237:9;25233:17;25226:47;25290:131;25416:4;25290:131;:::i;:::-;25282:139;;25009:419;;;:::o;25434:172::-;25574:24;25570:1;25562:6;25558:14;25551:48;25434:172;:::o;25612:366::-;25754:3;25775:67;25839:2;25834:3;25775:67;:::i;:::-;25768:74;;25851:93;25940:3;25851:93;:::i;:::-;25969:2;25964:3;25960:12;25953:19;;25612:366;;;:::o;25984:419::-;26150:4;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;25984:419;;;:::o;26409:156::-;26549:8;26545:1;26537:6;26533:14;26526:32;26409:156;:::o;26571:365::-;26713:3;26734:66;26798:1;26793:3;26734:66;:::i;:::-;26727:73;;26809:93;26898:3;26809:93;:::i;:::-;26927:2;26922:3;26918:12;26911:19;;26571:365;;;:::o;26942:419::-;27108:4;27146:2;27135:9;27131:18;27123:26;;27195:9;27189:4;27185:20;27181:1;27170:9;27166:17;27159:47;27223:131;27349:4;27223:131;:::i;:::-;27215:139;;26942:419;;;:::o;27367:410::-;27407:7;27430:20;27448:1;27430:20;:::i;:::-;27425:25;;27464:20;27482:1;27464:20;:::i;:::-;27459:25;;27519:1;27516;27512:9;27541:30;27559:11;27541:30;:::i;:::-;27530:41;;27720:1;27711:7;27707:15;27704:1;27701:22;27681:1;27674:9;27654:83;27631:139;;27750:18;;:::i;:::-;27631:139;27415:362;27367:410;;;;:::o;27783:180::-;27831:77;27828:1;27821:88;27928:4;27925:1;27918:15;27952:4;27949:1;27942:15;27969:185;28009:1;28026:20;28044:1;28026:20;:::i;:::-;28021:25;;28060:20;28078:1;28060:20;:::i;:::-;28055:25;;28099:1;28089:35;;28104:18;;:::i;:::-;28089:35;28146:1;28143;28139:9;28134:14;;27969:185;;;;:::o;28160:194::-;28200:4;28220:20;28238:1;28220:20;:::i;:::-;28215:25;;28254:20;28272:1;28254:20;:::i;:::-;28249:25;;28298:1;28295;28291:9;28283:17;;28322:1;28316:4;28313:11;28310:37;;;28327:18;;:::i;:::-;28310:37;28160:194;;;;:::o;28360:220::-;28500:34;28496:1;28488:6;28484:14;28477:58;28569:3;28564:2;28556:6;28552:15;28545:28;28360:220;:::o;28586:366::-;28728:3;28749:67;28813:2;28808:3;28749:67;:::i;:::-;28742:74;;28825:93;28914:3;28825:93;:::i;:::-;28943:2;28938:3;28934:12;28927:19;;28586:366;;;:::o;28958:419::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:221::-;29523:34;29519:1;29511:6;29507:14;29500:58;29592:4;29587:2;29579:6;29575:15;29568:29;29383:221;:::o;29610:366::-;29752:3;29773:67;29837:2;29832:3;29773:67;:::i;:::-;29766:74;;29849:93;29938:3;29849:93;:::i;:::-;29967:2;29962:3;29958:12;29951:19;;29610:366;;;:::o;29982:419::-;30148:4;30186:2;30175:9;30171:18;30163:26;;30235:9;30229:4;30225:20;30221:1;30210:9;30206:17;30199:47;30263:131;30389:4;30263:131;:::i;:::-;30255:139;;29982:419;;;:::o;30407:143::-;30464:5;30495:6;30489:13;30480:22;;30511:33;30538:5;30511:33;:::i;:::-;30407:143;;;;:::o;30556:351::-;30626:6;30675:2;30663:9;30654:7;30650:23;30646:32;30643:119;;;30681:79;;:::i;:::-;30643:119;30801:1;30826:64;30882:7;30873:6;30862:9;30858:22;30826:64;:::i;:::-;30816:74;;30772:128;30556:351;;;;:::o;30913:85::-;30958:7;30987:5;30976:16;;30913:85;;;:::o;31004:158::-;31062:9;31095:61;31113:42;31122:32;31148:5;31122:32;:::i;:::-;31113:42;:::i;:::-;31095:61;:::i;:::-;31082:74;;31004:158;;;:::o;31168:147::-;31263:45;31302:5;31263:45;:::i;:::-;31258:3;31251:58;31168:147;;:::o;31321:114::-;31388:6;31422:5;31416:12;31406:22;;31321:114;;;:::o;31441:184::-;31540:11;31574:6;31569:3;31562:19;31614:4;31609:3;31605:14;31590:29;;31441:184;;;;:::o;31631:132::-;31698:4;31721:3;31713:11;;31751:4;31746:3;31742:14;31734:22;;31631:132;;;:::o;31769:108::-;31846:24;31864:5;31846:24;:::i;:::-;31841:3;31834:37;31769:108;;:::o;31883:179::-;31952:10;31973:46;32015:3;32007:6;31973:46;:::i;:::-;32051:4;32046:3;32042:14;32028:28;;31883:179;;;;:::o;32068:113::-;32138:4;32170;32165:3;32161:14;32153:22;;32068:113;;;:::o;32217:732::-;32336:3;32365:54;32413:5;32365:54;:::i;:::-;32435:86;32514:6;32509:3;32435:86;:::i;:::-;32428:93;;32545:56;32595:5;32545:56;:::i;:::-;32624:7;32655:1;32640:284;32665:6;32662:1;32659:13;32640:284;;;32741:6;32735:13;32768:63;32827:3;32812:13;32768:63;:::i;:::-;32761:70;;32854:60;32907:6;32854:60;:::i;:::-;32844:70;;32700:224;32687:1;32684;32680:9;32675:14;;32640:284;;;32644:14;32940:3;32933:10;;32341:608;;;32217:732;;;;:::o;32955:831::-;33218:4;33256:3;33245:9;33241:19;33233:27;;33270:71;33338:1;33327:9;33323:17;33314:6;33270:71;:::i;:::-;33351:80;33427:2;33416:9;33412:18;33403:6;33351:80;:::i;:::-;33478:9;33472:4;33468:20;33463:2;33452:9;33448:18;33441:48;33506:108;33609:4;33600:6;33506:108;:::i;:::-;33498:116;;33624:72;33692:2;33681:9;33677:18;33668:6;33624:72;:::i;:::-;33706:73;33774:3;33763:9;33759:19;33750:6;33706:73;:::i;:::-;32955:831;;;;;;;;:::o;33792:225::-;33932:34;33928:1;33920:6;33916:14;33909:58;34001:8;33996:2;33988:6;33984:15;33977:33;33792:225;:::o;34023:366::-;34165:3;34186:67;34250:2;34245:3;34186:67;:::i;:::-;34179:74;;34262:93;34351:3;34262:93;:::i;:::-;34380:2;34375:3;34371:12;34364:19;;34023:366;;;:::o;34395:419::-;34561:4;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34395:419;;;:::o
Swarm Source
ipfs://46e2152bc605651315011f59684ba6af1b2e95928ba617164a7b7c4519bf6599
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.