ERC-20
Overview
Max Total Supply
1,000,000,000 TAP
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
489,551.123401103405420539 TAPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TapCoin
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-14 */ /** X: https://x.com/TapCoinETH TG: https://t.me/TapcoinPortal Linktr: https://linktr.ee/TapCoinETH **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value ) external returns (bool); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); } // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) /** * @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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer( address from, address to, uint256 value ) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update( address from, address to, uint256 value ) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve( address owner, address spender, uint256 value ) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract TapCoin is Ownable, ERC20 { IUniswapV2Router public immutable uniswapV2Router; address public constant ZERO_ADDRESS = address(0); address public constant DEAD_ADDRESS = address(0xdEaD); address public immutable uniswapV2Pair; address public operationsWallet; address public developmentWallet; bool public isLimitsEnabled; bool public isCooldownEnabled; bool public isTaxEnabled; bool private inSwapBack; bool public isLaunched; uint256 public launchBlock; uint256 public launchTime; uint256 private lastSwapBackExecutionBlock; uint256 public constant MAX_FEE = 15; uint256 public maxBuy; uint256 public maxSell; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyFee; uint256 public sellFee; uint256 public transferFee; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event Launch(); event SetOperationsWallet(address newWallet, address oldWallet); event SetDevelopmentWallet(address newWallet, address oldWallet); event SetLimitsEnabled(bool status); event SetCooldownEnabled(bool status); event SetTaxesEnabled(bool status); event SetMaxBuy(uint256 amount); event SetMaxSell(uint256 amount); event SetMaxWallet(uint256 amount); event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue); event SetBuyFees(uint256 newValue, uint256 oldValue); event SetSellFees(uint256 newValue, uint256 oldValue); event SetTransferFees(uint256 newValue, uint256 oldValue); event ExcludeFromFees(address account, bool isExcluded); event ExcludeFromLimits(address account, bool isExcluded); event SetBots(address account, bool isExcluded); event SetAutomatedMarketMakerPair(address pair, bool value); event WithdrawStuckTokens(address token, uint256 amount); error AlreadyLaunched(); error AddressZero(); error AmountTooLow(); error AmountTooHigh(); error FeeTooHigh(); error AMMAlreadySet(); error NoNativeTokens(); error NoTokens(); error FailedToWithdrawNativeTokens(); error BotDetected(); error TransferDelay(); error MaxBuyAmountExceed(); error MaxSellAmountExceed(); error MaxWalletAmountExceed(); error NotLaunched(); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("TapCoin", "TAP") { address sender = msg.sender; _mint(sender, 1_000_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0xD71c7FEE01D814876539994b3263a6D8C56DBBdb; developmentWallet = 0x39Ae0a83678C4E2957baD706Ca403678BfC5aE21; maxBuy = (totalSupply * 1) / 100; maxSell = (totalSupply * 1) / 100; maxWallet = (totalSupply * 1) / 100; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 15; sellFee = 15; transferFee = 50; uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(uniswapV2Pair, true); _approve(address(this), address(uniswapV2Router), type(uint256).max); _excludeFromFees(address(this), true); _excludeFromFees(DEAD_ADDRESS, true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromLimits(address(this), true); _excludeFromLimits(DEAD_ADDRESS, true); _excludeFromLimits(sender, true); _excludeFromLimits(operationsWallet, true); _excludeFromLimits(developmentWallet, true); } receive() external payable {} fallback() external payable {} function _transferOwnership(address newOwner) internal override { address oldOwner = owner(); if (oldOwner != address(0)) { _excludeFromFees(oldOwner, false); _excludeFromLimits(oldOwner, false); } _excludeFromFees(newOwner, true); _excludeFromLimits(newOwner, true); super._transferOwnership(newOwner); } function launch() external onlyOwner { require(!isLaunched, AlreadyLaunched()); isLaunched = true; launchBlock = block.number; launchTime = block.timestamp; emit Launch(); } function setOperationsWallet(address _operationsWallet) external onlyOwner { require(_operationsWallet != address(0), AddressZero()); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), AddressZero()); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit SetDevelopmentWallet(developmentWallet, oldWallet); } function setLimitsEnabled(bool value) external onlyOwner { isLimitsEnabled = value; emit SetLimitsEnabled(value); } function setCooldownEnabled(bool value) external onlyOwner { isCooldownEnabled = value; emit SetCooldownEnabled(value); } function setTaxesEnabled(bool value) external onlyOwner { isTaxEnabled = value; emit SetTaxesEnabled(value); } function setMaxBuy(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow()); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow()); require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh()); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = transferFee; transferFee = _transferFee; emit SetTransferFees(_transferFee, oldValue); } function excludeFromFees(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromFees(accounts[i], value); } } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!automatedMarketMakerPairs[accounts[i]]) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) && (accounts[i] != ZERO_ADDRESS) && (!isExcludedFromFees[accounts[i]] && !isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(!automatedMarketMakerPairs[pair], AMMAlreadySet()); _setAutomatedMarketMakerPair(pair, value); } function withdrawStuckTokens(address _token) external onlyOwner { address sender = msg.sender; uint256 amount; if (_token == ZERO_ADDRESS) { bool success; amount = address(this).balance; require(amount > 0, NoNativeTokens()); (success, ) = address(sender).call{value: amount}(""); require(success, FailedToWithdrawNativeTokens()); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, NoTokens()); IERC20(_token).transfer(msg.sender, amount); } emit WithdrawStuckTokens(_token, amount); } function _update( address from, address to, uint256 amount ) internal virtual override { address sender = msg.sender; address origin = tx.origin; uint256 blockNumber = block.number; require(!isBot[from], BotDetected()); require(sender == from || !isBot[sender], BotDetected()); require( origin == from || origin == sender || !isBot[origin], BotDetected() ); require( isLaunched || isExcludedFromLimits[from] || isExcludedFromLimits[to], NotLaunched() ); bool limits = isLimitsEnabled && !inSwapBack && !(isExcludedFromLimits[from] || isExcludedFromLimits[to]); if (limits) { if ( from != owner() && to != owner() && to != ZERO_ADDRESS && to != DEAD_ADDRESS ) { if (isCooldownEnabled) { if (to != address(uniswapV2Router) && to != uniswapV2Pair) { require( _holderLastTransferTimestamp[origin] < blockNumber - 3 && _holderLastTransferTimestamp[to] < blockNumber - 3, TransferDelay() ); _holderLastTransferTimestamp[origin] = blockNumber; _holderLastTransferTimestamp[to] = blockNumber; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, MaxBuyAmountExceed()); require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, MaxSellAmountExceed()); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } } } bool takeFee = isTaxEnabled && !inSwapBack && !(isExcludedFromFees[from] || isExcludedFromFees[to]); if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[to] && sellFee > 0) { fees = (amount * sellFee) / 100; } else if (automatedMarketMakerPairs[from] && buyFee > 0) { fees = (amount * buyFee) / 100; } else if ( !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from] && transferFee > 0 ) { fees = (amount * transferFee) / 100; } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } uint256 balance = balanceOf(address(this)); bool shouldSwap = balance >= swapTokensAtAmount; if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) { if (blockNumber > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = blockNumber; } } super._update(from, to, amount); } function _swapBack(uint256 balance) internal virtual lockSwapBack { bool success; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 maxSwapAmount = swapTokensAtAmount * 20; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForDevelopment = ethBalance / 5; uint256 ethForOperations = ethBalance - ethForDevelopment; (success, ) = address(operationsWallet).call{value: ethForOperations}( "" ); (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); } function _excludeFromFees(address account, bool value) internal virtual { isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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 IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801561000f575f5ffd5b5060408051808201825260078152662a30b821b7b4b760c91b6020808301919091528251808401909352600383526205441560ec1b9083015290338061006f57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610078816103bb565b5060046100858382611139565b5060056100928282611139565b503391506100ae9050816b033b2e3c9fd0803ce8000000610403565b5f6100b860035490565b600680546001600160a01b031990811673d71c7fee01d814876539994b3263a6d8c56dbbdb17909155600780549091167339ae0a83678c4e2957bad706ca403678bfc5ae211790559050606461010f826001611207565b6101199190611224565b600b556064610129826001611207565b6101339190611224565b600c556064610143826001611207565b61014d9190611224565b600d5561271061015e826005611207565b6101689190611224565b600e556007805462ffffff60a01b19166201010160a01b179055600f8080556010556032601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101e2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102069190611243565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610253573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102779190611243565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102c1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e59190611243565b6001600160a01b031660a08190526102fe906001610437565b610312306080515f1961049a60201b60201c565b61031d3060016104ac565b61032a61dead60016104ac565b6103358260016104ac565b60065461034c906001600160a01b031660016104ac565b600754610363906001600160a01b031660016104ac565b61036e306001610507565b61037b61dead6001610507565b610386826001610507565b60065461039d906001600160a01b03166001610507565b6007546103b4906001600160a01b03166001610507565b505061131a565b5f546001600160a01b031680156103e0576103d6815f6104ac565b6103e0815f610507565b6103eb8260016104ac565b6103f6826001610507565b6103ff82610562565b5050565b6001600160a01b03821661042c5760405163ec442f0560e01b81525f6004820152602401610066565b6103ff5f83836105b1565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104a78383836001610c51565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161048e565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910161048e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff16156105f0576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b0316148061062857506001600160a01b0383165f9081526012602052604090205460ff16155b610645576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b031614806106765750826001600160a01b0316826001600160a01b0316145b8061069957506001600160a01b0382165f9081526012602052604090205460ff16155b6106b6576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff16806106e557506001600160a01b0386165f9081526014602052604090205460ff165b8061070757506001600160a01b0385165f9081526014602052604090205460ff165b61072457604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156107495750600754600160b81b900460ff16155b801561078f57506001600160a01b0387165f9081526014602052604090205460ff168061078d57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015610a4d575f546001600160a01b038881169116148015906107c157505f546001600160a01b03878116911614155b80156107d557506001600160a01b03861615155b80156107ec57506001600160a01b03861661dead14155b15610a4d57600754600160a81b900460ff16156108d3576080516001600160a01b0316866001600160a01b03161415801561083b575060a0516001600160a01b0316866001600160a01b031614155b156108d35761084b600383611270565b6001600160a01b0384165f908152601660205260409020541080156108905750610876600383611270565b6001600160a01b0387165f90815260166020526040902054105b6108ad57604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff16801561091257506001600160a01b0386165f9081526014602052604090205460ff16155b1561098357600b5485111561093a57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f9081526001602052604090205461095f9087611283565b111561097e5760405163d867451160e01b815260040160405180910390fd5b610a4d565b6001600160a01b0386165f9081526015602052604090205460ff1680156109c257506001600160a01b0387165f9081526014602052604090205460ff16155b156109ea57600c5485111561097e576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16610a4d57600d546001600160a01b0387165f90815260016020526040902054610a2e9087611283565b1115610a4d5760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610a725750600754600160b81b900460ff16155b8015610ab857506001600160a01b0388165f9081526013602052604090205460ff1680610ab657506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015610bd9576001600160a01b0387165f9081526015602052604081205460ff168015610ae857505f601054115b15610b0e57606460105488610afd9190611207565b610b079190611224565b9050610bba565b6001600160a01b0389165f9081526015602052604090205460ff168015610b3657505f600f54115b15610b4b576064600f5488610afd9190611207565b6001600160a01b0388165f9081526015602052604090205460ff16158015610b8b57506001600160a01b0389165f9081526015602052604090205460ff16155b8015610b9857505f601154115b15610bba57606460115488610bad9190611207565b610bb79190611224565b90505b8015610bd757610bca8188611270565b9650610bd7893083610d24565b505b305f90815260016020526040902054600e54811015828015610c1357506001600160a01b038a165f9081526015602052604090205460ff16155b8015610c1c5750805b15610c3a57600a54851115610c3a57610c3482610e4a565b600a8590555b610c458a8a8a610d24565b50505050505050505050565b6001600160a01b038416610c7a5760405163e602df0560e01b81525f6004820152602401610066565b6001600160a01b038316610ca357604051634a1406b160e11b81525f6004820152602401610066565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d1e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d1591815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d4e578060035f828254610d439190611283565b90915550610dbe9050565b6001600160a01b0383165f9081526001602052604090205481811015610da05760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610066565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610dda57600380548290039055610df8565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e3d91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610e9457610e94611296565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f169190611243565b81600181518110610f2957610f29611296565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e546014610f599190611207565b905080841115610f67578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610f9d9594939291906112aa565b5f604051808303815f87803b158015610fb4575f5ffd5b505af1158015610fc6573d5f5f3e3d5ffd5b504792505f9150610fda9050600583611224565b90505f610fe78284611270565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114611032576040519150601f19603f3d011682016040523d82523d5f602084013e611037565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114611084576040519150601f19603f3d011682016040523d82523d5f602084013e611089565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110ca57607f821691505b6020821081036110e857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104a757805f5260205f20601f840160051c810160208510156111135750805b601f840160051c820191505b81811015611132575f815560010161111f565b5050505050565b81516001600160401b03811115611152576111526110a2565b6111668161116084546110b6565b846110ee565b6020601f821160018114611198575f83156111815750848201515b5f19600385901b1c1916600184901b178455611132565b5f84815260208120601f198516915b828110156111c757878501518255602094850194600190920191016111a7565b50848210156111e457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761121e5761121e6111f3565b92915050565b5f8261123e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611253575f5ffd5b81516001600160a01b0381168114611269575f5ffd5b9392505050565b8181038181111561121e5761121e6111f3565b8082018082111561121e5761121e6111f3565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156112fa5783516001600160a01b03168352602093840193909201916001016112d3565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161281561135e5f395f81816104e60152611c1b01525f81816103ac01528181610eb001528181611bde01528181612247015261232d01526128155ff3fe60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b604051610344919061246f565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124b8565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d6103963660046124ef565b610aeb565b3480156103a6575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e366004612571565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125af565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb3660046125d1565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125af565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d6105783660046125d1565b610bbe565b348015610588575f5ffd5b5061030d6105973660046125d1565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125af565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e43660046125ec565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125af565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125af565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d03660046125ec565b610d88565b3480156106e0575f5ffd5b50610337610df0565b3480156106f4575f5ffd5b5061030d610703366004612603565b610dff565b348015610713575f5ffd5b5061030d6107223660046124ef565b610e4e565b348015610732575f5ffd5b5061036c6107413660046124b8565b61105b565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d6107753660046124ef565b611068565b348015610785575f5ffd5b5061030d6107943660046125ec565b6110b2565b3480156107a4575f5ffd5b5061036c6107b33660046125af565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6600f81565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125af565b61117e565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d3660046125ec565b611363565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c3660046125ec565b6113cb565b3480156108ac575f5ffd5b506103f66108bb36600461263a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125af565b611433565b348015610944575f5ffd5b5061030d6109533660046125ec565b6114ba565b348015610963575f5ffd5b5061030d6109723660046125af565b611538565b348015610982575f5ffd5b5061030d6109913660046125ec565b61157a565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d26115f8565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a5190612666565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d90612666565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf818585611624565b60019150505b92915050565b610af36115f8565b5f5b82811015610b3557610b2d848483818110610b1257610b1261269e565b9050602002016020810190610b2791906125af565b83611636565b600101610af5565b50505050565b5f33610b48858285611691565b610b53858585611706565b506001949350505050565b610b666115f8565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc66115f8565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b6115f8565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c706115f8565b6103e8610c7c60035490565b610c879060036126c6565b610c9191906126dd565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee6115f8565b610cf75f611763565b565b610d016115f8565b6001600160a01b038116610d2857604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d906115f8565b600f811115610db25760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d7c565b606060058054610a5190612666565b610e076115f8565b6001600160a01b0382165f9081526015602052604090205460ff1615610e40576040516304eb79b560e31b815260040160405180910390fd5b610e4a82826117a7565b5050565b610e566115f8565b5f5b82811015610b355760155f858584818110610e7557610e7561269e565b9050602002016020810190610e8a91906125af565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f0b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610eea57610eea61269e565b9050602002016020810190610eff91906125af565b6001600160a01b031614155b8015610f46575030848483818110610f2557610f2561269e565b9050602002016020810190610f3a91906125af565b6001600160a01b031614155b8015610f8157505f848483818110610f6057610f6061269e565b9050602002016020810190610f7591906125af565b6001600160a01b031614155b801561101e575060135f858584818110610f9d57610f9d61269e565b9050602002016020810190610fb291906125af565b6001600160a01b0316815260208101919091526040015f205460ff1615801561101e575060145f858584818110610feb57610feb61269e565b905060200201602081019061100091906125af565b6001600160a01b0316815260208101919091526040015f205460ff16155b15611053576110538484838181106110385761103861269e565b905060200201602081019061104d91906125af565b83611802565b600101610e58565b5f33610adf818585611706565b6110706115f8565b5f5b82811015610b35576110aa84848381811061108f5761108f61269e565b90506020020160208101906110a491906125af565b8361185d565b600101611072565b6110ba6115f8565b5f6110c460035490565b9050620f42406110d58260016126c6565b6110df91906126dd565b8210156110ff57604051631fbaba3560e01b815260040160405180910390fd5b6103e861110d8260056126c6565b61111791906126dd565b8211156111375760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111866115f8565b335f6001600160a01b03831661122c5750475f816111b757604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111fd576040519150601f19603f3d011682016040523d82523d5f602084013e611202565b606091505b5050809150508061122657604051633398652560e11b815260040160405180910390fd5b50611324565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561126e573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129291906126fc565b90505f81116112b45760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112fe573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113229190612713565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611171565b61136b6115f8565b600f81111561138d5760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d7c565b6113d36115f8565b600f8111156113f55760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d7c565b61143b6115f8565b6001600160a01b03811661146257604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d7c565b6114c26115f8565b6103e86114ce60035490565b6114d99060026126c6565b6114e391906126dd565b81101561150357604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b6115406115f8565b6001600160a01b03811661156e57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61157781611763565b50565b6115826115f8565b6103e861158e60035490565b6115999060026126c6565b6115a391906126dd565b8110156115c357604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b8152336004820152602401611565565b61163183838360016118b8565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d7c565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b3557818110156116f857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611565565b610b3584848484035f6118b8565b6001600160a01b03831661172f57604051634b637e8f60e11b81525f6004820152602401611565565b6001600160a01b0382166117585760405163ec442f0560e01b81525f6004820152602401611565565b61163183838361198a565b5f546001600160a01b031680156117885761177e815f61185d565b611788815f611636565b61179382600161185d565b61179e826001611636565b610e4a82612066565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d7c565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d7c565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d7c565b6001600160a01b0384166118e15760405163e602df0560e01b81525f6004820152602401611565565b6001600160a01b03831661190a57604051634a1406b160e11b81525f6004820152602401611565565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197c91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff16156119c9576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a0157506001600160a01b0383165f9081526012602052604090205460ff16155b611a1e576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a4f5750826001600160a01b0316826001600160a01b0316145b80611a7257506001600160a01b0382165f9081526012602052604090205460ff16155b611a8f576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611abe57506001600160a01b0386165f9081526014602052604090205460ff165b80611ae057506001600160a01b0385165f9081526014602052604090205460ff165b611afd57604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b225750600754600160b81b900460ff16155b8015611b6857506001600160a01b0387165f9081526014602052604090205460ff1680611b6657506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611e62575f546001600160a01b03888116911614801590611b9a57505f546001600160a01b03878116911614155b8015611bae57506001600160a01b03861615155b8015611bc557506001600160a01b03861661dead14155b15611e6257600754600160a81b900460ff1615611ce8577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614158015611c5057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b15611ce857611c6060038361272e565b6001600160a01b0384165f90815260166020526040902054108015611ca55750611c8b60038361272e565b6001600160a01b0387165f90815260166020526040902054105b611cc257604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d2757506001600160a01b0386165f9081526014602052604090205460ff16155b15611d9857600b54851115611d4f57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611d749087612741565b1115611d935760405163d867451160e01b815260040160405180910390fd5b611e62565b6001600160a01b0386165f9081526015602052604090205460ff168015611dd757506001600160a01b0387165f9081526014602052604090205460ff16155b15611dff57600c54851115611d93576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611e6257600d546001600160a01b0387165f90815260016020526040902054611e439087612741565b1115611e625760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e875750600754600160b81b900460ff16155b8015611ecd57506001600160a01b0388165f9081526013602052604090205460ff1680611ecb57506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015611fee576001600160a01b0387165f9081526015602052604081205460ff168015611efd57505f601054115b15611f2357606460105488611f1291906126c6565b611f1c91906126dd565b9050611fcf565b6001600160a01b0389165f9081526015602052604090205460ff168015611f4b57505f600f54115b15611f60576064600f5488611f1291906126c6565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fa057506001600160a01b0389165f9081526015602052604090205460ff16155b8015611fad57505f601154115b15611fcf57606460115488611fc291906126c6565b611fcc91906126dd565b90505b8015611fec57611fdf818861272e565b9650611fec8930836120b5565b505b305f90815260016020526040902054600e5481101582801561202857506001600160a01b038a165f9081526015602052604090205460ff16155b80156120315750805b1561204f57600a5485111561204f57612049826121db565b600a8590555b61205a8a8a8a6120b5565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120df578060035f8282546120d49190612741565b9091555061214f9050565b6001600160a01b0383165f90815260016020526040902054818110156121315760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611565565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661216b57600380548290039055612189565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121ce91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122255761222561269e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c59190612754565b816001815181106122d8576122d861269e565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461230891906126c6565b905080841115612316578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061236a9087905f9087903090429060040161276f565b5f604051808303815f87803b158015612381575f5ffd5b505af1158015612393573d5f5f3e3d5ffd5b504792505f91506123a790506005836126dd565b90505f6123b4828461272e565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123ff576040519150601f19603f3d011682016040523d82523d5f602084013e612404565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612451576040519150601f19603f3d011682016040523d82523d5f602084013e612456565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611577575f5ffd5b5f5f604083850312156124c9575f5ffd5b82356124d4816124a4565b946020939093013593505050565b8015158114611577575f5ffd5b5f5f5f60408486031215612501575f5ffd5b833567ffffffffffffffff811115612517575f5ffd5b8401601f81018613612527575f5ffd5b803567ffffffffffffffff81111561253d575f5ffd5b8660208260051b8401011115612551575f5ffd5b602091820194509250840135612566816124e2565b809150509250925092565b5f5f5f60608486031215612583575f5ffd5b833561258e816124a4565b9250602084013561259e816124a4565b929592945050506040919091013590565b5f602082840312156125bf575f5ffd5b81356125ca816124a4565b9392505050565b5f602082840312156125e1575f5ffd5b81356125ca816124e2565b5f602082840312156125fc575f5ffd5b5035919050565b5f5f60408385031215612614575f5ffd5b823561261f816124a4565b9150602083013561262f816124e2565b809150509250929050565b5f5f6040838503121561264b575f5ffd5b8235612656816124a4565b9150602083013561262f816124a4565b600181811c9082168061267a57607f821691505b60208210810361269857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126b2565b5f826126f757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561270c575f5ffd5b5051919050565b5f60208284031215612723575f5ffd5b81516125ca816124e2565b81810381811115610ae557610ae56126b2565b80820180821115610ae557610ae56126b2565b5f60208284031215612764575f5ffd5b81516125ca816124a4565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127bf5783516001600160a01b0316835260209384019390920191600101612798565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220a710fa39fe9ce13821b55419ae0f146b6411cdce0ad44635ff14db32d6e26df464736f6c634300081c0033
Deployed Bytecode
0x60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b604051610344919061246f565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124b8565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d6103963660046124ef565b610aeb565b3480156103a6575f5ffd5b506103ce7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e366004612571565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125af565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb3660046125d1565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f000000000000000000000000474d9dfd7f44c3333b14515cfd83af50074f7f9581565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125af565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d6105783660046125d1565b610bbe565b348015610588575f5ffd5b5061030d6105973660046125d1565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125af565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e43660046125ec565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125af565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125af565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d03660046125ec565b610d88565b3480156106e0575f5ffd5b50610337610df0565b3480156106f4575f5ffd5b5061030d610703366004612603565b610dff565b348015610713575f5ffd5b5061030d6107223660046124ef565b610e4e565b348015610732575f5ffd5b5061036c6107413660046124b8565b61105b565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d6107753660046124ef565b611068565b348015610785575f5ffd5b5061030d6107943660046125ec565b6110b2565b3480156107a4575f5ffd5b5061036c6107b33660046125af565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6600f81565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125af565b61117e565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d3660046125ec565b611363565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c3660046125ec565b6113cb565b3480156108ac575f5ffd5b506103f66108bb36600461263a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125af565b611433565b348015610944575f5ffd5b5061030d6109533660046125ec565b6114ba565b348015610963575f5ffd5b5061030d6109723660046125af565b611538565b348015610982575f5ffd5b5061030d6109913660046125ec565b61157a565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d26115f8565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a5190612666565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d90612666565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf818585611624565b60019150505b92915050565b610af36115f8565b5f5b82811015610b3557610b2d848483818110610b1257610b1261269e565b9050602002016020810190610b2791906125af565b83611636565b600101610af5565b50505050565b5f33610b48858285611691565b610b53858585611706565b506001949350505050565b610b666115f8565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc66115f8565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b6115f8565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c706115f8565b6103e8610c7c60035490565b610c879060036126c6565b610c9191906126dd565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee6115f8565b610cf75f611763565b565b610d016115f8565b6001600160a01b038116610d2857604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d906115f8565b600f811115610db25760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d7c565b606060058054610a5190612666565b610e076115f8565b6001600160a01b0382165f9081526015602052604090205460ff1615610e40576040516304eb79b560e31b815260040160405180910390fd5b610e4a82826117a7565b5050565b610e566115f8565b5f5b82811015610b355760155f858584818110610e7557610e7561269e565b9050602002016020810190610e8a91906125af565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f0b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610eea57610eea61269e565b9050602002016020810190610eff91906125af565b6001600160a01b031614155b8015610f46575030848483818110610f2557610f2561269e565b9050602002016020810190610f3a91906125af565b6001600160a01b031614155b8015610f8157505f848483818110610f6057610f6061269e565b9050602002016020810190610f7591906125af565b6001600160a01b031614155b801561101e575060135f858584818110610f9d57610f9d61269e565b9050602002016020810190610fb291906125af565b6001600160a01b0316815260208101919091526040015f205460ff1615801561101e575060145f858584818110610feb57610feb61269e565b905060200201602081019061100091906125af565b6001600160a01b0316815260208101919091526040015f205460ff16155b15611053576110538484838181106110385761103861269e565b905060200201602081019061104d91906125af565b83611802565b600101610e58565b5f33610adf818585611706565b6110706115f8565b5f5b82811015610b35576110aa84848381811061108f5761108f61269e565b90506020020160208101906110a491906125af565b8361185d565b600101611072565b6110ba6115f8565b5f6110c460035490565b9050620f42406110d58260016126c6565b6110df91906126dd565b8210156110ff57604051631fbaba3560e01b815260040160405180910390fd5b6103e861110d8260056126c6565b61111791906126dd565b8211156111375760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111866115f8565b335f6001600160a01b03831661122c5750475f816111b757604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111fd576040519150601f19603f3d011682016040523d82523d5f602084013e611202565b606091505b5050809150508061122657604051633398652560e11b815260040160405180910390fd5b50611324565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561126e573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129291906126fc565b90505f81116112b45760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112fe573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113229190612713565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611171565b61136b6115f8565b600f81111561138d5760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d7c565b6113d36115f8565b600f8111156113f55760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d7c565b61143b6115f8565b6001600160a01b03811661146257604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d7c565b6114c26115f8565b6103e86114ce60035490565b6114d99060026126c6565b6114e391906126dd565b81101561150357604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b6115406115f8565b6001600160a01b03811661156e57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61157781611763565b50565b6115826115f8565b6103e861158e60035490565b6115999060026126c6565b6115a391906126dd565b8110156115c357604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b8152336004820152602401611565565b61163183838360016118b8565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d7c565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b3557818110156116f857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611565565b610b3584848484035f6118b8565b6001600160a01b03831661172f57604051634b637e8f60e11b81525f6004820152602401611565565b6001600160a01b0382166117585760405163ec442f0560e01b81525f6004820152602401611565565b61163183838361198a565b5f546001600160a01b031680156117885761177e815f61185d565b611788815f611636565b61179382600161185d565b61179e826001611636565b610e4a82612066565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d7c565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d7c565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d7c565b6001600160a01b0384166118e15760405163e602df0560e01b81525f6004820152602401611565565b6001600160a01b03831661190a57604051634a1406b160e11b81525f6004820152602401611565565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197c91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff16156119c9576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a0157506001600160a01b0383165f9081526012602052604090205460ff16155b611a1e576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a4f5750826001600160a01b0316826001600160a01b0316145b80611a7257506001600160a01b0382165f9081526012602052604090205460ff16155b611a8f576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611abe57506001600160a01b0386165f9081526014602052604090205460ff165b80611ae057506001600160a01b0385165f9081526014602052604090205460ff165b611afd57604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b225750600754600160b81b900460ff16155b8015611b6857506001600160a01b0387165f9081526014602052604090205460ff1680611b6657506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611e62575f546001600160a01b03888116911614801590611b9a57505f546001600160a01b03878116911614155b8015611bae57506001600160a01b03861615155b8015611bc557506001600160a01b03861661dead14155b15611e6257600754600160a81b900460ff1615611ce8577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614158015611c5057507f000000000000000000000000474d9dfd7f44c3333b14515cfd83af50074f7f956001600160a01b0316866001600160a01b031614155b15611ce857611c6060038361272e565b6001600160a01b0384165f90815260166020526040902054108015611ca55750611c8b60038361272e565b6001600160a01b0387165f90815260166020526040902054105b611cc257604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d2757506001600160a01b0386165f9081526014602052604090205460ff16155b15611d9857600b54851115611d4f57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611d749087612741565b1115611d935760405163d867451160e01b815260040160405180910390fd5b611e62565b6001600160a01b0386165f9081526015602052604090205460ff168015611dd757506001600160a01b0387165f9081526014602052604090205460ff16155b15611dff57600c54851115611d93576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611e6257600d546001600160a01b0387165f90815260016020526040902054611e439087612741565b1115611e625760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e875750600754600160b81b900460ff16155b8015611ecd57506001600160a01b0388165f9081526013602052604090205460ff1680611ecb57506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015611fee576001600160a01b0387165f9081526015602052604081205460ff168015611efd57505f601054115b15611f2357606460105488611f1291906126c6565b611f1c91906126dd565b9050611fcf565b6001600160a01b0389165f9081526015602052604090205460ff168015611f4b57505f600f54115b15611f60576064600f5488611f1291906126c6565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fa057506001600160a01b0389165f9081526015602052604090205460ff16155b8015611fad57505f601154115b15611fcf57606460115488611fc291906126c6565b611fcc91906126dd565b90505b8015611fec57611fdf818861272e565b9650611fec8930836120b5565b505b305f90815260016020526040902054600e5481101582801561202857506001600160a01b038a165f9081526015602052604090205460ff16155b80156120315750805b1561204f57600a5485111561204f57612049826121db565b600a8590555b61205a8a8a8a6120b5565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120df578060035f8282546120d49190612741565b9091555061214f9050565b6001600160a01b0383165f90815260016020526040902054818110156121315760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611565565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661216b57600380548290039055612189565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121ce91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122255761222561269e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c59190612754565b816001815181106122d8576122d861269e565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461230891906126c6565b905080841115612316578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061236a9087905f9087903090429060040161276f565b5f604051808303815f87803b158015612381575f5ffd5b505af1158015612393573d5f5f3e3d5ffd5b504792505f91506123a790506005836126dd565b90505f6123b4828461272e565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123ff576040519150601f19603f3d011682016040523d82523d5f602084013e612404565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612451576040519150601f19603f3d011682016040523d82523d5f602084013e612456565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611577575f5ffd5b5f5f604083850312156124c9575f5ffd5b82356124d4816124a4565b946020939093013593505050565b8015158114611577575f5ffd5b5f5f5f60408486031215612501575f5ffd5b833567ffffffffffffffff811115612517575f5ffd5b8401601f81018613612527575f5ffd5b803567ffffffffffffffff81111561253d575f5ffd5b8660208260051b8401011115612551575f5ffd5b602091820194509250840135612566816124e2565b809150509250925092565b5f5f5f60608486031215612583575f5ffd5b833561258e816124a4565b9250602084013561259e816124a4565b929592945050506040919091013590565b5f602082840312156125bf575f5ffd5b81356125ca816124a4565b9392505050565b5f602082840312156125e1575f5ffd5b81356125ca816124e2565b5f602082840312156125fc575f5ffd5b5035919050565b5f5f60408385031215612614575f5ffd5b823561261f816124a4565b9150602083013561262f816124e2565b809150509250929050565b5f5f6040838503121561264b575f5ffd5b8235612656816124a4565b9150602083013561262f816124a4565b600181811c9082168061267a57607f821691505b60208210810361269857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126b2565b5f826126f757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561270c575f5ffd5b5051919050565b5f60208284031215612723575f5ffd5b81516125ca816124e2565b81810381811115610ae557610ae56126b2565b80820180821115610ae557610ae56126b2565b5f60208284031215612764575f5ffd5b81516125ca816124a4565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127bf5783516001600160a01b0316835260209384019390920191600101612798565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220a710fa39fe9ce13821b55419ae0f146b6411cdce0ad44635ff14db32d6e26df464736f6c634300081c0033
Deployed Bytecode Sourcemap
26423:15406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31227:223;;;;;;;;;;;;;:::i;13090:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15424:222;;;;;;;;;;-1:-1:-1;15424:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15424:222:0;945:187:1;34586:239:0;;;;;;;;;;-1:-1:-1;34586:239:0;;;;;:::i;:::-;;:::i;26465:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26465:49:0;2010:227:1;14192:99:0;;;;;;;;;;-1:-1:-1;14271:12:0;;14192:99;;;2388:25:1;;;2376:2;2361:18;14192:99:0;2242:177:1;16224:283:0;;;;;;;;;;-1:-1:-1;16224:283:0;;;;;:::i;:::-;;:::i;27249:22::-;;;;;;;;;;;;;;;;26897;;;;;;;;;;-1:-1:-1;26897:22:0;;;;-1:-1:-1;;;26897:22:0;;;;;;14043:84;;;;;;;;;;-1:-1:-1;14043:84:0;;14117:2;3079:36:1;;3067:2;3052:18;14043:84:0;2937:184:1;27313:37:0;;;;;;;;;;-1:-1:-1;27313:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32119:138;;;;;;;;;;-1:-1:-1;32119:138:0;;;;;:::i;:::-;;:::i;27221:21::-;;;;;;;;;;;;;;;;26642:38;;;;;;;;;;;;;;;26579:54;;;;;;;;;;;;26626:6;26579:54;;27357:50;;;;;;;;;;-1:-1:-1;27357:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26523:49;;;;;;;;;;;;26570:1;26523:49;;32265:144;;;;;;;;;;-1:-1:-1;32265:144:0;;;;;:::i;:::-;;:::i;32417:133::-;;;;;;;;;;-1:-1:-1;32417:133:0;;;;;:::i;:::-;;:::i;27414:52::-;;;;;;;;;;-1:-1:-1;27414:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32968:207;;;;;;;;;;-1:-1:-1;32968:207:0;;;;;:::i;:::-;;:::i;26800:29::-;;;;;;;;;;-1:-1:-1;26800:29:0;;;;-1:-1:-1;;;26800:29:0;;;;;;14354:118;;;;;;;;;;-1:-1:-1;14354:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14446:18:0;14419:7;14446:18;;;:9;:18;;;;;;;14354:118;27091:21;;;;;;;;;;;;;;;;25071:103;;;;;;;;;;;;;:::i;31773:338::-;;;;;;;;;;-1:-1:-1;31773:338:0;;;;;:::i;:::-;;:::i;26961:25::-;;;;;;;;;;;;;;;;24396:87;;;;;;;;;;-1:-1:-1;24442:7:0;24469:6;-1:-1:-1;;;;;24469:6:0;24396:87;;33831:232;;;;;;;;;;-1:-1:-1;33831:232:0;;;;;:::i;:::-;;:::i;13300:95::-;;;;;;;;;;;;;:::i;35416:234::-;;;;;;;;;;-1:-1:-1;35416:234:0;;;;;:::i;:::-;;:::i;34833:575::-;;;;;;;;;;-1:-1:-1;34833:575:0;;;;;:::i;:::-;;:::i;14677:182::-;;;;;;;;;;-1:-1:-1;14677:182:0;;;;;:::i;:::-;;:::i;27278:26::-;;;;;;;;;;;;;;;;34343:235;;;;;;;;;;-1:-1:-1;34343:235:0;;;;;:::i;:::-;;:::i;33183:408::-;;;;;;;;;;-1:-1:-1;33183:408:0;;;;;:::i;:::-;;:::i;27473:57::-;;;;;;;;;;-1:-1:-1;27473:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27119:22;;;;;;;;;;;;;;;;27046:36;;;;;;;;;;;;27080:2;27046:36;;26725:32;;;;;;;;;;-1:-1:-1;26725:32:0;;;;-1:-1:-1;;;;;26725:32:0;;;35658:676;;;;;;;;;;-1:-1:-1;35658:676:0;;;;;:::i;:::-;;:::i;26928:26::-;;;;;;;;;;;;;;;;34071:264;;;;;;;;;;-1:-1:-1;34071:264:0;;;;;:::i;:::-;;:::i;26766:27::-;;;;;;;;;;-1:-1:-1;26766:27:0;;;;-1:-1:-1;;;26766:27:0;;;;;;33599:224;;;;;;;;;;-1:-1:-1;33599:224:0;;;;;:::i;:::-;;:::i;14922:183::-;;;;;;;;;;-1:-1:-1;14922:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;15070:18:0;;;15038:7;15070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14922:183;27181:33;;;;;;;;;;;;;;;;26836:24;;;;;;;;;;-1:-1:-1;26836:24:0;;;;-1:-1:-1;;;26836:24:0;;;;;;31458:307;;;;;;;;;;-1:-1:-1;31458:307:0;;;;;:::i;:::-;;:::i;32761:199::-;;;;;;;;;;-1:-1:-1;32761:199:0;;;;;:::i;:::-;;:::i;25329:220::-;;;;;;;;;;-1:-1:-1;25329:220:0;;;;;:::i;:::-;;:::i;32558:195::-;;;;;;;;;;-1:-1:-1;32558:195:0;;;;;:::i;:::-;;:::i;27148:24::-;;;;;;;;;;;;;;;;26687:31;;;;;;;;;;-1:-1:-1;26687:31:0;;;;-1:-1:-1;;;;;26687:31:0;;;31227:223;24282:13;:11;:13::i;:::-;31284:10:::1;::::0;-1:-1:-1;;;31284:10:0;::::1;;;31283:11;31275:39;;;;-1:-1:-1::0;;;31275:39:0::1;;;;;;;;;;;;31325:10;:17:::0;;-1:-1:-1;;;;31325:17:0::1;-1:-1:-1::0;;;31325:17:0::1;::::0;;31367:12:::1;31353:11;:26:::0;31403:15:::1;31390:10;:28:::0;31434:8:::1;::::0;::::1;::::0;31325:17;;31434:8:::1;31227:223::o:0;13090:91::-;13135:13;13168:5;13161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13090:91;:::o;15424:222::-;15524:4;4385:10;15585:31;4385:10;15601:7;15610:5;15585:8;:31::i;:::-;15634:4;15627:11;;;15424:222;;;;;:::o;34586:239::-;24282:13;:11;:13::i;:::-;34712:9:::1;34707:111;34727:19:::0;;::::1;34707:111;;;34768:38;34787:8;;34796:1;34787:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34800:5;34768:18;:38::i;:::-;34748:3;;34707:111;;;;34586:239:::0;;;:::o;16224:283::-;16345:4;4385:10;16403:37;16419:4;4385:10;16434:5;16403:15;:37::i;:::-;16451:26;16461:4;16467:2;16471:5;16451:9;:26::i;:::-;-1:-1:-1;16495:4:0;;16224:283;-1:-1:-1;;;;16224:283:0:o;32119:138::-;24282:13;:11;:13::i;:::-;32187:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;32187:23:0::1;-1:-1:-1::0;;;;32187:23:0;;::::1;;::::0;;32226::::1;::::0;::::1;::::0;::::1;::::0;32205:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32226:23:0::1;;;;;;;;32119:138:::0;:::o;32265:144::-;24282:13;:11;:13::i;:::-;32335:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;32335:25:0::1;-1:-1:-1::0;;;;32335:25:0;;::::1;;::::0;;32376::::1;::::0;::::1;::::0;::::1;::::0;32355:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32417:133:0;24282:13;:11;:13::i;:::-;32484:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;32484:20:0::1;-1:-1:-1::0;;;;32484:20:0;;::::1;;::::0;;32520:22:::1;::::0;::::1;::::0;::::1;::::0;32499:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32968:207:0;24282:13;:11;:13::i;:::-;33077:4:::1;33056:13;14271:12:::0;;;14192:99;33056:13:::1;:17;::::0;33072:1:::1;33056:17;:::i;:::-;33055:26;;;;:::i;:::-;33044:6;:38;;33036:63;;;;-1:-1:-1::0;;;33036:63:0::1;;;;;;;;;;;;33110:9;:18:::0;;;33144:23:::1;::::0;2388:25:1;;;33144:23:0::1;::::0;2376:2:1;2361:18;33144:23:0::1;2242:177:1::0;25071:103:0;24282:13;:11;:13::i;:::-;25136:30:::1;25163:1;25136:18;:30::i;:::-;25071:103::o:0;31773:338::-;24282:13;:11;:13::i;:::-;-1:-1:-1;;;;;31892:32:0;::::1;31884:56;;;;-1:-1:-1::0;;;31884:56:0::1;;;;;;;;;;;;31971:17;::::0;;-1:-1:-1;;;;;31999:38:0;;::::1;-1:-1:-1::0;;;;;;31999:38:0;::::1;::::0;::::1;::::0;;;32053:50:::1;::::0;;6061:51:1;;;31971:17:0;::::1;6143:2:1::0;6128:18;;6121:60;;;31971:17:0;32053:50:::1;::::0;6034:18:1;32053:50:0::1;;;;;;;;31873:238;31773:338:::0;:::o;33831:232::-;24282:13;:11;:13::i;:::-;27080:2:::1;33908:8;:19;;33900:42;;;;-1:-1:-1::0;;;33900:42:0::1;;;;;;;;;;;;33972:7;::::0;;33990:18;;;;34024:31:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34024:31:0::1;::::0;6339:18:1;34024:31:0::1;6192:248:1::0;13300:95:0;13347:13;13380:7;13373:14;;;;;:::i;35416:234::-;24282:13;:11;:13::i;:::-;-1:-1:-1;;;;;35541:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;35540:32;35532:58;;;;-1:-1:-1::0;;;35532:58:0::1;;;;;;;;;;;;35601:41;35630:4;35636:5;35601:28;:41::i;:::-;35416:234:::0;;:::o;34833:575::-;24282:13;:11;:13::i;:::-;34949:9:::1;34944:457;34964:19:::0;;::::1;34944:457;;;35029:25;:38;35055:8;;35064:1;35055:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35029:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35029:38:0;;::::1;;35028:39;35027:103:::0;::::1;;;;35113:15;-1:-1:-1::0;;;;;35090:39:0::1;:8;;35099:1;35090:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35090:39:0::1;;;35027:103;:154;;;;-1:-1:-1::0;35175:4:0::1;35152:8:::0;;35161:1;35152:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35152:28:0::1;;;35027:154;:204;;;;-1:-1:-1::0;26570:1:0::1;35203:8:::0;;35212:1;35203:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35203:27:0::1;;;35027:204;:318;;;;;35254:18;:31;35273:8;;35282:1;35273:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35254:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35254:31:0;;::::1;;35253:32;:91:::0;::::1;;;;35311:20;:33;35332:8;;35341:1;35332:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35311:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35311:33:0;;::::1;;35310:34;35253:91;35005:384;;;35361:28;35370:8;;35379:1;35370:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35383:5;35361:8;:28::i;:::-;34985:3;;34944:457;;14677:182:::0;14746:4;4385:10;14802:27;4385:10;14819:2;14823:5;14802:9;:27::i;34343:235::-;24282:13;:11;:13::i;:::-;34467:9:::1;34462:109;34482:19:::0;;::::1;34462:109;;;34523:36;34540:8;;34549:1;34540:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34553:5;34523:16;:36::i;:::-;34503:3;;34462:109;;33183:408:::0;24282:13;:11;:13::i;:::-;33260:20:::1;33283:13;14271:12:::0;;;14192:99;33283:13:::1;33260:36:::0;-1:-1:-1;33346:7:0::1;33326:16;33260:36:::0;33341:1:::1;33326:16;:::i;:::-;33325:28;;;;:::i;:::-;33315:6;:38;;33307:63;;;;-1:-1:-1::0;;;33307:63:0::1;;;;;;;;;;;;33420:4;33400:16;:12:::0;33415:1:::1;33400:16;:::i;:::-;33399:25;;;;:::i;:::-;33389:6;:35;;33381:61;;;;-1:-1:-1::0;;;33381:61:0::1;;;;;;;;;;;;33472:18;::::0;;33501:27;;;;33544:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33544:39:0::1;::::0;6339:18:1;33544:39:0::1;;;;;;;;33249:342;;33183:408:::0;:::o;35658:676::-;24282:13;:11;:13::i;:::-;35750:10:::1;35733:14;-1:-1:-1::0;;;;;35800:22:0;::::1;35796:480;;-1:-1:-1::0;35875:21:0::1;35839:12;35919:10:::0;35911:37:::1;;;;-1:-1:-1::0;;;35911:37:0::1;;;;;;;;;;;;35977:39;::::0;-1:-1:-1;;;;;35977:20:0;::::1;::::0;36005:6;;35977:39:::1;::::0;;;36005:6;35977:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35963:53;;;;;36039:7;36031:48;;;;-1:-1:-1::0;;;36031:48:0::1;;;;;;;;;;;;35824:267;35796:480;;;36121:39;::::0;-1:-1:-1;;;36121:39:0;;36154:4:::1;36121:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;36121:24:0;::::1;::::0;::::1;::::0;2153:18:1;;36121:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36112:48;;36192:1;36183:6;:10;36175:31;;;;-1:-1:-1::0;;;36175:31:0::1;;;;;;;;;;;;36221:43;::::0;-1:-1:-1;;;36221:43:0;;36245:10:::1;36221:43;::::0;::::1;7018:51:1::0;7085:18;;;7078:34;;;-1:-1:-1;;;;;36221:23:0;::::1;::::0;::::1;::::0;6991:18:1;;36221:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35796:480;36291:35;::::0;;-1:-1:-1;;;;;7036:32:1;;7018:51;;7100:2;7085:18;;7078:34;;;36291:35:0::1;::::0;6991:18:1;36291:35:0::1;6844:274:1::0;34071:264:0;24282:13;:11;:13::i;:::-;27080:2:::1;34156:12;:23;;34148:46;;;;-1:-1:-1::0;;;34148:46:0::1;;;;;;;;;;;;34224:11;::::0;;34246:26;;;;34288:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34288:39:0::1;::::0;6339:18:1;34288:39:0::1;6192:248:1::0;33599:224:0;24282:13;:11;:13::i;:::-;27080:2:::1;33674:7;:18;;33666:41;;;;-1:-1:-1::0;;;33666:41:0::1;;;;;;;;;;;;33737:6;::::0;;33754:16;;;;33786:29:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33786:29:0::1;::::0;6339:18:1;33786:29:0::1;6192:248:1::0;31458:307:0;24282:13;:11;:13::i;:::-;-1:-1:-1;;;;;31552:31:0;::::1;31544:55;;;;-1:-1:-1::0;;;31544:55:0::1;;;;;;;;;;;;31630:16;::::0;;-1:-1:-1;;;;;31657:36:0;;::::1;-1:-1:-1::0;;;;;;31657:36:0;::::1;::::0;::::1;::::0;;;31709:48:::1;::::0;;6061:51:1;;;31630:16:0;::::1;6143:2:1::0;6128:18;;6121:60;;;31630:16:0;31709:48:::1;::::0;6034:18:1;31709:48:0::1;5887:300:1::0;32761:199:0;24282:13;:11;:13::i;:::-;32868:4:::1;32847:13;14271:12:::0;;;14192:99;32847:13:::1;:17;::::0;32863:1:::1;32847:17;:::i;:::-;32846:26;;;;:::i;:::-;32835:6;:38;;32827:63;;;;-1:-1:-1::0;;;32827:63:0::1;;;;;;;;;;;;32901:7;:16:::0;;;32933:19:::1;::::0;2388:25:1;;;32933:19:0::1;::::0;2376:2:1;2361:18;32933:19:0::1;2242:177:1::0;25329:220:0;24282:13;:11;:13::i;:::-;-1:-1:-1;;;;;25414:22:0;::::1;25410:93;;25460:31;::::0;-1:-1:-1;;;25460:31:0;;25488:1:::1;25460:31;::::0;::::1;2180:51:1::0;2153:18;;25460:31:0::1;;;;;;;;25410:93;25513:28;25532:8;25513:18;:28::i;:::-;25329:220:::0;:::o;32558:195::-;24282:13;:11;:13::i;:::-;32664:4:::1;32643:13;14271:12:::0;;;14192:99;32643:13:::1;:17;::::0;32659:1:::1;32643:17;:::i;:::-;32642:26;;;;:::i;:::-;32631:6;:38;;32623:63;;;;-1:-1:-1::0;;;32623:63:0::1;;;;;;;;;;;;32697:6;:15:::0;;;32728:17:::1;::::0;2388:25:1;;;32728:17:0::1;::::0;2376:2:1;2361:18;32728:17:0::1;2242:177:1::0;24561:166:0;24442:7;24469:6;-1:-1:-1;;;;;24469:6:0;4385:10;24621:23;24617:103;;24668:40;;-1:-1:-1;;;24668:40:0;;4385:10;24668:40;;;2180:51:1;2153:18;;24668:40:0;2010:227:1;20385:164:0;20504:37;20513:5;20520:7;20529:5;20536:4;20504:8;:37::i;:::-;20385:164;;;:::o;41269:179::-;-1:-1:-1;;;;;41354:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;41354:37:0;;;;;;;;;;41407:33;;7541:51:1;;;7608:18;;;7601:50;41407:33:0;;7514:18:1;41407:33:0;7373:284:1;22178:603:0;-1:-1:-1;;;;;15070:18:0;;;22312:24;15070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22379:37:0;;22375:399;;22456:5;22437:16;:24;22433:214;;;22489:142;;-1:-1:-1;;;22489:142:0;;-1:-1:-1;;;;;7882:32:1;;22489:142:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;22489:142:0;7662:345:1;22433:214:0;22690:57;22699:5;22706:7;22734:5;22715:16;:24;22741:5;22690:8;:57::i;16892:342::-;-1:-1:-1;;;;;17010:18:0;;17006:88;;17052:30;;-1:-1:-1;;;17052:30:0;;17079:1;17052:30;;;2180:51:1;2153:18;;17052:30:0;2010:227:1;17006:88:0;-1:-1:-1;;;;;17108:16:0;;17104:88;;17148:32;;-1:-1:-1;;;17148:32:0;;17177:1;17148:32;;;2180:51:1;2153:18;;17148:32:0;2010:227:1;17104:88:0;17202:24;17210:4;17216:2;17220:5;17202:7;:24::i;30829:390::-;30904:16;24469:6;-1:-1:-1;;;;;24469:6:0;30945:22;;30941:138;;30984:33;31001:8;31011:5;30984:16;:33::i;:::-;31032:35;31051:8;31061:5;31032:18;:35::i;:::-;31089:32;31106:8;31116:4;31089:16;:32::i;:::-;31132:34;31151:8;31161:4;31132:18;:34::i;:::-;31177;31202:8;31177:24;:34::i;41608:218::-;-1:-1:-1;;;;;41723:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;41723:39:0;;;;;;;;;;41778:40;;7541:51:1;;;7608:18;;;7601:50;41778:40:0;;7514:18:1;41778:40:0;7373:284:1;41456:144:0;-1:-1:-1;;;;;41531:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;41531:22:0;;;;;;;;;;41569:23;;7541:51:1;;;7608:18;;;7601:50;41569:23:0;;7514:18:1;41569:23:0;7373:284:1;41088:173:0;-1:-1:-1;;;;;41171:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;41171:35:0;;;;;;;;;;41222:31;;7541:51:1;;;7608:18;;;7601:50;41222:31:0;;7514:18:1;41222:31:0;7373:284:1;21400:486:0;-1:-1:-1;;;;;21556:19:0;;21552:91;;21599:32;;-1:-1:-1;;;21599:32:0;;21628:1;21599:32;;;2180:51:1;2153:18;;21599:32:0;2010:227:1;21552:91:0;-1:-1:-1;;;;;21657:21:0;;21653:92;;21702:31;;-1:-1:-1;;;21702:31:0;;21730:1;21702:31;;;2180:51:1;2153:18;;21702:31:0;2010:227:1;21653:92:0;-1:-1:-1;;;;;21755:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21801:78;;;;21852:7;-1:-1:-1;;;;;21836:31:0;21845:5;-1:-1:-1;;;;;21836:31:0;;21861:5;21836:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21836:31:0;;;;;;;;21400:486;;;;:::o;36342:3747::-;-1:-1:-1;;;;;36603:11:0;;36472:14;36603:11;;;:5;:11;;;;;;36489:10;;36527:9;;36569:12;;36603:11;;36602:12;36594:36;;;;-1:-1:-1;;;36594:36:0;;;;;;;;;;;;36659:4;-1:-1:-1;;;;;36649:14:0;:6;-1:-1:-1;;;;;36649:14:0;;:32;;;-1:-1:-1;;;;;;36668:13:0;;;;;;:5;:13;;;;;;;;36667:14;36649:32;36641:56;;;;-1:-1:-1;;;36641:56:0;;;;;;;;;;;;36740:4;-1:-1:-1;;;;;36730:14:0;:6;-1:-1:-1;;;;;36730:14:0;;:34;;;;36758:6;-1:-1:-1;;;;;36748:16:0;:6;-1:-1:-1;;;;;36748:16:0;;36730:34;:52;;;-1:-1:-1;;;;;;36769:13:0;;;;;;:5;:13;;;;;;;;36768:14;36730:52;36708:113;;;;-1:-1:-1;;;36708:113:0;;;;;;;;;;;;36856:10;;-1:-1:-1;;;36856:10:0;;;;;:57;;-1:-1:-1;;;;;;36887:26:0;;;;;;:20;:26;;;;;;;;36856:57;:102;;;-1:-1:-1;;;;;;36934:24:0;;;;;;:20;:24;;;;;;;;36856:102;36834:163;;;;-1:-1:-1;;;36834:163:0;;;;;;;;;;;;37024:15;;37010:11;;-1:-1:-1;;;37024:15:0;;;;:43;;;;-1:-1:-1;37057:10:0;;-1:-1:-1;;;37057:10:0;;;;37056:11;37024:43;:117;;;;-1:-1:-1;;;;;;37086:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;37116:24:0;;;;;;:20;:24;;;;;;;;37086:54;37084:57;37024:117;37010:131;;37156:6;37152:1687;;;24442:7;24469:6;-1:-1:-1;;;;;37201:15:0;;;24469:6;;37201:15;;;;:49;;-1:-1:-1;24442:7:0;24469:6;-1:-1:-1;;;;;37237:13:0;;;24469:6;;37237:13;;37201:49;:88;;;;-1:-1:-1;;;;;;37271:18:0;;;;37201:88;:127;;;;-1:-1:-1;;;;;;37310:18:0;;26626:6;37310:18;;37201:127;37179:1649;;;37367:17;;-1:-1:-1;;;37367:17:0;;;;37363:643;;;37427:15;-1:-1:-1;;;;;37413:30:0;:2;-1:-1:-1;;;;;37413:30:0;;;:53;;;;;37453:13;-1:-1:-1;;;;;37447:19:0;:2;-1:-1:-1;;;;;37447:19:0;;;37413:53;37409:578;;;37605:15;37619:1;37605:11;:15;:::i;:::-;-1:-1:-1;;;;;37533:36:0;;;;;;:28;:36;;;;;;:87;:207;;;;-1:-1:-1;37725:15:0;37739:1;37725:11;:15;:::i;:::-;-1:-1:-1;;;;;37657:32:0;;;;;;:28;:32;;;;;;:83;37533:207;37495:318;;;;-1:-1:-1;;;37495:318:0;;;;;;;;;;;;-1:-1:-1;;;;;37840:36:0;;;;;;;:28;:36;;;;;;:50;;;37917:32;;;;;;:46;;;37409:578;-1:-1:-1;;;;;38052:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;38088:24:0;;;;;;:20;:24;;;;;;;;38087:25;38052:60;38026:787;;;38173:6;;38163;:16;;38155:47;;;;-1:-1:-1;;;38155:47:0;;;;;;;;;;;;38285:9;;-1:-1:-1;;;;;14446:18:0;;14419:7;14446:18;;;:9;:18;;;;;;38259:22;;:6;:22;:::i;:::-;:35;;38225:142;;;;-1:-1:-1;;;38225:142:0;;;;;;;;;;;;38026:787;;;-1:-1:-1;;;;;38419:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;38453:26:0;;;;;;:20;:26;;;;;;;;38452:27;38419:60;38393:420;;;38540:7;;38530:6;:17;;38522:49;;;;-1:-1:-1;;;38522:49:0;;;;;;;;;;;38393:420;-1:-1:-1;;;;;38602:24:0;;;;;;:20;:24;;;;;;;;38597:216;;38711:9;;-1:-1:-1;;;;;14446:18:0;;14419:7;14446:18;;;:9;:18;;;;;;38685:22;;:6;:22;:::i;:::-;:35;;38651:142;;;;-1:-1:-1;;;38651:142:0;;;;;;;;;;;;38866:12;;38851;;-1:-1:-1;;;38866:12:0;;;;:40;;;;-1:-1:-1;38896:10:0;;-1:-1:-1;;;38896:10:0;;;;38895:11;38866:40;:110;;;;-1:-1:-1;;;;;;38925:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;38953:22:0;;;;;;:18;:22;;;;;;;;38925:50;38923:53;38866:110;38851:125;;38993:7;38989:679;;;-1:-1:-1;;;;;39052:29:0;;39017:12;39052:29;;;:25;:29;;;;;;;;:44;;;;;39095:1;39085:7;;:11;39052:44;39048:471;;;39145:3;39134:7;;39125:6;:16;;;;:::i;:::-;39124:24;;;;:::i;:::-;39117:31;;39048:471;;;-1:-1:-1;;;;;39174:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;39218:1;39209:6;;:10;39174:45;39170:349;;;39267:3;39257:6;;39248;:15;;;;:::i;39170:349::-;-1:-1:-1;;;;;39315:29:0;;;;;;:25;:29;;;;;;;;39314:30;:83;;;;-1:-1:-1;;;;;;39366:31:0;;;;;;:25;:31;;;;;;;;39365:32;39314:83;:119;;;;;39432:1;39418:11;;:15;39314:119;39292:227;;;39500:3;39485:11;;39476:6;:20;;;;:::i;:::-;39475:28;;;;:::i;:::-;39468:35;;39292:227;39539:8;;39535:122;;39568:14;39578:4;39568:14;;:::i;:::-;;;39601:40;39615:4;39629;39636;39601:13;:40::i;:::-;39002:666;38989:679;39716:4;39680:15;14446:18;;;:9;:18;;;;;;39762;;39751:29;;;39795:7;:43;;;;-1:-1:-1;;;;;;39807:31:0;;;;;;:25;:31;;;;;;;;39806:32;39795:43;:57;;;;;39842:10;39795:57;39791:247;;;39887:26;;39873:11;:40;39869:158;;;39934:18;39944:7;39934:9;:18::i;:::-;39971:26;:40;;;39869:158;40050:31;40064:4;40070:2;40074:6;40050:13;:31::i;:::-;36461:3628;;;;;;;36342:3747;;;:::o;25709:191::-;25783:16;25802:6;;-1:-1:-1;;;;;25819:17:0;;;-1:-1:-1;;;;;;25819:17:0;;;;;;25852:40;;25802:6;;;;;;;25852:40;;25783:16;25852:40;25772:128;25709:191;:::o;17558:1169::-;-1:-1:-1;;;;;17682:18:0;;17678:552;;17836:5;17820:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17678:552:0;;-1:-1:-1;17678:552:0;;-1:-1:-1;;;;;17896:15:0;;17874:19;17896:15;;;:9;:15;;;;;;17930:19;;;17926:117;;;17977:50;;-1:-1:-1;;;17977:50:0;;-1:-1:-1;;;;;7882:32:1;;17977:50:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;17977:50:0;7662:345:1;17926:117:0;-1:-1:-1;;;;;18166:15:0;;;;;;:9;:15;;;;;18184:19;;;;18166:37;;17678:552;-1:-1:-1;;;;;18246:16:0;;18242:435;;18412:12;:21;;;;;;;18242:435;;;-1:-1:-1;;;;;18628:13:0;;;;;;:9;:13;;;;;:22;;;;;;18242:435;18709:2;-1:-1:-1;;;;;18694:25:0;18703:4;-1:-1:-1;;;;;18694:25:0;;18713:5;18694:25;;;;2388::1;;2376:2;2361:18;;2242:177;18694:25:0;;;;;;;;17558:1169;;;:::o;40097:983::-;29060:10;:17;;-1:-1:-1;;;;29060:17:0;-1:-1:-1;;;29060:17:0;;;40221:16:::1;::::0;;40235:1:::1;40221:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;40221:16:0;40235:1;40221:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40221:16:0::1;40197:40;;40266:4;40248;40253:1;40248:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;40248:23:0::1;;;-1:-1:-1::0;;;;;40248:23:0::1;;;::::0;::::1;40292:15;-1:-1:-1::0;;;;;40292:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40282:4;40287:1;40282:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;40282:32:0::1;;;-1:-1:-1::0;;;;;40282:32:0::1;;;::::0;::::1;40327:21;40351:18;;40372:2;40351:23;;;;:::i;:::-;40327:47;;40401:13;40391:7;:23;40387:79;;;40441:13;40431:23;;40387:79;40478:192;::::0;-1:-1:-1;;;40478:192:0;;-1:-1:-1;;;;;40478:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;40559:7;;40581:1:::1;::::0;40597:4;;40624::::1;::::0;40644:15:::1;::::0;40478:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;40704:21:0::1;::::0;-1:-1:-1;40683:18:0::1;::::0;-1:-1:-1;40766:14:0::1;::::0;-1:-1:-1;40779:1:0::1;40704:21:::0;40766:14:::1;:::i;:::-;40738:42:::0;-1:-1:-1;40793:24:0::1;40820:30;40738:42:::0;40820:10;:30:::1;:::i;:::-;40885:16;::::0;40877:83:::1;::::0;40793:57;;-1:-1:-1;;;;;;40885:16:0::1;::::0;40793:57;;40877:83:::1;::::0;;;40793:57;40885:16;40877:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;40995:17:0::1;::::0;40987:85:::1;::::0;40863:97;;-1:-1:-1;;;;;;40995:17:0::1;::::0;41026;;40987:85:::1;::::0;;;41026:17;40995;40987:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29100:10:0;:18;;-1:-1:-1;;;;29100:18:0;;;-1:-1:-1;;;;;;;;40097:983:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;3126:247::-;3185:6;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3293:9;3280:23;3312:31;3337:5;3312:31;:::i;:::-;3362:5;3126:247;-1:-1:-1;;;3126:247:1:o;3378:241::-;3434:6;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3542:9;3529:23;3561:28;3583:5;3561:28;:::i;3832:226::-;3891:6;3944:2;3932:9;3923:7;3919:23;3915:32;3912:52;;;3960:1;3957;3950:12;3912:52;-1:-1:-1;4005:23:1;;3832:226;-1:-1:-1;3832:226:1:o;4063:382::-;4128:6;4136;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:31;4288:5;4263:31;:::i;:::-;4313:5;-1:-1:-1;4370:2:1;4355:18;;4342:32;4383:30;4342:32;4383:30;:::i;:::-;4432:7;4422:17;;;4063:382;;;;;:::o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5360:127;5421:10;5416:3;5412:20;5409:1;5402:31;5452:4;5449:1;5442:15;5476:4;5473:1;5466:15;5492:168;5565:9;;;5596;;5613:15;;;5607:22;;5593:37;5583:71;;5634:18;;:::i;5665:217::-;5705:1;5731;5721:132;;5775:10;5770:3;5766:20;5763:1;5756:31;5810:4;5807:1;5800:15;5838:4;5835:1;5828:15;5721:132;-1:-1:-1;5867:9:1;;5665:217::o;6655:184::-;6725:6;6778:2;6766:9;6757:7;6753:23;6749:32;6746:52;;;6794:1;6791;6784:12;6746:52;-1:-1:-1;6817:16:1;;6655:184;-1:-1:-1;6655:184:1:o;7123:245::-;7190:6;7243:2;7231:9;7222:7;7218:23;7214:32;7211:52;;;7259:1;7256;7249:12;7211:52;7291:9;7285:16;7310:28;7332:5;7310:28;:::i;8012:128::-;8079:9;;;8100:11;;;8097:37;;;8114:18;;:::i;8145:125::-;8210:9;;;8231:10;;;8228:36;;;8244:18;;:::i;8407:251::-;8477:6;8530:2;8518:9;8509:7;8505:23;8501:32;8498:52;;;8546:1;8543;8536:12;8498:52;8578:9;8572:16;8597:31;8622:5;8597:31;:::i;8663:959::-;8925:4;8973:3;8962:9;8958:19;9004:6;8993:9;8986:25;9047:6;9042:2;9031:9;9027:18;9020:34;9090:3;9085:2;9074:9;9070:18;9063:31;9114:6;9149;9143:13;9180:6;9172;9165:22;9218:3;9207:9;9203:19;9196:26;;9257:2;9249:6;9245:15;9231:29;;9278:1;9288:195;9302:6;9299:1;9296:13;9288:195;;;9367:13;;-1:-1:-1;;;;;9363:39:1;9351:52;;9432:2;9458:15;;;;9423:12;;;;9399:1;9317:9;9288:195;;;-1:-1:-1;;;;;;;9539:32:1;;;;9534:2;9519:18;;9512:60;-1:-1:-1;;9603:3:1;9588:19;9581:35;9500:3;8663:959;-1:-1:-1;;;8663:959:1:o
Swarm Source
ipfs://a710fa39fe9ce13821b55419ae0f146b6411cdce0ad44635ff14db32d6e26df4
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.