ETH Price: $2,859.23 (-9.68%)
Gas: 9 Gwei

Token

NooneNFT (NOONENFT)
 

Overview

Max Total Supply

499 NOONENFT

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
85 NOONENFT
0xb2b295bc17c7fc19f52d1f5cd85e7259bb2299a9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Become one of the no one

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Noone

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-06
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}



/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}






contract Noone is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI = "";
    uint256 private _price = 0.03 ether;
    bool public _paused = true;
    uint256 public _minAmount = 250 * 10e6 * 10e9;
    IERC20 private _noone;
    uint256 private _reserved = 1;
    
    // withdraw addresses
    address t1 = 0x3f955CdA88ab1de002451766138857C123867bff;
    
    modifier canWithdraw(){
        require(address(this).balance > 0.2 ether);
        _;
    }

    struct ContractOwners {
        address payable addr;
        uint percent;
    }

    ContractOwners[] contractOnwers;

    constructor() ERC721("NooneNFT", "NOONENFT")  {
        _safeMint( t1, 0);
        contractOnwers.push(ContractOwners(payable(address(t1)), 100));
        _noone = IERC20(0xf657D69c62C39be9da87D0Fb7625b2f730B5AF8f);
    }

    function buyNoone(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 2,                               "You can buy a maximum of 1 NOONENFT" );
        require(_noone.balanceOf(_msgSender()) >= _minAmount, "Not enough NOONE tokens");
        require( supply + num < 501 - _reserved,                    "Exceeds maximum NOONENFT supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }


    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }
    
    function setMinAmount(uint256 _newMinAmount) public onlyOwner() {
        _minAmount = _newMinAmount;
    }
    
    
    function getMinAmount() public view returns (uint256){
        return _minAmount;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }


    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdraw() external payable onlyOwner() canWithdraw() {
        uint nbalance = address(this).balance - 0.1 ether;
        for(uint i = 0; i < contractOnwers.length; i++){
            ContractOwners storage o = contractOnwers[i];
            o.addr.transfer((nbalance * o.percent) / 100);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_minAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"buyNoone","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinAmount","type":"uint256"}],"name":"setMinAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600b91620007e9565b50666a94d74f430000600c55600d805460ff1916600190811790915568015af1d78b58c40000600e55601055601180546001600160a01b031916733f955cda88ab1de002451766138857c123867bff1790553480156200007a57600080fd5b5060405180604001604052806008815260200167139bdbdb9953919560c21b815250604051806040016040528060088152602001671393d3d39153919560c21b8152508160009080519060200190620000d5929190620007e9565b508051620000eb906001906020840190620007e9565b5050506000620001006200022560201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060115462000167906001600160a01b0316600062000229565b604080518082019091526011546001600160a01b03908116825260646020830190815260128054600181018255600091909152925160029093027fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344481018054949093166001600160a01b031994851617909255517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344590910155600f805490911673f657d69c62c39be9da87d0fb7625b2f730b5af8f17905562000ac9565b3390565b6200024b8282604051806020016040528060008152506200024f60201b60201c565b5050565b6200025b838362000297565b6200026a600084848462000382565b620002925760405162461bcd60e51b8152600401620002899062000939565b60405180910390fd5b505050565b6001600160a01b038216620002c05760405162461bcd60e51b8152600401620002899062000a0c565b620002cb81620004bb565b15620002eb5760405162461bcd60e51b815260040162000289906200098b565b620002f960008383620004d8565b6001600160a01b03821660009081526003602052604081208054600192906200032490849062000a41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003a3846001600160a01b03166200057c60201b620010451760201c565b15620004af576001600160a01b03841663150b7a02620003c262000225565b8786866040518563ffffffff1660e01b8152600401620003e69493929190620008c0565b602060405180830381600087803b1580156200040157600080fd5b505af192505050801562000434575060408051601f3d908101601f1916820190925262000431918101906200088f565b60015b62000494573d80801562000465576040519150601f19603f3d011682016040523d82523d6000602084013e6200046a565b606091505b5080516200048c5760405162461bcd60e51b8152600401620002899062000939565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004b3565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b620004f08383836200029260201b6200074c1760201c565b6001600160a01b03831662000510576200050a8162000582565b62000536565b816001600160a01b0316836001600160a01b0316146200053657620005368382620005c6565b6001600160a01b0382166200055657620005508162000673565b62000292565b826001600160a01b0316826001600160a01b031614620002925762000292828262000751565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001620005e084620007a260201b62000c471760201c565b620005ec919062000a5c565b60008381526007602052604090205490915080821462000640576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006879060019062000a5c565b60008381526009602052604081205460088054939450909284908110620006be57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110620006ee57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200073557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006200076983620007a260201b62000c471760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620007cd5760405162461bcd60e51b81526004016200028990620009c2565b506001600160a01b031660009081526003602052604090205490565b828054620007f79062000a76565b90600052602060002090601f0160209004810192826200081b576000855562000866565b82601f106200083657805160ff191683800117855562000866565b8280016001018555821562000866579182015b828111156200086657825182559160200191906001019062000849565b506200087492915062000878565b5090565b5b8082111562000874576000815560010162000879565b600060208284031215620008a1578081fd5b81516001600160e01b031981168114620008b9578182fd5b9392505050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b828110156200090e5785810182015185820160a001528101620008f0565b8281111562000920578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6000821982111562000a575762000a5762000ab3565b500190565b60008282101562000a715762000a7162000ab3565b500390565b60028104600182168062000a8b57607f821691505b6020821081141562000aad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6125048062000ad96000396000f3fe6080604052600436106101cd5760003560e01c80635ebd612f116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104e1578063cfc7e2da14610501578063e985e9c514610516578063f2fde38b14610536576101cd565b806395d89b411461047757806398d5fdca1461048c578063a22cb465146104a1578063b88d4fde146104c1576101cd565b8063715018a6116100d1578063715018a61461040d578063897b0637146104225780638da5cb5b1461044257806391b7f5ed14610457576101cd565b80635ebd612f146103ba5780636352211e146103cd57806370a08231146103ed576101cd565b806318160ddd1161016f57806342842e0e1161013e57806342842e0e1461032d578063438b63001461034d5780634f6ccce71461037a57806355f804b31461039a576101cd565b806318160ddd146102d057806323b872dd146102e55780632f745c59146103055780633ccfd60b14610325576101cd565b806306fdde03116101ab57806306fdde031461024c578063081812fc1461026e578063095ea7b31461029b57806316c61ccc146102bb576101cd565b806301ffc9a7146101d257806302329a2914610208578063064d4d7c1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bac565b610556565b6040516101ff9190611d4a565b60405180910390f35b34801561021457600080fd5b50610228610223366004611b92565b610583565b005b34801561023657600080fd5b5061023f6105de565b6040516101ff9190612372565b34801561025857600080fd5b506102616105e4565b6040516101ff9190611d55565b34801561027a57600080fd5b5061028e610289366004611c2a565b610676565b6040516101ff9190611cb5565b3480156102a757600080fd5b506102286102b6366004611b69565b6106b9565b3480156102c757600080fd5b506101f2610751565b3480156102dc57600080fd5b5061023f61075a565b3480156102f157600080fd5b50610228610300366004611a8c565b610760565b34801561031157600080fd5b5061023f610320366004611b69565b610798565b6102286107ea565b34801561033957600080fd5b50610228610348366004611a8c565b610903565b34801561035957600080fd5b5061036d610368366004611a40565b61091e565b6040516101ff9190611d06565b34801561038657600080fd5b5061023f610395366004611c2a565b6109dc565b3480156103a657600080fd5b506102286103b5366004611be4565b610a37565b6102286103c8366004611c2a565b610a89565b3480156103d957600080fd5b5061028e6103e8366004611c2a565b610c12565b3480156103f957600080fd5b5061023f610408366004611a40565b610c47565b34801561041957600080fd5b50610228610c8b565b34801561042e57600080fd5b5061022861043d366004611c2a565b610d14565b34801561044e57600080fd5b5061028e610d58565b34801561046357600080fd5b50610228610472366004611c2a565b610d67565b34801561048357600080fd5b50610261610dab565b34801561049857600080fd5b5061023f610dba565b3480156104ad57600080fd5b506102286104bc366004611b40565b610dc0565b3480156104cd57600080fd5b506102286104dc366004611ac7565b610e8e565b3480156104ed57600080fd5b506102616104fc366004611c2a565b610ecd565b34801561050d57600080fd5b5061023f610f50565b34801561052257600080fd5b506101f2610531366004611a5a565b610f56565b34801561054257600080fd5b50610228610551366004611a40565b610f84565b60006001600160e01b0319821663780e9d6360e01b148061057b575061057b8261104b565b90505b919050565b61058b61108b565b6001600160a01b031661059c610d58565b6001600160a01b0316146105cb5760405162461bcd60e51b81526004016105c290612190565b60405180910390fd5b600d805460ff1916911515919091179055565b600e5481565b6060600080546105f390612409565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90612409565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b60006106818261108f565b61069d5760405162461bcd60e51b81526004016105c290612144565b506000908152600460205260409020546001600160a01b031690565b60006106c482610c12565b9050806001600160a01b0316836001600160a01b031614156106f85760405162461bcd60e51b81526004016105c29061225d565b806001600160a01b031661070a61108b565b6001600160a01b0316148061072657506107268161053161108b565b6107425760405162461bcd60e51b81526004016105c29061201f565b61074c83836110ac565b505050565b600d5460ff1681565b60085490565b61077161076b61108b565b8261111a565b61078d5760405162461bcd60e51b81526004016105c2906122d5565b61074c83838361119f565b60006107a383610c47565b82106107c15760405162461bcd60e51b81526004016105c290611d8d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107f261108b565b6001600160a01b0316610803610d58565b6001600160a01b0316146108295760405162461bcd60e51b81526004016105c290612190565b6702c68af0bb140000471161083d57600080fd5b600061085167016345785d8a0000476123c6565b905060005b6012548110156108ff5760006012828154811061088357634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201805460018201549192506001600160a01b0316906108fc906064906108b890876123a7565b6108c29190612393565b6040518115909202916000818181858888f193505050501580156108ea573d6000803e3d6000fd5b505080806108f790612444565b915050610856565b5050565b61074c83838360405180602001604052806000815250610e8e565b6060600061092b83610c47565b905060008167ffffffffffffffff81111561095657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561097f578160200160208202803683370190505b50905060005b828110156109d4576109978582610798565b8282815181106109b757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109cc81612444565b915050610985565b509392505050565b60006109e661075a565b8210610a045760405162461bcd60e51b81526004016105c290612326565b60088281548110610a2557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a3f61108b565b6001600160a01b0316610a50610d58565b6001600160a01b031614610a765760405162461bcd60e51b81526004016105c290612190565b80516108ff90600b906020840190611910565b6000610a9361075a565b600d5490915060ff1615610ab95760405162461bcd60e51b81526004016105c290611d68565b60028210610ad95760405162461bcd60e51b81526004016105c290611ea7565b600e54600f546001600160a01b03166370a08231610af561108b565b6040518263ffffffff1660e01b8152600401610b119190611cb5565b60206040518083038186803b158015610b2957600080fd5b505afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190611c42565b1015610b7f5760405162461bcd60e51b81526004016105c290611fe8565b601054610b8e906101f56123c6565b610b98838361237b565b10610bb55760405162461bcd60e51b81526004016105c290611fb1565b81600c54610bc391906123a7565b341015610be25760405162461bcd60e51b81526004016105c29061229e565b60005b8281101561074c57610c0033610bfb838561237b565b6112cc565b80610c0a81612444565b915050610be5565b6000818152600260205260408120546001600160a01b03168061057b5760405162461bcd60e51b81526004016105c2906120c6565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016105c29061207c565b506001600160a01b031660009081526003602052604090205490565b610c9361108b565b6001600160a01b0316610ca4610d58565b6001600160a01b031614610cca5760405162461bcd60e51b81526004016105c290612190565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610d1c61108b565b6001600160a01b0316610d2d610d58565b6001600160a01b031614610d535760405162461bcd60e51b81526004016105c290612190565b600e55565b600a546001600160a01b031690565b610d6f61108b565b6001600160a01b0316610d80610d58565b6001600160a01b031614610da65760405162461bcd60e51b81526004016105c290612190565b600c55565b6060600180546105f390612409565b600c5490565b610dc861108b565b6001600160a01b0316826001600160a01b03161415610df95760405162461bcd60e51b81526004016105c290611f2e565b8060056000610e0661108b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e4a61108b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e829190611d4a565b60405180910390a35050565b610e9f610e9961108b565b8361111a565b610ebb5760405162461bcd60e51b81526004016105c2906122d5565b610ec7848484846112e6565b50505050565b6060610ed88261108f565b610ef45760405162461bcd60e51b81526004016105c29061220e565b6000610efe611319565b90506000815111610f1e5760405180602001604052806000815250610f49565b80610f2884611328565b604051602001610f39929190611c86565b6040516020818303038152906040525b9392505050565b600e5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f8c61108b565b6001600160a01b0316610f9d610d58565b6001600160a01b031614610fc35760405162461bcd60e51b81526004016105c290612190565b6001600160a01b038116610fe95760405162461bcd60e51b81526004016105c290611e2a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061107c57506001600160e01b03198216635b5e139f60e01b145b8061057b575061057b82611443565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110e182610c12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111258261108f565b6111415760405162461bcd60e51b81526004016105c290611f65565b600061114c83610c12565b9050806001600160a01b0316846001600160a01b031614806111875750836001600160a01b031661117c84610676565b6001600160a01b0316145b8061119757506111978185610f56565b949350505050565b826001600160a01b03166111b282610c12565b6001600160a01b0316146111d85760405162461bcd60e51b81526004016105c2906121c5565b6001600160a01b0382166111fe5760405162461bcd60e51b81526004016105c290611eea565b61120983838361145c565b6112146000826110ac565b6001600160a01b038316600090815260036020526040812080546001929061123d9084906123c6565b90915550506001600160a01b038216600090815260036020526040812080546001929061126b90849061237b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ff8282604051806020016040528060008152506114e5565b6112f184848461119f565b6112fd84848484611518565b610ec75760405162461bcd60e51b81526004016105c290611dd8565b6060600b80546105f390612409565b60608161134d57506040805180820190915260018152600360fc1b602082015261057e565b8160005b8115611377578061136181612444565b91506113709050600a83612393565b9150611351565b60008167ffffffffffffffff8111156113a057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ca576020820181803683370190505b5090505b8415611197576113df6001836123c6565b91506113ec600a8661245f565b6113f790603061237b565b60f81b81838151811061141a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061143c600a86612393565b94506113ce565b6001600160e01b031981166301ffc9a760e01b14919050565b61146783838361074c565b6001600160a01b0383166114835761147e81611633565b6114a6565b816001600160a01b0316836001600160a01b0316146114a6576114a68382611677565b6001600160a01b0382166114c2576114bd81611714565b61074c565b826001600160a01b0316826001600160a01b03161461074c5761074c82826117ed565b6114ef8383611831565b6114fc6000848484611518565b61074c5760405162461bcd60e51b81526004016105c290611dd8565b600061152c846001600160a01b0316611045565b1561162857836001600160a01b031663150b7a0261154861108b565b8786866040518563ffffffff1660e01b815260040161156a9493929190611cc9565b602060405180830381600087803b15801561158457600080fd5b505af19250505080156115b4575060408051601f3d908101601f191682019092526115b191810190611bc8565b60015b61160e573d8080156115e2576040519150601f19603f3d011682016040523d82523d6000602084013e6115e7565b606091505b5080516116065760405162461bcd60e51b81526004016105c290611dd8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611197565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161168484610c47565b61168e91906123c6565b6000838152600760205260409020549091508082146116e1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611726906001906123c6565b6000838152600960205260408120546008805493945090928490811061175c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061178b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006117f883610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118575760405162461bcd60e51b81526004016105c29061210f565b6118608161108f565b1561187d5760405162461bcd60e51b81526004016105c290611e70565b6118896000838361145c565b6001600160a01b03821660009081526003602052604081208054600192906118b290849061237b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191c90612409565b90600052602060002090601f01602090048101928261193e5760008555611984565b82601f1061195757805160ff1916838001178555611984565b82800160010185558215611984579182015b82811115611984578251825591602001919060010190611969565b50611990929150611994565b5090565b5b808211156119905760008155600101611995565b600067ffffffffffffffff808411156119c4576119c461249f565b604051601f8501601f1916810160200182811182821017156119e8576119e861249f565b604052848152915081838501861015611a0057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461057e57600080fd5b8035801515811461057e57600080fd5b600060208284031215611a51578081fd5b610f4982611a19565b60008060408385031215611a6c578081fd5b611a7583611a19565b9150611a8360208401611a19565b90509250929050565b600080600060608486031215611aa0578081fd5b611aa984611a19565b9250611ab760208501611a19565b9150604084013590509250925092565b60008060008060808587031215611adc578081fd5b611ae585611a19565b9350611af360208601611a19565b925060408501359150606085013567ffffffffffffffff811115611b15578182fd5b8501601f81018713611b25578182fd5b611b34878235602084016119a9565b91505092959194509250565b60008060408385031215611b52578182fd5b611b5b83611a19565b9150611a8360208401611a30565b60008060408385031215611b7b578182fd5b611b8483611a19565b946020939093013593505050565b600060208284031215611ba3578081fd5b610f4982611a30565b600060208284031215611bbd578081fd5b8135610f49816124b5565b600060208284031215611bd9578081fd5b8151610f49816124b5565b600060208284031215611bf5578081fd5b813567ffffffffffffffff811115611c0b578182fd5b8201601f81018413611c1b578182fd5b611197848235602084016119a9565b600060208284031215611c3b578081fd5b5035919050565b600060208284031215611c53578081fd5b5051919050565b60008151808452611c728160208601602086016123dd565b601f01601f19169290920160200192915050565b60008351611c988184602088016123dd565b835190830190611cac8183602088016123dd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cfc90830184611c5a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d3e57835183529284019291840191600101611d22565b50909695505050505050565b901515815260200190565b600060208252610f496020830184611c5a565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526023908201527f596f752063616e206275792061206d6178696d756d206f662031204e4f4f4e4560408201526213919560ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601f908201527f45786365656473206d6178696d756d204e4f4f4e454e465420737570706c7900604082015260600190565b60208082526017908201527f4e6f7420656e6f756768204e4f4f4e4520746f6b656e73000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b6000821982111561238e5761238e612473565b500190565b6000826123a2576123a2612489565b500490565b60008160001904831182151516156123c1576123c1612473565b500290565b6000828210156123d8576123d8612473565b500390565b60005b838110156123f85781810151838201526020016123e0565b83811115610ec75750506000910152565b60028104600182168061241d57607f821691505b6020821081141561243e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245857612458612473565b5060010190565b60008261246e5761246e612489565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124cb57600080fd5b5056fea2646970667358221220cace3969359db1b7208f5d01b48e957377bedb3aedfa350ba4419ed49d7f484264736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80635ebd612f116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104e1578063cfc7e2da14610501578063e985e9c514610516578063f2fde38b14610536576101cd565b806395d89b411461047757806398d5fdca1461048c578063a22cb465146104a1578063b88d4fde146104c1576101cd565b8063715018a6116100d1578063715018a61461040d578063897b0637146104225780638da5cb5b1461044257806391b7f5ed14610457576101cd565b80635ebd612f146103ba5780636352211e146103cd57806370a08231146103ed576101cd565b806318160ddd1161016f57806342842e0e1161013e57806342842e0e1461032d578063438b63001461034d5780634f6ccce71461037a57806355f804b31461039a576101cd565b806318160ddd146102d057806323b872dd146102e55780632f745c59146103055780633ccfd60b14610325576101cd565b806306fdde03116101ab57806306fdde031461024c578063081812fc1461026e578063095ea7b31461029b57806316c61ccc146102bb576101cd565b806301ffc9a7146101d257806302329a2914610208578063064d4d7c1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bac565b610556565b6040516101ff9190611d4a565b60405180910390f35b34801561021457600080fd5b50610228610223366004611b92565b610583565b005b34801561023657600080fd5b5061023f6105de565b6040516101ff9190612372565b34801561025857600080fd5b506102616105e4565b6040516101ff9190611d55565b34801561027a57600080fd5b5061028e610289366004611c2a565b610676565b6040516101ff9190611cb5565b3480156102a757600080fd5b506102286102b6366004611b69565b6106b9565b3480156102c757600080fd5b506101f2610751565b3480156102dc57600080fd5b5061023f61075a565b3480156102f157600080fd5b50610228610300366004611a8c565b610760565b34801561031157600080fd5b5061023f610320366004611b69565b610798565b6102286107ea565b34801561033957600080fd5b50610228610348366004611a8c565b610903565b34801561035957600080fd5b5061036d610368366004611a40565b61091e565b6040516101ff9190611d06565b34801561038657600080fd5b5061023f610395366004611c2a565b6109dc565b3480156103a657600080fd5b506102286103b5366004611be4565b610a37565b6102286103c8366004611c2a565b610a89565b3480156103d957600080fd5b5061028e6103e8366004611c2a565b610c12565b3480156103f957600080fd5b5061023f610408366004611a40565b610c47565b34801561041957600080fd5b50610228610c8b565b34801561042e57600080fd5b5061022861043d366004611c2a565b610d14565b34801561044e57600080fd5b5061028e610d58565b34801561046357600080fd5b50610228610472366004611c2a565b610d67565b34801561048357600080fd5b50610261610dab565b34801561049857600080fd5b5061023f610dba565b3480156104ad57600080fd5b506102286104bc366004611b40565b610dc0565b3480156104cd57600080fd5b506102286104dc366004611ac7565b610e8e565b3480156104ed57600080fd5b506102616104fc366004611c2a565b610ecd565b34801561050d57600080fd5b5061023f610f50565b34801561052257600080fd5b506101f2610531366004611a5a565b610f56565b34801561054257600080fd5b50610228610551366004611a40565b610f84565b60006001600160e01b0319821663780e9d6360e01b148061057b575061057b8261104b565b90505b919050565b61058b61108b565b6001600160a01b031661059c610d58565b6001600160a01b0316146105cb5760405162461bcd60e51b81526004016105c290612190565b60405180910390fd5b600d805460ff1916911515919091179055565b600e5481565b6060600080546105f390612409565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90612409565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b60006106818261108f565b61069d5760405162461bcd60e51b81526004016105c290612144565b506000908152600460205260409020546001600160a01b031690565b60006106c482610c12565b9050806001600160a01b0316836001600160a01b031614156106f85760405162461bcd60e51b81526004016105c29061225d565b806001600160a01b031661070a61108b565b6001600160a01b0316148061072657506107268161053161108b565b6107425760405162461bcd60e51b81526004016105c29061201f565b61074c83836110ac565b505050565b600d5460ff1681565b60085490565b61077161076b61108b565b8261111a565b61078d5760405162461bcd60e51b81526004016105c2906122d5565b61074c83838361119f565b60006107a383610c47565b82106107c15760405162461bcd60e51b81526004016105c290611d8d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107f261108b565b6001600160a01b0316610803610d58565b6001600160a01b0316146108295760405162461bcd60e51b81526004016105c290612190565b6702c68af0bb140000471161083d57600080fd5b600061085167016345785d8a0000476123c6565b905060005b6012548110156108ff5760006012828154811061088357634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201805460018201549192506001600160a01b0316906108fc906064906108b890876123a7565b6108c29190612393565b6040518115909202916000818181858888f193505050501580156108ea573d6000803e3d6000fd5b505080806108f790612444565b915050610856565b5050565b61074c83838360405180602001604052806000815250610e8e565b6060600061092b83610c47565b905060008167ffffffffffffffff81111561095657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561097f578160200160208202803683370190505b50905060005b828110156109d4576109978582610798565b8282815181106109b757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109cc81612444565b915050610985565b509392505050565b60006109e661075a565b8210610a045760405162461bcd60e51b81526004016105c290612326565b60088281548110610a2557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a3f61108b565b6001600160a01b0316610a50610d58565b6001600160a01b031614610a765760405162461bcd60e51b81526004016105c290612190565b80516108ff90600b906020840190611910565b6000610a9361075a565b600d5490915060ff1615610ab95760405162461bcd60e51b81526004016105c290611d68565b60028210610ad95760405162461bcd60e51b81526004016105c290611ea7565b600e54600f546001600160a01b03166370a08231610af561108b565b6040518263ffffffff1660e01b8152600401610b119190611cb5565b60206040518083038186803b158015610b2957600080fd5b505afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190611c42565b1015610b7f5760405162461bcd60e51b81526004016105c290611fe8565b601054610b8e906101f56123c6565b610b98838361237b565b10610bb55760405162461bcd60e51b81526004016105c290611fb1565b81600c54610bc391906123a7565b341015610be25760405162461bcd60e51b81526004016105c29061229e565b60005b8281101561074c57610c0033610bfb838561237b565b6112cc565b80610c0a81612444565b915050610be5565b6000818152600260205260408120546001600160a01b03168061057b5760405162461bcd60e51b81526004016105c2906120c6565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016105c29061207c565b506001600160a01b031660009081526003602052604090205490565b610c9361108b565b6001600160a01b0316610ca4610d58565b6001600160a01b031614610cca5760405162461bcd60e51b81526004016105c290612190565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610d1c61108b565b6001600160a01b0316610d2d610d58565b6001600160a01b031614610d535760405162461bcd60e51b81526004016105c290612190565b600e55565b600a546001600160a01b031690565b610d6f61108b565b6001600160a01b0316610d80610d58565b6001600160a01b031614610da65760405162461bcd60e51b81526004016105c290612190565b600c55565b6060600180546105f390612409565b600c5490565b610dc861108b565b6001600160a01b0316826001600160a01b03161415610df95760405162461bcd60e51b81526004016105c290611f2e565b8060056000610e0661108b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e4a61108b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e829190611d4a565b60405180910390a35050565b610e9f610e9961108b565b8361111a565b610ebb5760405162461bcd60e51b81526004016105c2906122d5565b610ec7848484846112e6565b50505050565b6060610ed88261108f565b610ef45760405162461bcd60e51b81526004016105c29061220e565b6000610efe611319565b90506000815111610f1e5760405180602001604052806000815250610f49565b80610f2884611328565b604051602001610f39929190611c86565b6040516020818303038152906040525b9392505050565b600e5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f8c61108b565b6001600160a01b0316610f9d610d58565b6001600160a01b031614610fc35760405162461bcd60e51b81526004016105c290612190565b6001600160a01b038116610fe95760405162461bcd60e51b81526004016105c290611e2a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061107c57506001600160e01b03198216635b5e139f60e01b145b8061057b575061057b82611443565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110e182610c12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111258261108f565b6111415760405162461bcd60e51b81526004016105c290611f65565b600061114c83610c12565b9050806001600160a01b0316846001600160a01b031614806111875750836001600160a01b031661117c84610676565b6001600160a01b0316145b8061119757506111978185610f56565b949350505050565b826001600160a01b03166111b282610c12565b6001600160a01b0316146111d85760405162461bcd60e51b81526004016105c2906121c5565b6001600160a01b0382166111fe5760405162461bcd60e51b81526004016105c290611eea565b61120983838361145c565b6112146000826110ac565b6001600160a01b038316600090815260036020526040812080546001929061123d9084906123c6565b90915550506001600160a01b038216600090815260036020526040812080546001929061126b90849061237b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ff8282604051806020016040528060008152506114e5565b6112f184848461119f565b6112fd84848484611518565b610ec75760405162461bcd60e51b81526004016105c290611dd8565b6060600b80546105f390612409565b60608161134d57506040805180820190915260018152600360fc1b602082015261057e565b8160005b8115611377578061136181612444565b91506113709050600a83612393565b9150611351565b60008167ffffffffffffffff8111156113a057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ca576020820181803683370190505b5090505b8415611197576113df6001836123c6565b91506113ec600a8661245f565b6113f790603061237b565b60f81b81838151811061141a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061143c600a86612393565b94506113ce565b6001600160e01b031981166301ffc9a760e01b14919050565b61146783838361074c565b6001600160a01b0383166114835761147e81611633565b6114a6565b816001600160a01b0316836001600160a01b0316146114a6576114a68382611677565b6001600160a01b0382166114c2576114bd81611714565b61074c565b826001600160a01b0316826001600160a01b03161461074c5761074c82826117ed565b6114ef8383611831565b6114fc6000848484611518565b61074c5760405162461bcd60e51b81526004016105c290611dd8565b600061152c846001600160a01b0316611045565b1561162857836001600160a01b031663150b7a0261154861108b565b8786866040518563ffffffff1660e01b815260040161156a9493929190611cc9565b602060405180830381600087803b15801561158457600080fd5b505af19250505080156115b4575060408051601f3d908101601f191682019092526115b191810190611bc8565b60015b61160e573d8080156115e2576040519150601f19603f3d011682016040523d82523d6000602084013e6115e7565b606091505b5080516116065760405162461bcd60e51b81526004016105c290611dd8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611197565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161168484610c47565b61168e91906123c6565b6000838152600760205260409020549091508082146116e1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611726906001906123c6565b6000838152600960205260408120546008805493945090928490811061175c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061178b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006117f883610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118575760405162461bcd60e51b81526004016105c29061210f565b6118608161108f565b1561187d5760405162461bcd60e51b81526004016105c290611e70565b6118896000838361145c565b6001600160a01b03821660009081526003602052604081208054600192906118b290849061237b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191c90612409565b90600052602060002090601f01602090048101928261193e5760008555611984565b82601f1061195757805160ff1916838001178555611984565b82800160010185558215611984579182015b82811115611984578251825591602001919060010190611969565b50611990929150611994565b5090565b5b808211156119905760008155600101611995565b600067ffffffffffffffff808411156119c4576119c461249f565b604051601f8501601f1916810160200182811182821017156119e8576119e861249f565b604052848152915081838501861015611a0057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461057e57600080fd5b8035801515811461057e57600080fd5b600060208284031215611a51578081fd5b610f4982611a19565b60008060408385031215611a6c578081fd5b611a7583611a19565b9150611a8360208401611a19565b90509250929050565b600080600060608486031215611aa0578081fd5b611aa984611a19565b9250611ab760208501611a19565b9150604084013590509250925092565b60008060008060808587031215611adc578081fd5b611ae585611a19565b9350611af360208601611a19565b925060408501359150606085013567ffffffffffffffff811115611b15578182fd5b8501601f81018713611b25578182fd5b611b34878235602084016119a9565b91505092959194509250565b60008060408385031215611b52578182fd5b611b5b83611a19565b9150611a8360208401611a30565b60008060408385031215611b7b578182fd5b611b8483611a19565b946020939093013593505050565b600060208284031215611ba3578081fd5b610f4982611a30565b600060208284031215611bbd578081fd5b8135610f49816124b5565b600060208284031215611bd9578081fd5b8151610f49816124b5565b600060208284031215611bf5578081fd5b813567ffffffffffffffff811115611c0b578182fd5b8201601f81018413611c1b578182fd5b611197848235602084016119a9565b600060208284031215611c3b578081fd5b5035919050565b600060208284031215611c53578081fd5b5051919050565b60008151808452611c728160208601602086016123dd565b601f01601f19169290920160200192915050565b60008351611c988184602088016123dd565b835190830190611cac8183602088016123dd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cfc90830184611c5a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d3e57835183529284019291840191600101611d22565b50909695505050505050565b901515815260200190565b600060208252610f496020830184611c5a565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526023908201527f596f752063616e206275792061206d6178696d756d206f662031204e4f4f4e4560408201526213919560ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601f908201527f45786365656473206d6178696d756d204e4f4f4e454e465420737570706c7900604082015260600190565b60208082526017908201527f4e6f7420656e6f756768204e4f4f4e4520746f6b656e73000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b6000821982111561238e5761238e612473565b500190565b6000826123a2576123a2612489565b500490565b60008160001904831182151516156123c1576123c1612473565b500290565b6000828210156123d8576123d8612473565b500390565b60005b838110156123f85781810151838201526020016123e0565b83811115610ec75750506000910152565b60028104600182168061241d57607f821691505b6020821081141561243e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245857612458612473565b5060010190565b60008261246e5761246e612489565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124cb57600080fd5b5056fea2646970667358221220cace3969359db1b7208f5d01b48e957377bedb3aedfa350ba4419ed49d7f484264736f6c63430008000033

