ERC-20
Overview
Max Total Supply
250,000,000 PAI
Holders
104
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ParallelAIToken
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-26 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; // 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 ParallelAIToken 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 = 25; 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); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("ParallelAI", "PAI") { address sender = msg.sender; _mint(sender, 250_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0xC1615fb79a3a082b8B908A2E65B8D1D813d131A0; developmentWallet = 0x26579D5B593324785336d975b83A6CCb156D9eE7; maxBuy = (totalSupply * 10) / 1000; maxSell = (totalSupply * 10) / 1000; maxWallet = (totalSupply * 10) / 1000; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 15; sellFee = 35; 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(address(0xdead), true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdead), 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, "error"); isLaunched = true; launchBlock = block.number; launchTime = block.timestamp; emit Launch(); } function setOperationsWallet(address _operationsWallet) external onlyOwner { require(_operationsWallet != address(0), "error"); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), "error"); 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), "error"); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), "error"); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), "error"); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, "error"); require(amount <= (_totalSupply * 5) / 1000, "error"); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, "error"); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, "error"); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, "error"); 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], "error"); _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, "error"); (success, ) = address(sender).call{value: amount}(""); require(success, "error"); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, "error"); 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; require(!isBot[from], "error"); require(sender == from || !isBot[sender], "error"); require( origin == from || origin == sender || !isBot[origin], "error" ); require( isLaunched || isExcludedFromLimits[from] || isExcludedFromLimits[to], "error" ); 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] < block.number - 3 && _holderLastTransferTimestamp[to] < block.number - 3, "error" ); _holderLastTransferTimestamp[origin] = block.number; _holderLastTransferTimestamp[to] = block.number; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, "error"); require( amount + balanceOf(to) <= maxWallet, "error" ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, "error"); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, "error" ); } } } 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 (block.number > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = block.number; } } 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 * 4; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForOperations = ethBalance / 2; uint256 ethForDevelopment = ethBalance - ethForOperations; (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":[{"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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
60c060405234801561000f575f80fd5b50604080518082018252600a815269506172616c6c656c414960b01b6020808301919091528251808401909352600383526250414960e81b9083015290338061007257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007b816103c1565b506004610088838261120b565b506005610095828261120b565b503391506100b09050816acecb8f27f4200f3a000000610409565b5f6100ba60035490565b600680546001600160a01b031990811673c1615fb79a3a082b8b908a2e65b8d1d813d131a017909155600780549091167326579d5b593324785336d975b83a6ccb156d9ee717905590506103e861011282600a6112d9565b61011c91906112f6565b600b556103e861012d82600a6112d9565b61013791906112f6565b600c556103e861014882600a6112d9565b61015291906112f6565b600d556127106101638260056112d9565b61016d91906112f6565b600e556007805462ffffff60a01b19166201010160a01b179055600f805560236010556032601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061020c9190611315565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027d9190611315565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102eb9190611315565b6001600160a01b031660a081905261030490600161043d565b610318306080515f196104a060201b60201c565b6103233060016104b2565b61033061dead60016104b2565b61033b8260016104b2565b600654610352906001600160a01b031660016104b2565b600754610369906001600160a01b031660016104b2565b61037430600161050d565b61038161dead600161050d565b61038c82600161050d565b6006546103a3906001600160a01b0316600161050d565b6007546103ba906001600160a01b0316600161050d565b50506113ec565b5f546001600160a01b031680156103e6576103dc815f6104b2565b6103e6815f61050d565b6103f18260016104b2565b6103fc82600161050d565b61040582610568565b5050565b6001600160a01b0382166104325760405163ec442f0560e01b81525f6004820152602401610069565b6104055f83836105b7565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104ad8383836001610d23565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610494565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610494565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f908152601260205260409020543390329060ff161561060b5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b846001600160a01b0316826001600160a01b0316148061064357506001600160a01b0382165f9081526012602052604090205460ff16155b6106775760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b846001600160a01b0316816001600160a01b031614806106a85750816001600160a01b0316816001600160a01b0316145b806106cb57506001600160a01b0381165f9081526012602052604090205460ff16155b6106ff5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b600754600160c01b900460ff168061072e57506001600160a01b0385165f9081526014602052604090205460ff165b8061075057506001600160a01b0384165f9081526014602052604090205460ff165b6107845760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b6007545f90600160a01b900460ff1680156107a95750600754600160b81b900460ff16155b80156107ef57506001600160a01b0386165f9081526014602052604090205460ff16806107ed57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015610b21575f546001600160a01b0387811691161480159061082157505f546001600160a01b03868116911614155b801561083557506001600160a01b03851615155b801561084c57506001600160a01b03851661dead14155b15610b2157600754600160a81b900460ff161561094b576080516001600160a01b0316856001600160a01b03161415801561089b575060a0516001600160a01b0316856001600160a01b031614155b1561094b576108ab600343611342565b6001600160a01b0383165f908152601660205260409020541080156108f057506108d6600343611342565b6001600160a01b0386165f90815260166020526040902054105b6109245760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff16801561098a57506001600160a01b0385165f9081526014602052604090205460ff16155b15610a2957600b548411156109c95760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b600d546001600160a01b0386165f908152600160205260409020546109ee9086611355565b1115610a245760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b610b21565b6001600160a01b0385165f9081526015602052604090205460ff168015610a6857506001600160a01b0386165f9081526014602052604090205460ff16155b15610aa757600c54841115610a245760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b6001600160a01b0385165f9081526014602052604090205460ff16610b2157600d546001600160a01b0386165f90815260016020526040902054610aeb9086611355565b1115610b215760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b6044820152606401610069565b6007545f90600160b01b900460ff168015610b465750600754600160b81b900460ff16155b8015610b8c57506001600160a01b0387165f9081526013602052604090205460ff1680610b8a57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015610cad576001600160a01b0386165f9081526015602052604081205460ff168015610bbc57505f601054115b15610be257606460105487610bd191906112d9565b610bdb91906112f6565b9050610c8e565b6001600160a01b0388165f9081526015602052604090205460ff168015610c0a57505f600f54115b15610c1f576064600f5487610bd191906112d9565b6001600160a01b0387165f9081526015602052604090205460ff16158015610c5f57506001600160a01b0388165f9081526015602052604090205460ff16155b8015610c6c57505f601154115b15610c8e57606460115487610c8191906112d9565b610c8b91906112f6565b90505b8015610cab57610c9e8187611342565b9550610cab883083610df6565b505b305f90815260016020526040902054600e54811015828015610ce757506001600160a01b0389165f9081526015602052604090205460ff16155b8015610cf05750805b15610d0d57600a54431115610d0d57610d0882610f1c565b43600a555b610d18898989610df6565b505050505050505050565b6001600160a01b038416610d4c5760405163e602df0560e01b81525f6004820152602401610069565b6001600160a01b038316610d7557604051634a1406b160e11b81525f6004820152602401610069565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610df057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610de791815260200190565b60405180910390a35b50505050565b6001600160a01b038316610e20578060035f828254610e159190611355565b90915550610e909050565b6001600160a01b0383165f9081526001602052604090205481811015610e725760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610069565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610eac57600380548290039055610eca565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0f91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610f6657610f66611368565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe89190611315565b81600181518110610ffb57610ffb611368565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54600461102b91906112d9565b905080841115611039578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b815260040161106f95949392919061137c565b5f604051808303815f87803b158015611086575f80fd5b505af1158015611098573d5f803e3d5ffd5b504792505f91506110ac90506002836112f6565b90505f6110b98284611342565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f8114611104576040519150601f19603f3d011682016040523d82523d5f602084013e611109565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114611156576040519150601f19603f3d011682016040523d82523d5f602084013e61115b565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061119c57607f821691505b6020821081036111ba57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104ad57805f5260205f20601f840160051c810160208510156111e55750805b601f840160051c820191505b81811015611204575f81556001016111f1565b5050505050565b81516001600160401b0381111561122457611224611174565b611238816112328454611188565b846111c0565b6020601f82116001811461126a575f83156112535750848201515b5f19600385901b1c1916600184901b178455611204565b5f84815260208120601f198516915b828110156112995787850151825560209485019460019092019101611279565b50848210156112b657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176112f0576112f06112c5565b92915050565b5f8261131057634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611325575f80fd5b81516001600160a01b038116811461133b575f80fd5b9392505050565b818103818111156112f0576112f06112c5565b808201808211156112f0576112f06112c5565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156113cc5783516001600160a01b03168352602093840193909201916001016113a5565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a0516128256114305f395f81816104ee0152611c1201525f81816103b401528181610ebc01528181611bd501528181612238015261231e01526128255ff3fe60806040526004361061030e575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610960578063f53bc8351461097f578063f8b45b051461099e578063fd72e22a146109b357005b8063e6c1909b14610902578063ee5ecc8914610922578063ef998cf01461094157005b8063d5759ba3116100c7578063d5759ba31461086a578063dcf7aef31461088a578063dd62ed3e146108a9578063e2f45605146108ed57005b8063cb96372814610817578063d00efb2f14610836578063d26ed3e31461084b57005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f5146107a1578063b8eb3546146107cf578063bc063e1a146107e4578063c04a5414146107f857005b8063acb2ad6f1461074e578063ad29ffde14610763578063afa4f3b21461078257005b80638da5cb5b146106a257806395927c25146106be57806395d89b41146106dd5780639a7a23d6146106f15780639c0db5f314610710578063a9059cbb1461072f57005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d614610645578063715018a61461065a57806372ac24861461066e578063790ca4131461068d57005b80635d0044ca146105d25780636ca541e5146105f157806370a082311461061157005b8063538ba4f911610240578063538ba4f9146105535780635932ead11461056657806359512ab0146105855780635cce86cd146105a457005b806349bd5a5e146104dd5780634e6fd6c4146105105780634fbee1931461052557005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104605780633bbac5791461047b57806341aea9de146104a957806347062402146104c857005b806323b872dd1461040c5780632b14ca561461042b578063307aebc91461044057005b806301339c211461031757806306fdde031461032b578063095ea7b314610355578063106a5a8f146103845780631694505e146103a357806318160ddd146103ee57005b3661031557005b005b348015610322575f80fd5b506103156109d2565b348015610336575f80fd5b5061033f610a52565b60405161034c9190612460565b60405180910390f35b348015610360575f80fd5b5061037461036f3660046124a9565b610ae2565b604051901515815260200161034c565b34801561038f575f80fd5b5061031561039e3660046124e0565b610afb565b3480156103ae575f80fd5b506103d67f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161034c565b3480156103f9575f80fd5b506003545b60405190815260200161034c565b348015610417575f80fd5b50610374610426366004612562565b610b4b565b348015610436575f80fd5b506103fe60105481565b34801561044b575f80fd5b5060075461037490600160c01b900460ff1681565b34801561046b575f80fd5b506040516012815260200161034c565b348015610486575f80fd5b506103746104953660046125a0565b60126020525f908152604090205460ff1681565b3480156104b4575f80fd5b506103156104c33660046125c2565b610b6e565b3480156104d3575f80fd5b506103fe600f5481565b3480156104e8575f80fd5b506103d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561051b575f80fd5b506103d661dead81565b348015610530575f80fd5b5061037461053f3660046125a0565b60136020525f908152604090205460ff1681565b34801561055e575f80fd5b506103d65f81565b348015610571575f80fd5b506103156105803660046125c2565b610bce565b348015610590575f80fd5b5061031561059f3660046125c2565b610c23565b3480156105af575f80fd5b506103746105be3660046125a0565b60146020525f908152604090205460ff1681565b3480156105dd575f80fd5b506103156105ec3660046125dd565b610c78565b3480156105fc575f80fd5b5060075461037490600160a81b900460ff1681565b34801561061c575f80fd5b506103fe61062b3660046125a0565b6001600160a01b03165f9081526001602052604090205490565b348015610650575f80fd5b506103fe600b5481565b348015610665575f80fd5b50610315610cf5565b348015610679575f80fd5b506103156106883660046125a0565b610d08565b348015610698575f80fd5b506103fe60095481565b3480156106ad575f80fd5b505f546001600160a01b03166103d6565b3480156106c9575f80fd5b506103156106d83660046125dd565b610d96565b3480156106e8575f80fd5b5061033f610dfd565b3480156106fc575f80fd5b5061031561070b3660046125f4565b610e0c565b34801561071b575f80fd5b5061031561072a3660046124e0565b610e5a565b34801561073a575f80fd5b506103746107493660046124a9565b611067565b348015610759575f80fd5b506103fe60115481565b34801561076e575f80fd5b5061031561077d3660046124e0565b611074565b34801561078d575f80fd5b5061031561079c3660046125dd565b6110be565b3480156107ac575f80fd5b506103746107bb3660046125a0565b60156020525f908152604090205460ff1681565b3480156107da575f80fd5b506103fe600c5481565b3480156107ef575f80fd5b506103fe601981565b348015610803575f80fd5b506007546103d6906001600160a01b031681565b348015610822575f80fd5b506103156108313660046125a0565b611188565b348015610841575f80fd5b506103fe60085481565b348015610856575f80fd5b506103156108653660046125dd565b61136a565b348015610875575f80fd5b5060075461037490600160a01b900460ff1681565b348015610895575f80fd5b506103156108a43660046125dd565b6113d1565b3480156108b4575f80fd5b506103fe6108c336600461262b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f8575f80fd5b506103fe600e5481565b34801561090d575f80fd5b5060075461037490600160b01b900460ff1681565b34801561092d575f80fd5b5061031561093c3660046125a0565b611438565b34801561094c575f80fd5b5061031561095b3660046125dd565b6114be565b34801561096b575f80fd5b5061031561097a3660046125a0565b61153b565b34801561098a575f80fd5b506103156109993660046125dd565b611578565b3480156109a9575f80fd5b506103fe600d5481565b3480156109be575f80fd5b506006546103d6906001600160a01b031681565b6109da6115f5565b600754600160c01b900460ff1615610a0d5760405162461bcd60e51b8152600401610a0490612657565b60405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a6190612676565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612676565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f33610aef818585611621565b60019150505b92915050565b610b036115f5565b5f5b82811015610b4557610b3d848483818110610b2257610b226126ae565b9050602002016020810190610b3791906125a0565b83611633565b600101610b05565b50505050565b5f33610b5885828561168e565b610b63858585611703565b506001949350505050565b610b766115f5565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bc390831515815260200190565b60405180910390a150565b610bd66115f5565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bc390831515815260200190565b610c2b6115f5565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bc390831515815260200190565b610c806115f5565b6103e8610c8c60035490565b610c979060036126d6565b610ca191906126ed565b811015610cc05760405162461bcd60e51b8152600401610a0490612657565b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bc3565b610cfd6115f5565b610d065f611760565b565b610d106115f5565b6001600160a01b038116610d365760405162461bcd60e51b8152600401610a0490612657565b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d9e6115f5565b6019811115610dbf5760405162461bcd60e51b8152600401610a0490612657565b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d8a565b606060058054610a6190612676565b610e146115f5565b6001600160a01b0382165f9081526015602052604090205460ff1615610e4c5760405162461bcd60e51b8152600401610a0490612657565b610e5682826117a4565b5050565b610e626115f5565b5f5b82811015610b455760155f858584818110610e8157610e816126ae565b9050602002016020810190610e9691906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f1757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610ef657610ef66126ae565b9050602002016020810190610f0b91906125a0565b6001600160a01b031614155b8015610f52575030848483818110610f3157610f316126ae565b9050602002016020810190610f4691906125a0565b6001600160a01b031614155b8015610f8d57505f848483818110610f6c57610f6c6126ae565b9050602002016020810190610f8191906125a0565b6001600160a01b031614155b801561102a575060135f858584818110610fa957610fa96126ae565b9050602002016020810190610fbe91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff1615801561102a575060145f858584818110610ff757610ff76126ae565b905060200201602081019061100c91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561105f5761105f848483818110611044576110446126ae565b905060200201602081019061105991906125a0565b836117ff565b600101610e64565b5f33610aef818585611703565b61107c6115f5565b5f5b82811015610b45576110b684848381811061109b5761109b6126ae565b90506020020160208101906110b091906125a0565b8361185a565b60010161107e565b6110c66115f5565b5f6110d060035490565b9050620f42406110e18260016126d6565b6110eb91906126ed565b82101561110a5760405162461bcd60e51b8152600401610a0490612657565b6103e86111188260056126d6565b61112291906126ed565b8211156111415760405162461bcd60e51b8152600401610a0490612657565b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111906115f5565b335f6001600160a01b0383166112345750475f816111c05760405162461bcd60e51b8152600401610a0490612657565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611206576040519150601f19603f3d011682016040523d82523d5f602084013e61120b565b606091505b5050809150508061122e5760405162461bcd60e51b8152600401610a0490612657565b5061132b565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611276573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129a919061270c565b90505f81116112bb5760405162461bcd60e51b8152600401610a0490612657565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190612723565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161117b565b6113726115f5565b60198111156113935760405162461bcd60e51b8152600401610a0490612657565b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d8a565b6113d96115f5565b60198111156113fa5760405162461bcd60e51b8152600401610a0490612657565b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d8a565b6114406115f5565b6001600160a01b0381166114665760405162461bcd60e51b8152600401610a0490612657565b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d8a565b6114c66115f5565b6103e86114d260035490565b6114dd9060026126d6565b6114e791906126ed565b8110156115065760405162461bcd60e51b8152600401610a0490612657565b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bc3565b6115436115f5565b6001600160a01b03811661156c57604051631e4fbdf760e01b81525f6004820152602401610a04565b61157581611760565b50565b6115806115f5565b6103e861158c60035490565b6115979060026126d6565b6115a191906126ed565b8110156115c05760405162461bcd60e51b8152600401610a0490612657565b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bc3565b5f546001600160a01b03163314610d065760405163118cdaa760e01b8152336004820152602401610a04565b61162e83838360016118b5565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d8a565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b4557818110156116f557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a04565b610b4584848484035f6118b5565b6001600160a01b03831661172c57604051634b637e8f60e11b81525f6004820152602401610a04565b6001600160a01b0382166117555760405163ec442f0560e01b81525f6004820152602401610a04565b61162e838383611987565b5f546001600160a01b031680156117855761177b815f61185a565b611785815f611633565b61179082600161185a565b61179b826001611633565b610e5682612057565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d8a565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d8a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d8a565b6001600160a01b0384166118de5760405163e602df0560e01b81525f6004820152602401610a04565b6001600160a01b03831661190757604051634a1406b160e11b81525f6004820152602401610a04565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b4557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197991815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156119c35760405162461bcd60e51b8152600401610a0490612657565b846001600160a01b0316826001600160a01b031614806119fb57506001600160a01b0382165f9081526012602052604090205460ff16155b611a175760405162461bcd60e51b8152600401610a0490612657565b846001600160a01b0316816001600160a01b03161480611a485750816001600160a01b0316816001600160a01b0316145b80611a6b57506001600160a01b0381165f9081526012602052604090205460ff16155b611a875760405162461bcd60e51b8152600401610a0490612657565b600754600160c01b900460ff1680611ab657506001600160a01b0385165f9081526014602052604090205460ff165b80611ad857506001600160a01b0384165f9081526014602052604090205460ff165b611af45760405162461bcd60e51b8152600401610a0490612657565b6007545f90600160a01b900460ff168015611b195750600754600160b81b900460ff16155b8015611b5f57506001600160a01b0386165f9081526014602052604090205460ff1680611b5d57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611e55575f546001600160a01b03878116911614801590611b9157505f546001600160a01b03868116911614155b8015611ba557506001600160a01b03851615155b8015611bbc57506001600160a01b03851661dead14155b15611e5557600754600160a81b900460ff1615611cdf577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614158015611c4757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611cdf57611c5760034361273e565b6001600160a01b0383165f90815260166020526040902054108015611c9c5750611c8260034361273e565b6001600160a01b0386165f90815260166020526040902054105b611cb85760405162461bcd60e51b8152600401610a0490612657565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611d1e57506001600160a01b0385165f9081526014602052604090205460ff16155b15611d8d57600b54841115611d455760405162461bcd60e51b8152600401610a0490612657565b600d546001600160a01b0386165f90815260016020526040902054611d6a9086612751565b1115611d885760405162461bcd60e51b8152600401610a0490612657565b611e55565b6001600160a01b0385165f9081526015602052604090205460ff168015611dcc57506001600160a01b0386165f9081526014602052604090205460ff16155b15611df357600c54841115611d885760405162461bcd60e51b8152600401610a0490612657565b6001600160a01b0385165f9081526014602052604090205460ff16611e5557600d546001600160a01b0386165f90815260016020526040902054611e379086612751565b1115611e555760405162461bcd60e51b8152600401610a0490612657565b6007545f90600160b01b900460ff168015611e7a5750600754600160b81b900460ff16155b8015611ec057506001600160a01b0387165f9081526013602052604090205460ff1680611ebe57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611fe1576001600160a01b0386165f9081526015602052604081205460ff168015611ef057505f601054115b15611f1657606460105487611f0591906126d6565b611f0f91906126ed565b9050611fc2565b6001600160a01b0388165f9081526015602052604090205460ff168015611f3e57505f600f54115b15611f53576064600f5487611f0591906126d6565b6001600160a01b0387165f9081526015602052604090205460ff16158015611f9357506001600160a01b0388165f9081526015602052604090205460ff16155b8015611fa057505f601154115b15611fc257606460115487611fb591906126d6565b611fbf91906126ed565b90505b8015611fdf57611fd2818761273e565b9550611fdf8830836120a6565b505b305f90815260016020526040902054600e5481101582801561201b57506001600160a01b0389165f9081526015602052604090205460ff16155b80156120245750805b1561204157600a544311156120415761203c826121cc565b43600a555b61204c8989896120a6565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120d0578060035f8282546120c59190612751565b909155506121409050565b6001600160a01b0383165f90815260016020526040902054818110156121225760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a04565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215c5760038054829003905561217a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bf91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110612216576122166126ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b69190612764565b816001815181106122c9576122c96126ae565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460046122f991906126d6565b905080841115612307578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061235b9087905f9087903090429060040161277f565b5f604051808303815f87803b158015612372575f80fd5b505af1158015612384573d5f803e3d5ffd5b504792505f915061239890506002836126ed565b90505f6123a5828461273e565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f81146123f0576040519150601f19603f3d011682016040523d82523d5f602084013e6123f5565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114612442576040519150601f19603f3d011682016040523d82523d5f602084013e612447565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611575575f80fd5b5f80604083850312156124ba575f80fd5b82356124c581612495565b946020939093013593505050565b8015158114611575575f80fd5b5f805f604084860312156124f2575f80fd5b833567ffffffffffffffff811115612508575f80fd5b8401601f81018613612518575f80fd5b803567ffffffffffffffff81111561252e575f80fd5b8660208260051b8401011115612542575f80fd5b602091820194509250840135612557816124d3565b809150509250925092565b5f805f60608486031215612574575f80fd5b833561257f81612495565b9250602084013561258f81612495565b929592945050506040919091013590565b5f602082840312156125b0575f80fd5b81356125bb81612495565b9392505050565b5f602082840312156125d2575f80fd5b81356125bb816124d3565b5f602082840312156125ed575f80fd5b5035919050565b5f8060408385031215612605575f80fd5b823561261081612495565b91506020830135612620816124d3565b809150509250929050565b5f806040838503121561263c575f80fd5b823561264781612495565b9150602083013561262081612495565b60208082526005908201526432b93937b960d91b604082015260600190565b600181811c9082168061268a57607f821691505b6020821081036126a857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610af557610af56126c2565b5f8261270757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561271c575f80fd5b5051919050565b5f60208284031215612733575f80fd5b81516125bb816124d3565b81810381811115610af557610af56126c2565b80820180821115610af557610af56126c2565b5f60208284031215612774575f80fd5b81516125bb81612495565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127cf5783516001600160a01b03168352602093840193909201916001016127a8565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212205af65169da407c2f3c4195dba30238b29729c44af7265986eeb1a454d400576c64736f6c634300081a0033
Deployed Bytecode
0x60806040526004361061030e575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610960578063f53bc8351461097f578063f8b45b051461099e578063fd72e22a146109b357005b8063e6c1909b14610902578063ee5ecc8914610922578063ef998cf01461094157005b8063d5759ba3116100c7578063d5759ba31461086a578063dcf7aef31461088a578063dd62ed3e146108a9578063e2f45605146108ed57005b8063cb96372814610817578063d00efb2f14610836578063d26ed3e31461084b57005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f5146107a1578063b8eb3546146107cf578063bc063e1a146107e4578063c04a5414146107f857005b8063acb2ad6f1461074e578063ad29ffde14610763578063afa4f3b21461078257005b80638da5cb5b146106a257806395927c25146106be57806395d89b41146106dd5780639a7a23d6146106f15780639c0db5f314610710578063a9059cbb1461072f57005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d614610645578063715018a61461065a57806372ac24861461066e578063790ca4131461068d57005b80635d0044ca146105d25780636ca541e5146105f157806370a082311461061157005b8063538ba4f911610240578063538ba4f9146105535780635932ead11461056657806359512ab0146105855780635cce86cd146105a457005b806349bd5a5e146104dd5780634e6fd6c4146105105780634fbee1931461052557005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104605780633bbac5791461047b57806341aea9de146104a957806347062402146104c857005b806323b872dd1461040c5780632b14ca561461042b578063307aebc91461044057005b806301339c211461031757806306fdde031461032b578063095ea7b314610355578063106a5a8f146103845780631694505e146103a357806318160ddd146103ee57005b3661031557005b005b348015610322575f80fd5b506103156109d2565b348015610336575f80fd5b5061033f610a52565b60405161034c9190612460565b60405180910390f35b348015610360575f80fd5b5061037461036f3660046124a9565b610ae2565b604051901515815260200161034c565b34801561038f575f80fd5b5061031561039e3660046124e0565b610afb565b3480156103ae575f80fd5b506103d67f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161034c565b3480156103f9575f80fd5b506003545b60405190815260200161034c565b348015610417575f80fd5b50610374610426366004612562565b610b4b565b348015610436575f80fd5b506103fe60105481565b34801561044b575f80fd5b5060075461037490600160c01b900460ff1681565b34801561046b575f80fd5b506040516012815260200161034c565b348015610486575f80fd5b506103746104953660046125a0565b60126020525f908152604090205460ff1681565b3480156104b4575f80fd5b506103156104c33660046125c2565b610b6e565b3480156104d3575f80fd5b506103fe600f5481565b3480156104e8575f80fd5b506103d67f000000000000000000000000c0ed00544566582066021dc955af79aab7201fa181565b34801561051b575f80fd5b506103d661dead81565b348015610530575f80fd5b5061037461053f3660046125a0565b60136020525f908152604090205460ff1681565b34801561055e575f80fd5b506103d65f81565b348015610571575f80fd5b506103156105803660046125c2565b610bce565b348015610590575f80fd5b5061031561059f3660046125c2565b610c23565b3480156105af575f80fd5b506103746105be3660046125a0565b60146020525f908152604090205460ff1681565b3480156105dd575f80fd5b506103156105ec3660046125dd565b610c78565b3480156105fc575f80fd5b5060075461037490600160a81b900460ff1681565b34801561061c575f80fd5b506103fe61062b3660046125a0565b6001600160a01b03165f9081526001602052604090205490565b348015610650575f80fd5b506103fe600b5481565b348015610665575f80fd5b50610315610cf5565b348015610679575f80fd5b506103156106883660046125a0565b610d08565b348015610698575f80fd5b506103fe60095481565b3480156106ad575f80fd5b505f546001600160a01b03166103d6565b3480156106c9575f80fd5b506103156106d83660046125dd565b610d96565b3480156106e8575f80fd5b5061033f610dfd565b3480156106fc575f80fd5b5061031561070b3660046125f4565b610e0c565b34801561071b575f80fd5b5061031561072a3660046124e0565b610e5a565b34801561073a575f80fd5b506103746107493660046124a9565b611067565b348015610759575f80fd5b506103fe60115481565b34801561076e575f80fd5b5061031561077d3660046124e0565b611074565b34801561078d575f80fd5b5061031561079c3660046125dd565b6110be565b3480156107ac575f80fd5b506103746107bb3660046125a0565b60156020525f908152604090205460ff1681565b3480156107da575f80fd5b506103fe600c5481565b3480156107ef575f80fd5b506103fe601981565b348015610803575f80fd5b506007546103d6906001600160a01b031681565b348015610822575f80fd5b506103156108313660046125a0565b611188565b348015610841575f80fd5b506103fe60085481565b348015610856575f80fd5b506103156108653660046125dd565b61136a565b348015610875575f80fd5b5060075461037490600160a01b900460ff1681565b348015610895575f80fd5b506103156108a43660046125dd565b6113d1565b3480156108b4575f80fd5b506103fe6108c336600461262b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f8575f80fd5b506103fe600e5481565b34801561090d575f80fd5b5060075461037490600160b01b900460ff1681565b34801561092d575f80fd5b5061031561093c3660046125a0565b611438565b34801561094c575f80fd5b5061031561095b3660046125dd565b6114be565b34801561096b575f80fd5b5061031561097a3660046125a0565b61153b565b34801561098a575f80fd5b506103156109993660046125dd565b611578565b3480156109a9575f80fd5b506103fe600d5481565b3480156109be575f80fd5b506006546103d6906001600160a01b031681565b6109da6115f5565b600754600160c01b900460ff1615610a0d5760405162461bcd60e51b8152600401610a0490612657565b60405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a6190612676565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612676565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f33610aef818585611621565b60019150505b92915050565b610b036115f5565b5f5b82811015610b4557610b3d848483818110610b2257610b226126ae565b9050602002016020810190610b3791906125a0565b83611633565b600101610b05565b50505050565b5f33610b5885828561168e565b610b63858585611703565b506001949350505050565b610b766115f5565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bc390831515815260200190565b60405180910390a150565b610bd66115f5565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bc390831515815260200190565b610c2b6115f5565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bc390831515815260200190565b610c806115f5565b6103e8610c8c60035490565b610c979060036126d6565b610ca191906126ed565b811015610cc05760405162461bcd60e51b8152600401610a0490612657565b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bc3565b610cfd6115f5565b610d065f611760565b565b610d106115f5565b6001600160a01b038116610d365760405162461bcd60e51b8152600401610a0490612657565b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d9e6115f5565b6019811115610dbf5760405162461bcd60e51b8152600401610a0490612657565b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d8a565b606060058054610a6190612676565b610e146115f5565b6001600160a01b0382165f9081526015602052604090205460ff1615610e4c5760405162461bcd60e51b8152600401610a0490612657565b610e5682826117a4565b5050565b610e626115f5565b5f5b82811015610b455760155f858584818110610e8157610e816126ae565b9050602002016020810190610e9691906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f1757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610ef657610ef66126ae565b9050602002016020810190610f0b91906125a0565b6001600160a01b031614155b8015610f52575030848483818110610f3157610f316126ae565b9050602002016020810190610f4691906125a0565b6001600160a01b031614155b8015610f8d57505f848483818110610f6c57610f6c6126ae565b9050602002016020810190610f8191906125a0565b6001600160a01b031614155b801561102a575060135f858584818110610fa957610fa96126ae565b9050602002016020810190610fbe91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff1615801561102a575060145f858584818110610ff757610ff76126ae565b905060200201602081019061100c91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561105f5761105f848483818110611044576110446126ae565b905060200201602081019061105991906125a0565b836117ff565b600101610e64565b5f33610aef818585611703565b61107c6115f5565b5f5b82811015610b45576110b684848381811061109b5761109b6126ae565b90506020020160208101906110b091906125a0565b8361185a565b60010161107e565b6110c66115f5565b5f6110d060035490565b9050620f42406110e18260016126d6565b6110eb91906126ed565b82101561110a5760405162461bcd60e51b8152600401610a0490612657565b6103e86111188260056126d6565b61112291906126ed565b8211156111415760405162461bcd60e51b8152600401610a0490612657565b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111906115f5565b335f6001600160a01b0383166112345750475f816111c05760405162461bcd60e51b8152600401610a0490612657565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611206576040519150601f19603f3d011682016040523d82523d5f602084013e61120b565b606091505b5050809150508061122e5760405162461bcd60e51b8152600401610a0490612657565b5061132b565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611276573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129a919061270c565b90505f81116112bb5760405162461bcd60e51b8152600401610a0490612657565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190612723565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161117b565b6113726115f5565b60198111156113935760405162461bcd60e51b8152600401610a0490612657565b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d8a565b6113d96115f5565b60198111156113fa5760405162461bcd60e51b8152600401610a0490612657565b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d8a565b6114406115f5565b6001600160a01b0381166114665760405162461bcd60e51b8152600401610a0490612657565b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d8a565b6114c66115f5565b6103e86114d260035490565b6114dd9060026126d6565b6114e791906126ed565b8110156115065760405162461bcd60e51b8152600401610a0490612657565b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bc3565b6115436115f5565b6001600160a01b03811661156c57604051631e4fbdf760e01b81525f6004820152602401610a04565b61157581611760565b50565b6115806115f5565b6103e861158c60035490565b6115979060026126d6565b6115a191906126ed565b8110156115c05760405162461bcd60e51b8152600401610a0490612657565b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bc3565b5f546001600160a01b03163314610d065760405163118cdaa760e01b8152336004820152602401610a04565b61162e83838360016118b5565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d8a565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b4557818110156116f557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a04565b610b4584848484035f6118b5565b6001600160a01b03831661172c57604051634b637e8f60e11b81525f6004820152602401610a04565b6001600160a01b0382166117555760405163ec442f0560e01b81525f6004820152602401610a04565b61162e838383611987565b5f546001600160a01b031680156117855761177b815f61185a565b611785815f611633565b61179082600161185a565b61179b826001611633565b610e5682612057565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d8a565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d8a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d8a565b6001600160a01b0384166118de5760405163e602df0560e01b81525f6004820152602401610a04565b6001600160a01b03831661190757604051634a1406b160e11b81525f6004820152602401610a04565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b4557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197991815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156119c35760405162461bcd60e51b8152600401610a0490612657565b846001600160a01b0316826001600160a01b031614806119fb57506001600160a01b0382165f9081526012602052604090205460ff16155b611a175760405162461bcd60e51b8152600401610a0490612657565b846001600160a01b0316816001600160a01b03161480611a485750816001600160a01b0316816001600160a01b0316145b80611a6b57506001600160a01b0381165f9081526012602052604090205460ff16155b611a875760405162461bcd60e51b8152600401610a0490612657565b600754600160c01b900460ff1680611ab657506001600160a01b0385165f9081526014602052604090205460ff165b80611ad857506001600160a01b0384165f9081526014602052604090205460ff165b611af45760405162461bcd60e51b8152600401610a0490612657565b6007545f90600160a01b900460ff168015611b195750600754600160b81b900460ff16155b8015611b5f57506001600160a01b0386165f9081526014602052604090205460ff1680611b5d57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611e55575f546001600160a01b03878116911614801590611b9157505f546001600160a01b03868116911614155b8015611ba557506001600160a01b03851615155b8015611bbc57506001600160a01b03851661dead14155b15611e5557600754600160a81b900460ff1615611cdf577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316856001600160a01b031614158015611c4757507f000000000000000000000000c0ed00544566582066021dc955af79aab7201fa16001600160a01b0316856001600160a01b031614155b15611cdf57611c5760034361273e565b6001600160a01b0383165f90815260166020526040902054108015611c9c5750611c8260034361273e565b6001600160a01b0386165f90815260166020526040902054105b611cb85760405162461bcd60e51b8152600401610a0490612657565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611d1e57506001600160a01b0385165f9081526014602052604090205460ff16155b15611d8d57600b54841115611d455760405162461bcd60e51b8152600401610a0490612657565b600d546001600160a01b0386165f90815260016020526040902054611d6a9086612751565b1115611d885760405162461bcd60e51b8152600401610a0490612657565b611e55565b6001600160a01b0385165f9081526015602052604090205460ff168015611dcc57506001600160a01b0386165f9081526014602052604090205460ff16155b15611df357600c54841115611d885760405162461bcd60e51b8152600401610a0490612657565b6001600160a01b0385165f9081526014602052604090205460ff16611e5557600d546001600160a01b0386165f90815260016020526040902054611e379086612751565b1115611e555760405162461bcd60e51b8152600401610a0490612657565b6007545f90600160b01b900460ff168015611e7a5750600754600160b81b900460ff16155b8015611ec057506001600160a01b0387165f9081526013602052604090205460ff1680611ebe57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611fe1576001600160a01b0386165f9081526015602052604081205460ff168015611ef057505f601054115b15611f1657606460105487611f0591906126d6565b611f0f91906126ed565b9050611fc2565b6001600160a01b0388165f9081526015602052604090205460ff168015611f3e57505f600f54115b15611f53576064600f5487611f0591906126d6565b6001600160a01b0387165f9081526015602052604090205460ff16158015611f9357506001600160a01b0388165f9081526015602052604090205460ff16155b8015611fa057505f601154115b15611fc257606460115487611fb591906126d6565b611fbf91906126ed565b90505b8015611fdf57611fd2818761273e565b9550611fdf8830836120a6565b505b305f90815260016020526040902054600e5481101582801561201b57506001600160a01b0389165f9081526015602052604090205460ff16155b80156120245750805b1561204157600a544311156120415761203c826121cc565b43600a555b61204c8989896120a6565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120d0578060035f8282546120c59190612751565b909155506121409050565b6001600160a01b0383165f90815260016020526040902054818110156121225760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a04565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215c5760038054829003905561217a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bf91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110612216576122166126ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b69190612764565b816001815181106122c9576122c96126ae565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460046122f991906126d6565b905080841115612307578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061235b9087905f9087903090429060040161277f565b5f604051808303815f87803b158015612372575f80fd5b505af1158015612384573d5f803e3d5ffd5b504792505f915061239890506002836126ed565b90505f6123a5828461273e565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f81146123f0576040519150601f19603f3d011682016040523d82523d5f602084013e6123f5565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114612442576040519150601f19603f3d011682016040523d82523d5f602084013e612447565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611575575f80fd5b5f80604083850312156124ba575f80fd5b82356124c581612495565b946020939093013593505050565b8015158114611575575f80fd5b5f805f604084860312156124f2575f80fd5b833567ffffffffffffffff811115612508575f80fd5b8401601f81018613612518575f80fd5b803567ffffffffffffffff81111561252e575f80fd5b8660208260051b8401011115612542575f80fd5b602091820194509250840135612557816124d3565b809150509250925092565b5f805f60608486031215612574575f80fd5b833561257f81612495565b9250602084013561258f81612495565b929592945050506040919091013590565b5f602082840312156125b0575f80fd5b81356125bb81612495565b9392505050565b5f602082840312156125d2575f80fd5b81356125bb816124d3565b5f602082840312156125ed575f80fd5b5035919050565b5f8060408385031215612605575f80fd5b823561261081612495565b91506020830135612620816124d3565b809150509250929050565b5f806040838503121561263c575f80fd5b823561264781612495565b9150602083013561262081612495565b60208082526005908201526432b93937b960d91b604082015260600190565b600181811c9082168061268a57607f821691505b6020821081036126a857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610af557610af56126c2565b5f8261270757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561271c575f80fd5b5051919050565b5f60208284031215612733575f80fd5b81516125bb816124d3565b81810381811115610af557610af56126c2565b80820180821115610af557610af56126c2565b5f60208284031215612774575f80fd5b81516125bb81612495565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127cf5783516001600160a01b03168352602093840193909201916001016127a8565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212205af65169da407c2f3c4195dba30238b29729c44af7265986eeb1a454d400576c64736f6c634300081a0033
Deployed Bytecode Sourcemap
26292:14735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30673:213;;;;;;;;;;;;;:::i;12959:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15293:222;;;;;;;;;;-1:-1:-1;15293:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15293:222:0;945:187:1;33959:239:0;;;;;;;;;;-1:-1:-1;33959:239:0;;;;;:::i;:::-;;:::i;26342:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26342:49:0;2010:227:1;14061:99:0;;;;;;;;;;-1:-1:-1;14140:12:0;;14061:99;;;2388:25:1;;;2376:2;2361:18;14061:99:0;2242:177:1;16093:283:0;;;;;;;;;;-1:-1:-1;16093:283:0;;;;;:::i;:::-;;:::i;27126:22::-;;;;;;;;;;;;;;;;26774;;;;;;;;;;-1:-1:-1;26774:22:0;;;;-1:-1:-1;;;26774:22:0;;;;;;13912:84;;;;;;;;;;-1:-1:-1;13912:84:0;;13986:2;3079:36:1;;3067:2;3052:18;13912:84:0;2937:184:1;27190:37:0;;;;;;;;;;-1:-1:-1;27190:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31543:138;;;;;;;;;;-1:-1:-1;31543:138:0;;;;;:::i;:::-;;:::i;27098:21::-;;;;;;;;;;;;;;;;26519:38;;;;;;;;;;;;;;;26456:54;;;;;;;;;;;;26503:6;26456:54;;27234:50;;;;;;;;;;-1:-1:-1;27234:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26400:49;;;;;;;;;;;;26447:1;26400:49;;31689:144;;;;;;;;;;-1:-1:-1;31689:144:0;;;;;:::i;:::-;;:::i;31841:133::-;;;;;;;;;;-1:-1:-1;31841:133:0;;;;;:::i;:::-;;:::i;27291:52::-;;;;;;;;;;-1:-1:-1;27291:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32378:200;;;;;;;;;;-1:-1:-1;32378:200:0;;;;;:::i;:::-;;:::i;26677:29::-;;;;;;;;;;-1:-1:-1;26677:29:0;;;;-1:-1:-1;;;26677:29:0;;;;;;14223:118;;;;;;;;;;-1:-1:-1;14223:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14315:18:0;14288:7;14315:18;;;:9;:18;;;;;;;14223:118;26968:21;;;;;;;;;;;;;;;;24940:103;;;;;;;;;;;;;:::i;31203:332::-;;;;;;;;;;-1:-1:-1;31203:332:0;;;;;:::i;:::-;;:::i;26838:25::-;;;;;;;;;;;;;;;;24265:87;;;;;;;;;;-1:-1:-1;24311:7:0;24338:6;-1:-1:-1;;;;;24338:6:0;24265:87;;33214:227;;;;;;;;;;-1:-1:-1;33214:227:0;;;;;:::i;:::-;;:::i;13169:95::-;;;;;;;;;;;;;:::i;34789:226::-;;;;;;;;;;-1:-1:-1;34789:226:0;;;;;:::i;:::-;;:::i;34206:575::-;;;;;;;;;;-1:-1:-1;34206:575:0;;;;;:::i;:::-;;:::i;14546:182::-;;;;;;;;;;-1:-1:-1;14546:182:0;;;;;:::i;:::-;;:::i;27155:26::-;;;;;;;;;;;;;;;;33716:235;;;;;;;;;;-1:-1:-1;33716:235:0;;;;;:::i;:::-;;:::i;32586:393::-;;;;;;;;;;-1:-1:-1;32586:393:0;;;;;:::i;:::-;;:::i;27350:57::-;;;;;;;;;;-1:-1:-1;27350:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26996:22;;;;;;;;;;;;;;;;26923:36;;;;;;;;;;;;26957:2;26923:36;;26602:32;;;;;;;;;;-1:-1:-1;26602:32:0;;;;-1:-1:-1;;;;;26602:32:0;;;35023:641;;;;;;;;;;-1:-1:-1;35023:641:0;;;;;:::i;:::-;;:::i;26805:26::-;;;;;;;;;;;;;;;;33449:259;;;;;;;;;;-1:-1:-1;33449:259:0;;;;;:::i;:::-;;:::i;26643:27::-;;;;;;;;;;-1:-1:-1;26643:27:0;;;;-1:-1:-1;;;26643:27:0;;;;;;32987:219;;;;;;;;;;-1:-1:-1;32987:219:0;;;;;:::i;:::-;;:::i;14791:183::-;;;;;;;;;;-1:-1:-1;14791:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;14939:18:0;;;14907:7;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14791:183;27058:33;;;;;;;;;;;;;;;;26713:24;;;;;;;;;;-1:-1:-1;26713:24:0;;;;-1:-1:-1;;;26713:24:0;;;;;;30894:301;;;;;;;;;;-1:-1:-1;30894:301:0;;;;;:::i;:::-;;:::i;32178:192::-;;;;;;;;;;-1:-1:-1;32178:192:0;;;;;:::i;:::-;;:::i;25198:220::-;;;;;;;;;;-1:-1:-1;25198:220:0;;;;;:::i;:::-;;:::i;31982:188::-;;;;;;;;;;-1:-1:-1;31982:188:0;;;;;:::i;:::-;;:::i;27025:24::-;;;;;;;;;;;;;;;;26564:31;;;;;;;;;;-1:-1:-1;26564:31:0;;;;-1:-1:-1;;;;;26564:31:0;;;30673:213;24151:13;:11;:13::i;:::-;30730:10:::1;::::0;-1:-1:-1;;;30730:10:0;::::1;;;30729:11;30721:29;;;;-1:-1:-1::0;;;30721:29:0::1;;;;;;;:::i;:::-;;;;;;;;;30761:10;:17:::0;;-1:-1:-1;;;;30761:17:0::1;-1:-1:-1::0;;;30761:17:0::1;::::0;;30803:12:::1;30789:11;:26:::0;30839:15:::1;30826:10;:28:::0;30870:8:::1;::::0;::::1;::::0;30761:17;;30870:8:::1;30673:213::o:0;12959:91::-;13004:13;13037:5;13030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12959:91;:::o;15293:222::-;15393:4;4254:10;15454:31;4254:10;15470:7;15479:5;15454:8;:31::i;:::-;15503:4;15496:11;;;15293:222;;;;;:::o;33959:239::-;24151:13;:11;:13::i;:::-;34085:9:::1;34080:111;34100:19:::0;;::::1;34080:111;;;34141:38;34160:8;;34169:1;34160:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34173:5;34141:18;:38::i;:::-;34121:3;;34080:111;;;;33959:239:::0;;;:::o;16093:283::-;16214:4;4254:10;16272:37;16288:4;4254:10;16303:5;16272:15;:37::i;:::-;16320:26;16330:4;16336:2;16340:5;16320:9;:26::i;:::-;-1:-1:-1;16364:4:0;;16093:283;-1:-1:-1;;;;16093:283:0:o;31543:138::-;24151:13;:11;:13::i;:::-;31611:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;31611:23:0::1;-1:-1:-1::0;;;;31611:23:0;;::::1;;::::0;;31650::::1;::::0;::::1;::::0;::::1;::::0;31629:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;31650:23:0::1;;;;;;;;31543:138:::0;:::o;31689:144::-;24151:13;:11;:13::i;:::-;31759:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;31759:25:0::1;-1:-1:-1::0;;;;31759:25:0;;::::1;;::::0;;31800::::1;::::0;::::1;::::0;::::1;::::0;31779:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;31841:133:0;24151:13;:11;:13::i;:::-;31908:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;31908:20:0::1;-1:-1:-1::0;;;;31908:20:0;;::::1;;::::0;;31944:22:::1;::::0;::::1;::::0;::::1;::::0;31923:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32378:200:0;24151:13;:11;:13::i;:::-;32487:4:::1;32466:13;14140:12:::0;;;14061:99;32466:13:::1;:17;::::0;32482:1:::1;32466:17;:::i;:::-;32465:26;;;;:::i;:::-;32454:6;:38;;32446:56;;;;-1:-1:-1::0;;;32446:56:0::1;;;;;;;:::i;:::-;32513:9;:18:::0;;;32547:23:::1;::::0;2388:25:1;;;32547:23:0::1;::::0;2376:2:1;2361:18;32547:23:0::1;2242:177:1::0;24940:103:0;24151:13;:11;:13::i;:::-;25005:30:::1;25032:1;25005:18;:30::i;:::-;24940:103::o:0;31203:332::-;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;31322:32:0;::::1;31314:50;;;;-1:-1:-1::0;;;31314:50:0::1;;;;;;;:::i;:::-;31395:17;::::0;;-1:-1:-1;;;;;31423:38:0;;::::1;-1:-1:-1::0;;;;;;31423:38:0;::::1;::::0;::::1;::::0;;;31477:50:::1;::::0;;6394:51:1;;;31395:17:0;::::1;6476:2:1::0;6461:18;;6454:60;;;31395:17:0;31477:50:::1;::::0;6367:18:1;31477:50:0::1;;;;;;;;31303:232;31203:332:::0;:::o;33214:227::-;24151:13;:11;:13::i;:::-;26957:2:::1;33291:8;:19;;33283:37;;;;-1:-1:-1::0;;;33283:37:0::1;;;;;;;:::i;:::-;33350:7;::::0;;33368:18;;;;33402:31:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33402:31:0::1;::::0;6672:18:1;33402:31:0::1;6525:248:1::0;13169:95:0;13216:13;13249:7;13242:14;;;;;:::i;34789:226::-;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;34914:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;34913:32;34905:50;;;;-1:-1:-1::0;;;34905:50:0::1;;;;;;;:::i;:::-;34966:41;34995:4;35001:5;34966:28;:41::i;:::-;34789:226:::0;;:::o;34206:575::-;24151:13;:11;:13::i;:::-;34322:9:::1;34317:457;34337:19:::0;;::::1;34317:457;;;34402:25;:38;34428:8;;34437:1;34428:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34402:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34402:38:0;;::::1;;34401:39;34400:103:::0;::::1;;;;34486:15;-1:-1:-1::0;;;;;34463:39:0::1;:8;;34472:1;34463:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34463:39:0::1;;;34400:103;:154;;;;-1:-1:-1::0;34548:4:0::1;34525:8:::0;;34534:1;34525:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34525:28:0::1;;;34400:154;:204;;;;-1:-1:-1::0;26447:1:0::1;34576:8:::0;;34585:1;34576:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34576:27:0::1;;;34400:204;:318;;;;;34627:18;:31;34646:8;;34655:1;34646:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34627:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34627:31:0;;::::1;;34626:32;:91:::0;::::1;;;;34684:20;:33;34705:8;;34714:1;34705:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34684:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34684:33:0;;::::1;;34683:34;34626:91;34378:384;;;34734:28;34743:8;;34752:1;34743:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34756:5;34734:8;:28::i;:::-;34358:3;;34317:457;;14546:182:::0;14615:4;4254:10;14671:27;4254:10;14688:2;14692:5;14671:9;:27::i;33716:235::-;24151:13;:11;:13::i;:::-;33840:9:::1;33835:109;33855:19:::0;;::::1;33835:109;;;33896:36;33913:8;;33922:1;33913:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;33926:5;33896:16;:36::i;:::-;33876:3;;33835:109;;32586:393:::0;24151:13;:11;:13::i;:::-;32663:20:::1;32686:13;14140:12:::0;;;14061:99;32686:13:::1;32663:36:::0;-1:-1:-1;32749:7:0::1;32729:16;32663:36:::0;32744:1:::1;32729:16;:::i;:::-;32728:28;;;;:::i;:::-;32718:6;:38;;32710:56;;;;-1:-1:-1::0;;;32710:56:0::1;;;;;;;:::i;:::-;32816:4;32796:16;:12:::0;32811:1:::1;32796:16;:::i;:::-;32795:25;;;;:::i;:::-;32785:6;:35;;32777:53;;;;-1:-1:-1::0;;;32777:53:0::1;;;;;;;:::i;:::-;32860:18;::::0;;32889:27;;;;32932:39:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;32932:39:0::1;::::0;6672:18:1;32932:39:0::1;;;;;;;;32652:327;;32586:393:::0;:::o;35023:641::-;24151:13;:11;:13::i;:::-;35115:10:::1;35098:14;-1:-1:-1::0;;;;;35165:22:0;::::1;35161:445;;-1:-1:-1::0;35240:21:0::1;35204:12;35284:10:::0;35276:28:::1;;;;-1:-1:-1::0;;;35276:28:0::1;;;;;;;:::i;:::-;35333:39;::::0;-1:-1:-1;;;;;35333:20:0;::::1;::::0;35361:6;;35333:39:::1;::::0;;;35361:6;35333:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35319:53;;;;;35395:7;35387:25;;;;-1:-1:-1::0;;;35387:25:0::1;;;;;;;:::i;:::-;35189:235;35161:445;;;35454:39;::::0;-1:-1:-1;;;35454:39:0;;35487:4:::1;35454:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;35454:24:0;::::1;::::0;::::1;::::0;2153:18:1;;35454:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35445:48;;35525:1;35516:6;:10;35508:28;;;;-1:-1:-1::0;;;35508:28:0::1;;;;;;;:::i;:::-;35551:43;::::0;-1:-1:-1;;;35551:43:0;;35575:10:::1;35551:43;::::0;::::1;7351:51:1::0;7418:18;;;7411:34;;;-1:-1:-1;;;;;35551:23:0;::::1;::::0;::::1;::::0;7324:18:1;;35551:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35161:445;35621:35;::::0;;-1:-1:-1;;;;;7369:32:1;;7351:51;;7433:2;7418:18;;7411:34;;;35621:35:0::1;::::0;7324:18:1;35621:35:0::1;7177:274:1::0;33449:259:0;24151:13;:11;:13::i;:::-;26957:2:::1;33534:12;:23;;33526:41;;;;-1:-1:-1::0;;;33526:41:0::1;;;;;;;:::i;:::-;33597:11;::::0;;33619:26;;;;33661:39:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33661:39:0::1;::::0;6672:18:1;33661:39:0::1;6525:248:1::0;32987:219:0;24151:13;:11;:13::i;:::-;26957:2:::1;33062:7;:18;;33054:36;;;;-1:-1:-1::0;;;33054:36:0::1;;;;;;;:::i;:::-;33120:6;::::0;;33137:16;;;;33169:29:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33169:29:0::1;::::0;6672:18:1;33169:29:0::1;6525:248:1::0;30894:301:0;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;30988:31:0;::::1;30980:49;;;;-1:-1:-1::0;;;30980:49:0::1;;;;;;;:::i;:::-;31060:16;::::0;;-1:-1:-1;;;;;31087:36:0;;::::1;-1:-1:-1::0;;;;;;31087:36:0;::::1;::::0;::::1;::::0;;;31139:48:::1;::::0;;6394:51:1;;;31060:16:0;::::1;6476:2:1::0;6461:18;;6454:60;;;31060:16:0;31139:48:::1;::::0;6367:18:1;31139:48:0::1;6220:300:1::0;32178:192:0;24151:13;:11;:13::i;:::-;32285:4:::1;32264:13;14140:12:::0;;;14061:99;32264:13:::1;:17;::::0;32280:1:::1;32264:17;:::i;:::-;32263:26;;;;:::i;:::-;32252:6;:38;;32244:56;;;;-1:-1:-1::0;;;32244:56:0::1;;;;;;;:::i;:::-;32311:7;:16:::0;;;32343:19:::1;::::0;2388:25:1;;;32343:19:0::1;::::0;2376:2:1;2361:18;32343:19:0::1;2242:177:1::0;25198:220:0;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;25283:22:0;::::1;25279:93;;25329:31;::::0;-1:-1:-1;;;25329:31:0;;25357:1:::1;25329:31;::::0;::::1;2180:51:1::0;2153:18;;25329:31:0::1;2010:227:1::0;25279:93:0::1;25382:28;25401:8;25382:18;:28::i;:::-;25198:220:::0;:::o;31982:188::-;24151:13;:11;:13::i;:::-;32088:4:::1;32067:13;14140:12:::0;;;14061:99;32067:13:::1;:17;::::0;32083:1:::1;32067:17;:::i;:::-;32066:26;;;;:::i;:::-;32055:6;:38;;32047:56;;;;-1:-1:-1::0;;;32047:56:0::1;;;;;;;:::i;:::-;32114:6;:15:::0;;;32145:17:::1;::::0;2388:25:1;;;32145:17:0::1;::::0;2376:2:1;2361:18;32145:17:0::1;2242:177:1::0;24430:166:0;24311:7;24338:6;-1:-1:-1;;;;;24338:6:0;4254:10;24490:23;24486:103;;24537:40;;-1:-1:-1;;;24537:40:0;;4254:10;24537:40;;;2180:51:1;2153:18;;24537:40:0;2010:227:1;20254:164:0;20373:37;20382:5;20389:7;20398:5;20405:4;20373:8;:37::i;:::-;20254:164;;;:::o;40467:179::-;-1:-1:-1;;;;;40552:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;40552:37:0;;;;;;;;;;40605:33;;7874:51:1;;;7941:18;;;7934:50;40605:33:0;;7847:18:1;40605:33:0;7706:284:1;22047:603:0;-1:-1:-1;;;;;14939:18:0;;;22181:24;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22248:37:0;;22244:399;;22325:5;22306:16;:24;22302:214;;;22358:142;;-1:-1:-1;;;22358:142:0;;-1:-1:-1;;;;;8215:32:1;;22358:142:0;;;8197:51:1;8264:18;;;8257:34;;;8307:18;;;8300:34;;;8170:18;;22358:142:0;7995:345:1;22302:214:0;22559:57;22568:5;22575:7;22603:5;22584:16;:24;22610:5;22559:8;:57::i;16761:342::-;-1:-1:-1;;;;;16879:18:0;;16875:88;;16921:30;;-1:-1:-1;;;16921:30:0;;16948:1;16921:30;;;2180:51:1;2153:18;;16921:30:0;2010:227:1;16875:88:0;-1:-1:-1;;;;;16977:16:0;;16973:88;;17017:32;;-1:-1:-1;;;17017:32:0;;17046:1;17017:32;;;2180:51:1;2153:18;;17017:32:0;2010:227:1;16973:88:0;17071:24;17079:4;17085:2;17089:5;17071:7;:24::i;30275:390::-;30350:16;24338:6;-1:-1:-1;;;;;24338:6:0;30391:22;;30387:138;;30430:33;30447:8;30457:5;30430:16;:33::i;:::-;30478:35;30497:8;30507:5;30478:18;:35::i;:::-;30535:32;30552:8;30562:4;30535:16;:32::i;:::-;30578:34;30597:8;30607:4;30578:18;:34::i;:::-;30623;30648:8;30623:24;:34::i;40806:218::-;-1:-1:-1;;;;;40921:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;40921:39:0;;;;;;;;;;40976:40;;7874:51:1;;;7941:18;;;7934:50;40976:40:0;;7847:18:1;40976:40:0;7706:284:1;40654:144:0;-1:-1:-1;;;;;40729:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;40729:22:0;;;;;;;;;;40767:23;;7874:51:1;;;7941:18;;;7934:50;40767:23:0;;7847:18:1;40767:23:0;7706:284:1;40286:173:0;-1:-1:-1;;;;;40369:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;40369:35:0;;;;;;;;;;40420:31;;7874:51:1;;;7941:18;;;7934:50;40420:31:0;;7847:18:1;40420:31:0;7706:284:1;21269:486:0;-1:-1:-1;;;;;21425:19:0;;21421:91;;21468:32;;-1:-1:-1;;;21468:32:0;;21497:1;21468:32;;;2180:51:1;2153:18;;21468:32:0;2010:227:1;21421:91:0;-1:-1:-1;;;;;21526:21:0;;21522:92;;21571:31;;-1:-1:-1;;;21571:31:0;;21599:1;21571:31;;;2180:51:1;2153:18;;21571:31:0;2010:227:1;21522:92:0;-1:-1:-1;;;;;21624:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21670:78;;;;21721:7;-1:-1:-1;;;;;21705:31:0;21714:5;-1:-1:-1;;;;;21705:31:0;;21730:5;21705:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21705:31:0;;;;;;;;21269:486;;;;:::o;35672:3617::-;-1:-1:-1;;;;;35888:11:0;;35802:14;35888:11;;;:5;:11;;;;;;35819:10;;35857:9;;35888:11;;35887:12;35879:30;;;;-1:-1:-1;;;35879:30:0;;;;;;;:::i;:::-;35938:4;-1:-1:-1;;;;;35928:14:0;:6;-1:-1:-1;;;;;35928:14:0;;:32;;;-1:-1:-1;;;;;;35947:13:0;;;;;;:5;:13;;;;;;;;35946:14;35928:32;35920:50;;;;-1:-1:-1;;;35920:50:0;;;;;;;:::i;:::-;36013:4;-1:-1:-1;;;;;36003:14:0;:6;-1:-1:-1;;;;;36003:14:0;;:34;;;;36031:6;-1:-1:-1;;;;;36021:16:0;:6;-1:-1:-1;;;;;36021:16:0;;36003:34;:52;;;-1:-1:-1;;;;;;36042:13:0;;;;;;:5;:13;;;;;;;;36041:14;36003:52;35981:107;;;;-1:-1:-1;;;35981:107:0;;;;;;;:::i;:::-;36123:10;;-1:-1:-1;;;36123:10:0;;;;;:57;;-1:-1:-1;;;;;;36154:26:0;;;;;;:20;:26;;;;;;;;36123:57;:102;;;-1:-1:-1;;;;;;36201:24:0;;;;;;:20;:24;;;;;;;;36123:102;36101:157;;;;-1:-1:-1;;;36101:157:0;;;;;;;:::i;:::-;36285:15;;36271:11;;-1:-1:-1;;;36285:15:0;;;;:43;;;;-1:-1:-1;36318:10:0;;-1:-1:-1;;;36318:10:0;;;;36317:11;36285:43;:117;;;;-1:-1:-1;;;;;;36347:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;36377:24:0;;;;;;:20;:24;;;;;;;;36347:54;36345:57;36285:117;36271:131;;36417:6;36413:1624;;;24311:7;24338:6;-1:-1:-1;;;;;36462:15:0;;;24338:6;;36462:15;;;;:49;;-1:-1:-1;24311:7:0;24338:6;-1:-1:-1;;;;;36498:13:0;;;24338:6;;36498:13;;36462:49;:88;;;;-1:-1:-1;;;;;;36532:18:0;;;;36462:88;:127;;;;-1:-1:-1;;;;;;36571:18:0;;26503:6;36571:18;;36462:127;36440:1586;;;36628:17;;-1:-1:-1;;;36628:17:0;;;;36624:639;;;36688:15;-1:-1:-1;;;;;36674:30:0;:2;-1:-1:-1;;;;;36674:30:0;;;:53;;;;;36714:13;-1:-1:-1;;;;;36708:19:0;:2;-1:-1:-1;;;;;36708:19:0;;;36674:53;36670:574;;;36866:16;36881:1;36866:12;:16;:::i;:::-;-1:-1:-1;;;;;36794:36:0;;;;;;:28;:36;;;;;;:88;:209;;;;-1:-1:-1;36987:16:0;37002:1;36987:12;:16;:::i;:::-;-1:-1:-1;;;;;36919:32:0;;;;;;:28;:32;;;;;;:84;36794:209;36756:312;;;;-1:-1:-1;;;36756:312:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37095:36:0;;;;;;;:28;:36;;;;;;37134:12;37095:51;;;;37173:32;;;;;;;:47;36670:574;-1:-1:-1;;;;;37309:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;37345:24:0;;;;;;:20;:24;;;;;;;;37344:25;37309:60;37283:728;;;37430:6;;37420;:16;;37412:34;;;;-1:-1:-1;;;37412:34:0;;;;;;;:::i;:::-;37529:9;;-1:-1:-1;;;;;14315:18:0;;14288:7;14315:18;;;:9;:18;;;;;;37503:22;;:6;:22;:::i;:::-;:35;;37469:126;;;;-1:-1:-1;;;37469:126:0;;;;;;;:::i;:::-;37283:728;;;-1:-1:-1;;;;;37647:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;37681:26:0;;;;;;:20;:26;;;;;;;;37680:27;37647:60;37621:390;;;37768:7;;37758:6;:17;;37750:35;;;;-1:-1:-1;;;37750:35:0;;;;;;;:::i;37621:390::-;-1:-1:-1;;;;;37816:24:0;;;;;;:20;:24;;;;;;;;37811:200;;37925:9;;-1:-1:-1;;;;;14315:18:0;;14288:7;14315:18;;;:9;:18;;;;;;37899:22;;:6;:22;:::i;:::-;:35;;37865:126;;;;-1:-1:-1;;;37865:126:0;;;;;;;:::i;:::-;38064:12;;38049;;-1:-1:-1;;;38064:12:0;;;;:40;;;;-1:-1:-1;38094:10:0;;-1:-1:-1;;;38094:10:0;;;;38093:11;38064:40;:110;;;;-1:-1:-1;;;;;;38123:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;38151:22:0;;;;;;:18;:22;;;;;;;;38123:50;38121:53;38064:110;38049:125;;38191:7;38187:679;;;-1:-1:-1;;;;;38250:29:0;;38215:12;38250:29;;;:25;:29;;;;;;;;:44;;;;;38293:1;38283:7;;:11;38250:44;38246:471;;;38343:3;38332:7;;38323:6;:16;;;;:::i;:::-;38322:24;;;;:::i;:::-;38315:31;;38246:471;;;-1:-1:-1;;;;;38372:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;38416:1;38407:6;;:10;38372:45;38368:349;;;38465:3;38455:6;;38446;:15;;;;:::i;38368:349::-;-1:-1:-1;;;;;38513:29:0;;;;;;:25;:29;;;;;;;;38512:30;:83;;;;-1:-1:-1;;;;;;38564:31:0;;;;;;:25;:31;;;;;;;;38563:32;38512:83;:119;;;;;38630:1;38616:11;;:15;38512:119;38490:227;;;38698:3;38683:11;;38674:6;:20;;;;:::i;:::-;38673:28;;;;:::i;:::-;38666:35;;38490:227;38737:8;;38733:122;;38766:14;38776:4;38766:14;;:::i;:::-;;;38799:40;38813:4;38827;38834;38799:13;:40::i;:::-;38200:666;38187:679;38914:4;38878:15;14315:18;;;:9;:18;;;;;;38960;;38949:29;;;38993:7;:43;;;;-1:-1:-1;;;;;;39005:31:0;;;;;;:25;:31;;;;;;;;39004:32;38993:43;:57;;;;;39040:10;38993:57;38989:249;;;39086:26;;39071:12;:41;39067:160;;;39133:18;39143:7;39133:9;:18::i;:::-;39199:12;39170:26;:41;39067:160;39250:31;39264:4;39270:2;39274:6;39250:13;:31::i;:::-;35791:3498;;;;;;35672:3617;;;:::o;25578:191::-;25652:16;25671:6;;-1:-1:-1;;;;;25688:17:0;;;-1:-1:-1;;;;;;25688:17:0;;;;;;25721:40;;25671:6;;;;;;;25721:40;;25652:16;25721:40;25641:128;25578:191;:::o;17427:1169::-;-1:-1:-1;;;;;17551:18:0;;17547:552;;17705:5;17689:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17547:552:0;;-1:-1:-1;17547:552:0;;-1:-1:-1;;;;;17765:15:0;;17743:19;17765:15;;;:9;:15;;;;;;17799:19;;;17795:117;;;17846:50;;-1:-1:-1;;;17846:50:0;;-1:-1:-1;;;;;8215:32:1;;17846:50:0;;;8197:51:1;8264:18;;;8257:34;;;8307:18;;;8300:34;;;8170:18;;17846:50:0;7995:345:1;17795:117:0;-1:-1:-1;;;;;18035:15:0;;;;;;:9;:15;;;;;18053:19;;;;18035:37;;17547:552;-1:-1:-1;;;;;18115:16:0;;18111:435;;18281:12;:21;;;;;;;18111:435;;;-1:-1:-1;;;;;18497:13:0;;;;;;:9;:13;;;;;:22;;;;;;18111:435;18578:2;-1:-1:-1;;;;;18563:25:0;18572:4;-1:-1:-1;;;;;18563:25:0;;18582:5;18563:25;;;;2388::1;;2376:2;2361:18;;2242:177;18563:25:0;;;;;;;;17427:1169;;;:::o;39297:981::-;28493:10;:17;;-1:-1:-1;;;;28493:17:0;-1:-1:-1;;;28493:17:0;;;39421:16:::1;::::0;;39435:1:::1;39421:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;39421:16:0;39435:1;39421:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39421:16:0::1;39397:40;;39466:4;39448;39453:1;39448:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;39448:23:0::1;;;-1:-1:-1::0;;;;;39448:23:0::1;;;::::0;::::1;39492:15;-1:-1:-1::0;;;;;39492:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39482:4;39487:1;39482:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;39482:32:0::1;;;-1:-1:-1::0;;;;;39482:32:0::1;;;::::0;::::1;39527:21;39551:18;;39572:1;39551:22;;;;:::i;:::-;39527:46;;39600:13;39590:7;:23;39586:79;;;39640:13;39630:23;;39586:79;39677:192;::::0;-1:-1:-1;;;39677:192:0;;-1:-1:-1;;;;;39677:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;39758:7;;39780:1:::1;::::0;39796:4;;39823::::1;::::0;39843:15:::1;::::0;39677:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39903:21:0::1;::::0;-1:-1:-1;39882:18:0::1;::::0;-1:-1:-1;39964:14:0::1;::::0;-1:-1:-1;39977:1:0::1;39903:21:::0;39964:14:::1;:::i;:::-;39937:41:::0;-1:-1:-1;39991:25:0::1;40019:29;39937:41:::0;40019:10;:29:::1;:::i;:::-;40083:16;::::0;40075:83:::1;::::0;39991:57;;-1:-1:-1;;;;;;40083:16:0::1;::::0;40113;;40075:83:::1;::::0;;;40113:16;40083;40075:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;40193:17:0::1;::::0;40185:85:::1;::::0;40061:97;;-1:-1:-1;;;;;;40193:17:0::1;::::0;40224;;40185:85:::1;::::0;;;40224:17;40193;40185:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;28533:10:0;:18;;-1:-1:-1;;;;28533:18:0;;;-1:-1:-1;;;;;;;;39297:981: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:328::-;5045:2;5027:21;;;5084:1;5064:18;;;5057:29;-1:-1:-1;;;5117:2:1;5102:18;;5095:35;5162:2;5147:18;;4843:328::o;5176:380::-;5255:1;5251:12;;;;5298;;;5319:61;;5373:4;5365:6;5361:17;5351:27;;5319:61;5426:2;5418:6;5415:14;5395:18;5392:38;5389:161;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5389:161;;5176:380;;;:::o;5561:127::-;5622:10;5617:3;5613:20;5610:1;5603:31;5653:4;5650:1;5643:15;5677:4;5674:1;5667:15;5693:127;5754:10;5749:3;5745:20;5742:1;5735:31;5785:4;5782:1;5775:15;5809:4;5806:1;5799:15;5825:168;5898:9;;;5929;;5946:15;;;5940:22;;5926:37;5916:71;;5967:18;;:::i;5998:217::-;6038:1;6064;6054:132;;6108:10;6103:3;6099:20;6096:1;6089:31;6143:4;6140:1;6133:15;6171:4;6168:1;6161:15;6054:132;-1:-1:-1;6200:9:1;;5998:217::o;6988:184::-;7058:6;7111:2;7099:9;7090:7;7086:23;7082:32;7079:52;;;7127:1;7124;7117:12;7079:52;-1:-1:-1;7150:16:1;;6988:184;-1:-1:-1;6988:184:1:o;7456:245::-;7523:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:52;;;7592:1;7589;7582:12;7544:52;7624:9;7618:16;7643:28;7665:5;7643:28;:::i;8345:128::-;8412:9;;;8433:11;;;8430:37;;;8447:18;;:::i;8478:125::-;8543:9;;;8564:10;;;8561:36;;;8577:18;;:::i;8740:251::-;8810:6;8863:2;8851:9;8842:7;8838:23;8834:32;8831:52;;;8879:1;8876;8869:12;8831:52;8911:9;8905:16;8930:31;8955:5;8930:31;:::i;8996:959::-;9258:4;9306:3;9295:9;9291:19;9337:6;9326:9;9319:25;9380:6;9375:2;9364:9;9360:18;9353:34;9423:3;9418:2;9407:9;9403:18;9396:31;9447:6;9482;9476:13;9513:6;9505;9498:22;9551:3;9540:9;9536:19;9529:26;;9590:2;9582:6;9578:15;9564:29;;9611:1;9621:195;9635:6;9632:1;9629:13;9621:195;;;9700:13;;-1:-1:-1;;;;;9696:39:1;9684:52;;9765:2;9791:15;;;;9756:12;;;;9732:1;9650:9;9621:195;;;-1:-1:-1;;;;;;;9872:32:1;;;;9867:2;9852:18;;9845:60;-1:-1:-1;;9936:3:1;9921:19;9914:35;9833:3;8996:959;-1:-1:-1;;;8996:959:1:o
Swarm Source
ipfs://5af65169da407c2f3c4195dba30238b29729c44af7265986eeb1a454d400576c
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.