Deployed Bytecode Sourcemap

43789:2949:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37652:237;;;;;;;;;;-1:-1:-1;37652:237:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46334:74;;;;;;;;;;-1:-1:-1;46334:74:0;;;;;:::i;:::-;;:::i;:::-;;43983:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25964:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27424:221::-;;;;;;;;;;-1:-1:-1;27424:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26961:397::-;;;;;;;;;;-1:-1:-1;26961:397:0;;;;;:::i;:::-;;:::i;43950:26::-;;;;;;;;;;;;;:::i;38305:113::-;;;;;;;;;;;;;:::i;28314:305::-;;;;;;;;;;-1:-1:-1;28314:305:0;;;;;:::i;:::-;;:::i;37973:256::-;;;;;;;;;;-1:-1:-1;37973:256:0;;;;;:::i;:::-;;:::i;46416:319::-;;;:::i;28690:151::-;;;;;;;;;;-1:-1:-1;28690:151:0;;;;;:::i;:::-;;:::i;45332:342::-;;;;;;;;;;-1:-1:-1;45332:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38495:233::-;;;;;;;;;;-1:-1:-1;38495:233:0;;;;;:::i;:::-;;:::i;46133:102::-;;;;;;;;;;-1:-1:-1;46133:102:0;;;;;:::i;:::-;;:::i;44668:654::-;;;;;;:::i;:::-;;:::i;25658:239::-;;;;;;;;;;-1:-1:-1;25658:239:0;;;;;:::i;:::-;;:::i;25388:208::-;;;;;;;;;;-1:-1:-1;25388:208:0;;;;;:::i;:::-;;:::i;19616:148::-;;;;;;;;;;;;;:::i;45787:109::-;;;;;;;;;;-1:-1:-1;45787:109:0;;;;;:::i;:::-;;:::i;18965:87::-;;;;;;;;;;;;;:::i;45682:93::-;;;;;;;;;;-1:-1:-1;45682:93:0;;;;;:::i;:::-;;:::i;26133:104::-;;;;;;;;;;;;;:::i;46243:81::-;;;;;;;;;;;;;:::i;27717:295::-;;;;;;;;;;-1:-1:-1;27717:295:0;;;;;:::i;:::-;;:::i;28912:285::-;;;;;;;;;;-1:-1:-1;28912:285:0;;;;;:::i;:::-;;:::i;26308:360::-;;;;;;;;;;-1:-1:-1;26308:360:0;;;;;:::i;:::-;;:::i;45914:89::-;;;;;;;;;;;;;:::i;28083:164::-;;;;;;;;;;-1:-1:-1;28083:164:0;;;;;:::i;:::-;;:::i;19919:244::-;;;;;;;;;;-1:-1:-1;19919:244:0;;;;;:::i;:::-;;:::i;37652:237::-;37754:4;-1:-1:-1;;;;;;37778:50:0;;-1:-1:-1;;;37778:50:0;;:103;;;37845:36;37869:11;37845:23;:36::i;:::-;37771:110;;37652:237;;;;:::o;46334:74::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;;;;;;;;;46387:7:::1;:13:::0;;-1:-1:-1;;46387:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46334:74::o;43983:45::-;;;;:::o;25964:100::-;26018:13;26051:5;26044:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25964:100;:::o;27424:221::-;27500:7;27528:16;27536:7;27528;:16::i;:::-;27520:73;;;;-1:-1:-1;;;27520:73:0;;;;;;;:::i;:::-;-1:-1:-1;27613:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27613:24:0;;27424:221::o;26961:397::-;27042:13;27058:23;27073:7;27058:14;:23::i;:::-;27042:39;;27106:5;-1:-1:-1;;;;;27100:11:0;:2;-1:-1:-1;;;;;27100:11:0;;;27092:57;;;;-1:-1:-1;;;27092:57:0;;;;;;;:::i;:::-;27186:5;-1:-1:-1;;;;;27170:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27170:21:0;;:62;;;;27195:37;27212:5;27219:12;:10;:12::i;27195:37::-;27162:154;;;;-1:-1:-1;;;27162:154:0;;;;;;;:::i;:::-;27329:21;27338:2;27342:7;27329:8;:21::i;:::-;26961:397;;;:::o;43950:26::-;;;;;;:::o;38305:113::-;38393:10;:17;38305:113;:::o;28314:305::-;28475:41;28494:12;:10;:12::i;:::-;28508:7;28475:18;:41::i;:::-;28467:103;;;;-1:-1:-1;;;28467:103:0;;;;;;;:::i;:::-;28583:28;28593:4;28599:2;28603:7;28583:9;:28::i;37973:256::-;38070:7;38106:23;38123:5;38106:16;:23::i;:::-;38098:5;:31;38090:87;;;;-1:-1:-1;;;38090:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38195:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37973:256::o;46416:319::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;44265:9:::1;44241:21;:33;44233:42;;;::::0;::::1;;46490:13:::2;46506:33;46530:9;46506:21;:33;:::i;:::-;46490:49;;46554:6;46550:178;46570:14;:21:::0;46566:25;::::2;46550:178;;;46612:24;46639:14;46654:1;46639:17;;;;;;-1:-1:-1::0;;;46639:17:0::2;;;;;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;46671:6:::0;;;46699:9;::::2;::::0;46639:17;;-1:-1:-1;;;;;;46671:6:0::2;::::0;:45:::2;::::0;46712:3:::2;::::0;46688:20:::2;::::0;:8;:20:::2;:::i;:::-;46687:28;;;;:::i;:::-;46671:45;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;46550:178;46593:3;;;;;:::i;:::-;;;;46550:178;;;;44286:1;46416:319::o:0;28690:151::-;28794:39;28811:4;28817:2;28821:7;28794:39;;;;;;;;;;;;:16;:39::i;45332:342::-;45391:16;45420:18;45441:17;45451:6;45441:9;:17::i;:::-;45420:38;;45471:25;45513:10;45499:25;;;;;;-1:-1:-1;;;45499:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45499:25:0;;45471:53;;45539:9;45535:106;45554:10;45550:1;:14;45535:106;;;45599:30;45619:6;45627:1;45599:19;:30::i;:::-;45585:8;45594:1;45585:11;;;;;;-1:-1:-1;;;45585:11:0;;;;;;;;;;;;;;;;;;:44;45566:3;;;;:::i;:::-;;;;45535:106;;;-1:-1:-1;45658:8:0;45332:342;-1:-1:-1;;;45332:342:0:o;38495:233::-;38570:7;38606:30;:28;:30::i;:::-;38598:5;:38;38590:95;;;;-1:-1:-1;;;38590:95:0;;;;;;;:::i;:::-;38703:10;38714:5;38703:17;;;;;;-1:-1:-1;;;38703:17:0;;;;;;;;;;;;;;;;;38696:24;;38495:233;;;:::o;46133:102::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;46204:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;44668:654::-:0;44725:14;44742:13;:11;:13::i;:::-;44776:7;;44725:30;;-1:-1:-1;44776:7:0;;44775:8;44766:63;;;;-1:-1:-1;;;44766:63:0;;;;;;;:::i;:::-;44855:1;44849:3;:7;44840:87;;;;-1:-1:-1;;;44840:87:0;;;;;;;:::i;:::-;44980:10;;44946:6;;-1:-1:-1;;;;;44946:6:0;:16;44963:12;:10;:12::i;:::-;44946:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;44938:80;;;;-1:-1:-1;;;44938:80:0;;;;;;;:::i;:::-;45059:9;;45053:15;;:3;:15;:::i;:::-;45038:12;45047:3;45038:6;:12;:::i;:::-;:30;45029:95;;;;-1:-1:-1;;;45029:95:0;;;;;;;:::i;:::-;45166:3;45157:6;;:12;;;;:::i;:::-;45144:9;:25;;45135:77;;;;-1:-1:-1;;;45135:77:0;;;;;;;:::i;:::-;45229:9;45225:90;45244:3;45240:1;:7;45225:90;;;45268:35;45279:10;45291;45300:1;45291:6;:10;:::i;:::-;45268:9;:35::i;:::-;45249:3;;;;:::i;:::-;;;;45225:90;;25658:239;25730:7;25766:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25766:16:0;25801:19;25793:73;;;;-1:-1:-1;;;25793:73:0;;;;;;;:::i;25388:208::-;25460:7;-1:-1:-1;;;;;25488:19:0;;25480:74;;;;-1:-1:-1;;;25480:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25572:16:0;;;;;:9;:16;;;;;;;25388:208::o;19616:148::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;19707:6:::1;::::0;19686:40:::1;::::0;19723:1:::1;::::0;-1:-1:-1;;;;;19707:6:0::1;::::0;19686:40:::1;::::0;19723:1;;19686:40:::1;19737:6;:19:::0;;-1:-1:-1;;;;;;19737:19:0::1;::::0;;19616:148::o;45787:109::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;45862:10:::1;:26:::0;45787:109::o;18965:87::-;19038:6;;-1:-1:-1;;;;;19038:6:0;18965:87;:::o;45682:93::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;45749:6:::1;:18:::0;45682:93::o;26133:104::-;26189:13;26222:7;26215:14;;;;;:::i;46243:81::-;46310:6;;46243:81;:::o;27717:295::-;27832:12;:10;:12::i;:::-;-1:-1:-1;;;;;27820:24:0;:8;-1:-1:-1;;;;;27820:24:0;;;27812:62;;;;-1:-1:-1;;;27812:62:0;;;;;;;:::i;:::-;27932:8;27887:18;:32;27906:12;:10;:12::i;:::-;-1:-1:-1;;;;;27887:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27887:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27887:53:0;;;;;;;;;;;27971:12;:10;:12::i;:::-;-1:-1:-1;;;;;27956:48:0;;27995:8;27956:48;;;;;;:::i;:::-;;;;;;;;27717:295;;:::o;28912:285::-;29044:41;29063:12;:10;:12::i;:::-;29077:7;29044:18;:41::i;:::-;29036:103;;;;-1:-1:-1;;;29036:103:0;;;;;;;:::i;:::-;29150:39;29164:4;29170:2;29174:7;29183:5;29150:13;:39::i;:::-;28912:285;;;;:::o;26308:360::-;26381:13;26415:16;26423:7;26415;:16::i;:::-;26407:76;;;;-1:-1:-1;;;26407:76:0;;;;;;;:::i;:::-;26496:21;26520:10;:8;:10::i;:::-;26496:34;;26572:1;26554:7;26548:21;:25;:112;;;;;;;;;;;;;;;;;26613:7;26622:18;:7;:16;:18::i;:::-;26596:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26548:112;26541:119;26308:360;-1:-1:-1;;;26308:360:0:o;45914:89::-;45985:10;;45914:89;:::o;28083:164::-;-1:-1:-1;;;;;28204:25:0;;;28180:4;28204:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28083:164::o;19919:244::-;19196:12;:10;:12::i;:::-;-1:-1:-1;;;;;19185:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19185:23:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20008:22:0;::::1;20000:73;;;;-1:-1:-1::0;;;20000:73:0::1;;;;;;;:::i;:::-;20110:6;::::0;20089:38:::1;::::0;-1:-1:-1;;;;;20089:38:0;;::::1;::::0;20110:6:::1;::::0;20089:38:::1;::::0;20110:6:::1;::::0;20089:38:::1;20138:6;:17:::0;;-1:-1:-1;;;;;;20138:17:0::1;-1:-1:-1::0;;;;;20138:17:0;;;::::1;::::0;;;::::1;::::0;;19919:244::o;4645:422::-;5012:20;5051:8;;;4645:422::o;25032:292::-;25134:4;-1:-1:-1;;;;;;25158:40:0;;-1:-1:-1;;;25158:40:0;;:105;;-1:-1:-1;;;;;;;25215:48:0;;-1:-1:-1;;;25215:48:0;25158:105;:158;;;;25280:36;25304:11;25280:23;:36::i;3614:98::-;3694:10;3614:98;:::o;30664:127::-;30729:4;30753:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30753:16:0;:30;;;30664:127::o;34541:174::-;34616:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34616:29:0;-1:-1:-1;;;;;34616:29:0;;;;;;;;:24;;34670:23;34616:24;34670:14;:23::i;:::-;-1:-1:-1;;;;;34661:46:0;;;;;;;;;;;34541:174;;:::o;30958:348::-;31051:4;31076:16;31084:7;31076;:16::i;:::-;31068:73;;;;-1:-1:-1;;;31068:73:0;;;;;;;:::i;:::-;31152:13;31168:23;31183:7;31168:14;:23::i;:::-;31152:39;;31221:5;-1:-1:-1;;;;;31210:16:0;:7;-1:-1:-1;;;;;31210:16:0;;:51;;;;31254:7;-1:-1:-1;;;;;31230:31:0;:20;31242:7;31230:11;:20::i;:::-;-1:-1:-1;;;;;31230:31:0;;31210:51;:87;;;;31265:32;31282:5;31289:7;31265:16;:32::i;:::-;31202:96;30958:348;-1:-1:-1;;;;30958:348:0:o;33879:544::-;34004:4;-1:-1:-1;;;;;33977:31:0;:23;33992:7;33977:14;:23::i;:::-;-1:-1:-1;;;;;33977:31:0;;33969:85;;;;-1:-1:-1;;;33969:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34073:16:0;;34065:65;;;;-1:-1:-1;;;34065:65:0;;;;;;;:::i;:::-;34143:39;34164:4;34170:2;34174:7;34143:20;:39::i;:::-;34247:29;34264:1;34268:7;34247:8;:29::i;:::-;-1:-1:-1;;;;;34289:15:0;;;;;;:9;:15;;;;;:20;;34308:1;;34289:15;:20;;34308:1;;34289:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34320:13:0;;;;;;:9;:13;;;;;:18;;34337:1;;34320:13;:18;;34337:1;;34320:18;:::i;:::-;;;;-1:-1:-1;;34349:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34349:21:0;-1:-1:-1;;;;;34349:21:0;;;;;;;;;34388:27;;34349:16;;34388:27;;;;;;;33879:544;;;:::o;31648:110::-;31724:26;31734:2;31738:7;31724:26;;;;;;;;;;;;:9;:26::i;30079:272::-;30193:28;30203:4;30209:2;30213:7;30193:9;:28::i;:::-;30240:48;30263:4;30269:2;30273:7;30282:5;30240:22;:48::i;:::-;30232:111;;;;-1:-1:-1;;;30232:111:0;;;;;;;:::i;46011:114::-;46071:13;46104;46097:20;;;;;:::i;1316:723::-;1372:13;1593:10;1589:53;;-1:-1:-1;1620:10:0;;;;;;;;;;;;-1:-1:-1;;;1620:10:0;;;;;;1589:53;1667:5;1652:12;1708:78;1715:9;;1708:78;;1741:8;;;;:::i;:::-;;-1:-1:-1;1764:10:0;;-1:-1:-1;1772:2:0;1764:10;;:::i;:::-;;;1708:78;;;1796:19;1828:6;1818:17;;;;;;-1:-1:-1;;;1818:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1818:17:0;;1796:39;;1846:154;1853:10;;1846:154;;1880:11;1890:1;1880:11;;:::i;:::-;;-1:-1:-1;1949:10:0;1957:2;1949:5;:10;:::i;:::-;1936:24;;:2;:24;:::i;:::-;1923:39;;1906:6;1913;1906:14;;;;;;-1:-1:-1;;;1906:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1906:56:0;;;;;;;;-1:-1:-1;1977:11:0;1986:2;1977:11;;:::i;:::-;;;1846:154;;928:157;-1:-1:-1;;;;;;1037:40:0;;-1:-1:-1;;;1037:40:0;928:157;;;:::o;39341:555::-;39451:45;39478:4;39484:2;39488:7;39451:26;:45::i;:::-;-1:-1:-1;;;;;39513:18:0;;39509:187;;39548:40;39580:7;39548:31;:40::i;:::-;39509:187;;;39618:2;-1:-1:-1;;;;;39610:10:0;:4;-1:-1:-1;;;;;39610:10:0;;39606:90;;39637:47;39670:4;39676:7;39637:32;:47::i;:::-;-1:-1:-1;;;;;39710:16:0;;39706:183;;39743:45;39780:7;39743:36;:45::i;:::-;39706:183;;;39816:4;-1:-1:-1;;;;;39810:10:0;:2;-1:-1:-1;;;;;39810:10:0;;39806:83;;39837:40;39865:2;39869:7;39837:27;:40::i;31985:250::-;32081:18;32087:2;32091:7;32081:5;:18::i;:::-;32118:54;32149:1;32153:2;32157:7;32166:5;32118:22;:54::i;:::-;32110:117;;;;-1:-1:-1;;;32110:117:0;;;;;;;:::i;35280:843::-;35401:4;35427:15;:2;-1:-1:-1;;;;;35427:13:0;;:15::i;:::-;35423:693;;;35479:2;-1:-1:-1;;;;;35463:36:0;;35500:12;:10;:12::i;:::-;35514:4;35520:7;35529:5;35463:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35463:72:0;;;;;;;;-1:-1:-1;;35463:72:0;;;;;;;;;;;;:::i;:::-;;;35459:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35709:13:0;;35705:341;;35752:60;;-1:-1:-1;;;35752:60:0;;;;;;;:::i;35705:341::-;35996:6;35990:13;35981:6;35977:2;35973:15;35966:38;35459:602;-1:-1:-1;;;;;;35586:55:0;-1:-1:-1;;;35586:55:0;;-1:-1:-1;35579:62:0;;35423:693;-1:-1:-1;36100:4:0;35280:843;;;;;;:::o;40619:164::-;40723:10;:17;;40696:24;;;;:15;:24;;;;;:44;;;40751:24;;;;;;;;;;;;40619:164::o;41410:988::-;41676:22;41726:1;41701:22;41718:4;41701:16;:22::i;:::-;:26;;;;:::i;:::-;41738:18;41759:26;;;:17;:26;;;;;;41676:51;;-1:-1:-1;41892:28:0;;;41888:328;;-1:-1:-1;;;;;41959:18:0;;41937:19;41959:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42010:30;;;;;;:44;;;42127:30;;:17;:30;;;;;:43;;;41888:328;-1:-1:-1;42312:26:0;;;;:17;:26;;;;;;;;42305:33;;;-1:-1:-1;;;;;42356:18:0;;;;;:12;:18;;;;;:34;;;;;;;42349:41;41410:988::o;42693:1079::-;42971:10;:17;42946:22;;42971:21;;42991:1;;42971:21;:::i;:::-;43003:18;43024:24;;;:15;:24;;;;;;43397:10;:26;;42946:46;;-1:-1:-1;43024:24:0;;42946:46;;43397:26;;;;-1:-1:-1;;;43397:26:0;;;;;;;;;;;;;;;;;43375:48;;43461:11;43436:10;43447;43436:22;;;;;;-1:-1:-1;;;43436:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43541:28;;;:15;:28;;;;;;;:41;;;43713:24;;;;;43706:31;43748:10;:16;;;;;-1:-1:-1;;;43748:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42693:1079;;;;:::o;40197:221::-;40282:14;40299:20;40316:2;40299:16;:20::i;:::-;-1:-1:-1;;;;;40330:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40375:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40197:221:0:o;32571:382::-;-1:-1:-1;;;;;32651:16:0;;32643:61;;;;-1:-1:-1;;;32643:61:0;;;;;;;:::i;:::-;32724:16;32732:7;32724;:16::i;:::-;32723:17;32715:58;;;;-1:-1:-1;;;32715:58:0;;;;;;;:::i;:::-;32786:45;32815:1;32819:2;32823:7;32786:20;:45::i;:::-;-1:-1:-1;;;;;32844:13:0;;;;;;:9;:13;;;;;:18;;32861:1;;32844:13;:18;;32861:1;;32844:18;:::i;:::-;;;;-1:-1:-1;;32873:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32873:21:0;-1:-1:-1;;;;;32873:21:0;;;;;;;;32912:33;;32873:16;;;32912:33;;32873:16;;32912:33;32571:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:194::-;;4583:2;4571:9;4562:7;4558:23;4554:32;4551:2;;;4604:6;4596;4589:22;4551:2;-1:-1:-1;4632:16:1;;4541:113;-1:-1:-1;4541:113:1:o;4659:259::-;;4740:5;4734:12;4767:6;4762:3;4755:19;4783:63;4839:6;4832:4;4827:3;4823:14;4816:4;4809:5;4805:16;4783:63;:::i;:::-;4900:2;4879:15;-1:-1:-1;;4875:29:1;4866:39;;;;4907:4;4862:50;;4710:208;-1:-1:-1;;4710:208:1:o;4923:470::-;;5140:6;5134:13;5156:53;5202:6;5197:3;5190:4;5182:6;5178:17;5156:53;:::i;:::-;5272:13;;5231:16;;;;5294:57;5272:13;5231:16;5328:4;5316:17;;5294:57;:::i;:::-;5367:20;;5110:283;-1:-1:-1;;;;5110:283:1:o;5398:203::-;-1:-1:-1;;;;;5562:32:1;;;;5544:51;;5532:2;5517:18;;5499:102::o;5606:490::-;-1:-1:-1;;;;;5875:15:1;;;5857:34;;5927:15;;5922:2;5907:18;;5900:43;5974:2;5959:18;;5952:34;;;6022:3;6017:2;6002:18;;5995:31;;;5606:490;;6043:47;;6070:19;;6062:6;6043:47;:::i;:::-;6035:55;5809:287;-1:-1:-1;;;;;;5809:287:1:o;6101:635::-;6272:2;6324:21;;;6394:13;;6297:18;;;6416:22;;;6101:635;;6272:2;6495:15;;;;6469:2;6454:18;;;6101:635;6541:169;6555:6;6552:1;6549:13;6541:169;;;6616:13;;6604:26;;6685:15;;;;6650:12;;;;6577:1;6570:9;6541:169;;;-1:-1:-1;6727:3:1;;6252:484;-1:-1:-1;;;;;;6252:484:1:o;6741:187::-;6906:14;;6899:22;6881:41;;6869:2;6854:18;;6836:92::o;6933:221::-;;7082:2;7071:9;7064:21;7102:46;7144:2;7133:9;7129:18;7121:6;7102:46;:::i;7159:335::-;7361:2;7343:21;;;7400:2;7380:18;;;7373:30;-1:-1:-1;;;7434:2:1;7419:18;;7412:41;7485:2;7470:18;;7333:161::o;7499:407::-;7701:2;7683:21;;;7740:2;7720:18;;;7713:30;7779:34;7774:2;7759:18;;7752:62;-1:-1:-1;;;7845:2:1;7830:18;;7823:41;7896:3;7881:19;;7673:233::o;7911:414::-;8113:2;8095:21;;;8152:2;8132:18;;;8125:30;8191:34;8186:2;8171:18;;8164:62;-1:-1:-1;;;8257:2:1;8242:18;;8235:48;8315:3;8300:19;;8085:240::o;8330:402::-;8532:2;8514:21;;;8571:2;8551:18;;;8544:30;8610:34;8605:2;8590:18;;8583:62;-1:-1:-1;;;8676:2:1;8661:18;;8654:36;8722:3;8707:19;;8504:228::o;8737:352::-;8939:2;8921:21;;;8978:2;8958:18;;;8951:30;9017;9012:2;8997:18;;8990:58;9080:2;9065:18;;8911:178::o;9094:399::-;9296:2;9278:21;;;9335:2;9315:18;;;9308:30;9374:34;9369:2;9354:18;;9347:62;-1:-1:-1;;;9440:2:1;9425:18;;9418:33;9483:3;9468:19;;9268:225::o;9498:400::-;9700:2;9682:21;;;9739:2;9719:18;;;9712:30;9778:34;9773:2;9758:18;;9751:62;-1:-1:-1;;;9844:2:1;9829:18;;9822:34;9888:3;9873:19;;9672:226::o;9903:349::-;10105:2;10087:21;;;10144:2;10124:18;;;10117:30;10183:27;10178:2;10163:18;;10156:55;10243:2;10228:18;;10077:175::o;10257:408::-;10459:2;10441:21;;;10498:2;10478:18;;;10471:30;10537:34;10532:2;10517:18;;10510:62;-1:-1:-1;;;10603:2:1;10588:18;;10581:42;10655:3;10640:19;;10431:234::o;10670:355::-;10872:2;10854:21;;;10911:2;10891:18;;;10884:30;10950:33;10945:2;10930:18;;10923:61;11016:2;11001:18;;10844:181::o;11030:347::-;11232:2;11214:21;;;11271:2;11251:18;;;11244:30;11310:25;11305:2;11290:18;;11283:53;11368:2;11353:18;;11204:173::o;11382:420::-;11584:2;11566:21;;;11623:2;11603:18;;;11596:30;11662:34;11657:2;11642:18;;11635:62;11733:26;11728:2;11713:18;;11706:54;11792:3;11777:19;;11556:246::o;11807:406::-;12009:2;11991:21;;;12048:2;12028:18;;;12021:30;12087:34;12082:2;12067:18;;12060:62;-1:-1:-1;;;12153:2:1;12138:18;;12131:40;12203:3;12188:19;;11981:232::o;12218:405::-;12420:2;12402:21;;;12459:2;12439:18;;;12432:30;12498:34;12493:2;12478:18;;12471:62;-1:-1:-1;;;12564:2:1;12549:18;;12542:39;12613:3;12598:19;;12392:231::o;12628:356::-;12830:2;12812:21;;;12849:18;;;12842:30;12908:34;12903:2;12888:18;;12881:62;12975:2;12960:18;;12802:182::o;12989:408::-;13191:2;13173:21;;;13230:2;13210:18;;;13203:30;13269:34;13264:2;13249:18;;13242:62;-1:-1:-1;;;13335:2:1;13320:18;;13313:42;13387:3;13372:19;;13163:234::o;13402:356::-;13604:2;13586:21;;;13623:18;;;13616:30;13682:34;13677:2;13662:18;;13655:62;13749:2;13734:18;;13576:182::o;13763:405::-;13965:2;13947:21;;;14004:2;13984:18;;;13977:30;14043:34;14038:2;14023:18;;14016:62;-1:-1:-1;;;14109:2:1;14094:18;;14087:39;14158:3;14143:19;;13937:231::o;14173:411::-;14375:2;14357:21;;;14414:2;14394:18;;;14387:30;14453:34;14448:2;14433:18;;14426:62;-1:-1:-1;;;14519:2:1;14504:18;;14497:45;14574:3;14559:19;;14347:237::o;14589:397::-;14791:2;14773:21;;;14830:2;14810:18;;;14803:30;14869:34;14864:2;14849:18;;14842:62;-1:-1:-1;;;14935:2:1;14920:18;;14913:31;14976:3;14961:19;;14763:223::o;14991:349::-;15193:2;15175:21;;;15232:2;15212:18;;;15205:30;15271:27;15266:2;15251:18;;15244:55;15331:2;15316:18;;15165:175::o;15345:413::-;15547:2;15529:21;;;15586:2;15566:18;;;15559:30;15625:34;15620:2;15605:18;;15598:62;-1:-1:-1;;;15691:2:1;15676:18;;15669:47;15748:3;15733:19;;15519:239::o;15763:408::-;15965:2;15947:21;;;16004:2;15984:18;;;15977:30;16043:34;16038:2;16023:18;;16016:62;-1:-1:-1;;;16109:2:1;16094:18;;16087:42;16161:3;16146:19;;15937:234::o;16176:177::-;16322:25;;;16310:2;16295:18;;16277:76::o;16358:128::-;;16429:1;16425:6;16422:1;16419:13;16416:2;;;16435:18;;:::i;:::-;-1:-1:-1;16471:9:1;;16406:80::o;16491:120::-;;16557:1;16547:2;;16562:18;;:::i;:::-;-1:-1:-1;16596:9:1;;16537:74::o;16616:168::-;;16722:1;16718;16714:6;16710:14;16707:1;16704:21;16699:1;16692:9;16685:17;16681:45;16678:2;;;16729:18;;:::i;:::-;-1:-1:-1;16769:9:1;;16668:116::o;16789:125::-;;16857:1;16854;16851:8;16848:2;;;16862:18;;:::i;:::-;-1:-1:-1;16899:9:1;;16838:76::o;16919:258::-;16991:1;17001:113;17015:6;17012:1;17009:13;17001:113;;;17091:11;;;17085:18;17072:11;;;17065:39;17037:2;17030:10;17001:113;;;17132:6;17129:1;17126:13;17123:2;;;-1:-1:-1;;17167:1:1;17149:16;;17142:27;16972:205::o;17182:380::-;17267:1;17257:12;;17314:1;17304:12;;;17325:2;;17379:4;17371:6;17367:17;17357:27;;17325:2;17432;17424:6;17421:14;17401:18;17398:38;17395:2;;;17478:10;17473:3;17469:20;17466:1;17459:31;17513:4;17510:1;17503:15;17541:4;17538:1;17531:15;17395:2;;17237:325;;;:::o;17567:135::-;;-1:-1:-1;;17627:17:1;;17624:2;;;17647:18;;:::i;:::-;-1:-1:-1;17694:1:1;17683:13;;17614:88::o;17707:112::-;;17765:1;17755:2;;17770:18;;:::i;:::-;-1:-1:-1;17804:9:1;;17745:74::o;17824:127::-;17885:10;17880:3;17876:20;17873:1;17866:31;17916:4;17913:1;17906:15;17940:4;17937:1;17930:15;17956:127;18017:10;18012:3;18008:20;18005:1;17998:31;18048:4;18045:1;18038:15;18072:4;18069:1;18062:15;18088:127;18149:10;18144:3;18140:20;18137:1;18130:31;18180:4;18177:1;18170:15;18204:4;18201:1;18194:15;18220:133;-1:-1:-1;;;;;;18296:32:1;;18286:43;;18276:2;;18343:1;18340;18333:12;18276:2;18266:87;:::o

Swarm Source

ipfs://cace3969359db1b7208f5d01b48e957377bedb3aedfa350ba4419ed49d7f4842
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.