ETH Price: $3,290.77 (+1.37%)
Gas: 1 Gwei

Token

NO HESI Car Club (NO HESI)
 

Overview

Max Total Supply

300 NO HESI

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NO HESI
0x0cd3a4d3a40618f44513b11992e121b97792e433
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NOHESI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-13
*/

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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);
}

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;
}

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);
}

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);
}

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);
}

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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
		
        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract NOHESI is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public SALE_NFT = 1091;
	uint256 public GIVEAWAY_NFT = 20;
	
	uint256 public MAX_MINT_PRESALE = SALE_NFT;
	uint256 public MAX_MINT_SALE = SALE_NFT;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 5;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 10;
	
	uint256 public PRESALE_PRICE = 0.10 ether;
	uint256 public SALE_PRICE = 0.12 ether;
	
	uint256 public SALE_MINTED;
	uint256 public GIVEAWAY_MINTED;
	
    bool public presaleEnable = false;
	bool public saleEnable = false;
	
    string private baseURI;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	
	address[] public addressList = [
	   0x460bFe81a020a7Acd9a4F45C262030a5c6D800fA,
	   0xc7FABd51935E81b08B93Ec813BD21255dEEfa91b
	];
    
	uint[] public shareList = [75,25];
	
	mapping (address => User) public users;

    constructor() ERC721P('NO HESI Car Club', 'NO HESI') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner nonReentrant{
	    uint256 totalSupply = totalSupply();
        require(
            GIVEAWAY_MINTED + _count <= GIVEAWAY_NFT, 
            "Max limit"
        );
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, totalSupply + i);
			GIVEAWAY_MINTED++;
        }
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable nonReentrant{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		uint256 totalSupply = totalSupply();
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].presalemint = users[msg.sender].presalemint + _count;
    }
	
	function mintSaleNFT(uint256 _count) public payable nonReentrant{
		uint256 totalSupply = totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint + _count;
    }
	
    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }
	
    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
    }
	
	function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        for (uint256 i = 0; i < addressList.length; i++) {
		   payable(addressList[i]).transfer((balance * shareList[i]) / 100);
        }
    }
	
	function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function setSaleStatus(bool status) public onlyOwner {
        require(saleEnable != status);
		saleEnable = status;
    }
	
	function setPreSaleStatus(bool status) public onlyOwner {
	   require(presaleEnable != status);
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateGiveawaySupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= GIVEAWAY_MINTED, "Incorrect value");
        GIVEAWAY_NFT = newSupply;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
	
	function updateFundWallet(address owner, address partner) external onlyOwner {
		require(owner != address(0), "address is the zero address");
		require(partner != address(0), "address is the zero address");
		
		addressList[0] = owner;
		addressList[1] = partner;
	}
	
	function updateFundShare(uint256 ownerShare, uint256 partnerShare) external onlyOwner {
		require(ownerShare + partnerShare == 100, "Incorrect values");
		
		shareList[0] = ownerShare;
		shareList[1] = partnerShare;
	}
}

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":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressList","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","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":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"shareList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uint256","name":"ownerShare","type":"uint256"},{"internalType":"uint256","name":"partnerShare","type":"uint256"}],"name":"updateFundShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"partner","type":"address"}],"name":"updateFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateGiveawaySupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6104436007819055601460088190556009829055600a9182556005600b55600c9190915567016345785d8a0000600d556701aa535d3d0c0000600e556011805461ffff1916905560c060405273460bfe81a020a7acd9a4f45c262030a5c6d800fa608090815273c7fabd51935e81b08b93ec813bd21255deefa91b60a0526200008b91906002620001ab565b5060408051808201909152604b815260196020820152620000b190601590600262000215565b50348015620000bf57600080fd5b50604080518082018252601081526f2727902422a9a49021b0b91021b63ab160811b6020808301918252835180850190945260078452664e4f204845534960c81b908401528151919291620001179160009162000258565b5080516200012d90600190602084019062000258565b5050506200014a620001446200015560201b60201c565b62000159565b600160065562000329565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000203579160200282015b828111156200020357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620001cc565b5062000211929150620002d5565b5090565b82805482825590600052602060002090810192821562000203579160200282015b8281111562000203578251829060ff1690559160200191906001019062000236565b8280546200026690620002ec565b90600052602060002090601f0160209004810192826200028a576000855562000203565b82601f10620002a557805160ff191683800117855562000203565b8280016001018555821562000203579182015b8281111562000203578251825591602001919060010190620002b8565b5b80821115620002115760008155600101620002d6565b6002810460018216806200030157607f821691505b602082108114156200032357634e487b7160e01b600052602260045260246000fd5b50919050565b61329180620003396000396000f3fe6080604052600436106103355760003560e01c80637e95eac4116101ab578063a9526862116100f7578063d897833e11610095578063f176baaa1161006f578063f176baaa146108f4578063f2fde38b14610914578063f439733514610934578063fe4ca8471461095457610335565b8063d897833e14610894578063dce051cc146108b4578063e985e9c5146108d457610335565b8063b88d4fde116100d1578063b88d4fde1461081f578063c87b56dd1461083f578063ccfb63a41461085f578063d40297271461087457610335565b8063a9526862146107d7578063ae5cc172146107ea578063b810fb43146107ff57610335565b80638da5cb5b1161016457806395d89b411161013e57806395d89b411461075f578063995b8ef614610774578063a22cb46514610789578063a87430ba146107a957610335565b80638da5cb5b14610717578063941e79fc1461072c578063945242c61461074c57610335565b80637e95eac4146106765780637ec0912e1461068b5780637ec18cf6146106ab5780637f205a74146106c05780638462151c146106d5578063853828b61461070257610335565b806342842e0e1161028557806362dc6e211161022357806370a08231116101fd57806370a082311461060c578063711cc2ae1461062c578063715018a6146106415780637e8bdb6e1461065657610335565b806362dc6e21146105b75780636352211e146105cc57806365fccb52146105ec57610335565b80634d7cea161161025f5780634d7cea16146105425780634f6ccce71461055757806355f804b3146105775780635e326b921461059757610335565b806342842e0e146104ed5780634783f0ef1461050d578063497865b31461052d57610335565b806323b872dd116102f25780632f745c59116102cc5780632f745c591461046d578063305004d91461048d578063379665bd146104ad5780633e2e2a80146104cd57610335565b806323b872dd14610418578063250b37ad146104385780632eb4a7ab1461045857610335565b806301ffc9a71461033a57806306fdde0314610370578063081812fc14610392578063095ea7b3146103bf5780630990e534146103e157806318160ddd14610403575b600080fd5b34801561034657600080fd5b5061035a610355366004612793565b610969565b60405161036791906129d6565b60405180910390f35b34801561037c57600080fd5b50610385610996565b60405161036791906129ea565b34801561039e57600080fd5b506103b26103ad36600461277b565b610a28565b6040516103679190612941565b3480156103cb57600080fd5b506103df6103da366004612738565b610a74565b005b3480156103ed57600080fd5b506103f6610b0c565b60405161036791906129e1565b34801561040f57600080fd5b506103f6610b12565b34801561042457600080fd5b506103df61043336600461265b565b610b18565b34801561044457600080fd5b506103df610453366004612629565b610b23565b34801561046457600080fd5b506103f6610c54565b34801561047957600080fd5b506103f6610488366004612738565b610c5a565b34801561049957600080fd5b506103df6104a836600461277b565b610d1d565b3480156104b957600080fd5b506103df6104c836600461277b565b610d83565b3480156104d957600080fd5b506103df6104e836600461277b565b610de9565b3480156104f957600080fd5b506103df61050836600461265b565b610e4f565b34801561051957600080fd5b506103df61052836600461277b565b610e6a565b34801561053957600080fd5b506103f6610eae565b34801561054e57600080fd5b506103f6610eb4565b34801561056357600080fd5b506103f661057236600461277b565b610eba565b34801561058357600080fd5b506103df6105923660046127cb565b610ee6565b3480156105a357600080fd5b506103df6105b2366004612761565b610f3c565b3480156105c357600080fd5b506103f6610fa4565b3480156105d857600080fd5b506103b26105e736600461277b565b610faa565b3480156105f857600080fd5b506103df61060736600461277b565b611002565b34801561061857600080fd5b506103f661062736600461260f565b611046565b34801561063857600080fd5b506103f66110e3565b34801561064d57600080fd5b506103df6110e9565b34801561066257600080fd5b506103df61067136600461288a565b611134565b34801561068257600080fd5b506103f6611200565b34801561069757600080fd5b506103df6106a636600461277b565b611206565b3480156106b757600080fd5b5061035a61124a565b3480156106cc57600080fd5b506103f6611253565b3480156106e157600080fd5b506106f56106f036600461260f565b611259565b6040516103679190612992565b34801561070e57600080fd5b506103df61133f565b34801561072357600080fd5b506103b2611449565b34801561073857600080fd5b506103df61074736600461277b565b611458565b6103df61075a366004612811565b6114be565b34801561076b57600080fd5b506103856116d6565b34801561078057600080fd5b506103f66116e5565b34801561079557600080fd5b506103df6107a436600461270f565b6116eb565b3480156107b557600080fd5b506107c96107c436600461260f565b6117b9565b6040516103679291906128f4565b6103df6107e536600461277b565b6117d2565b3480156107f657600080fd5b506103f661196a565b34801561080b57600080fd5b506103b261081a36600461277b565b611970565b34801561082b57600080fd5b506103df61083a366004612696565b61199a565b34801561084b57600080fd5b5061038561085a36600461277b565b6119ac565b34801561086b57600080fd5b506103f6611a2f565b34801561088057600080fd5b506103f661088f36600461277b565b611a35565b3480156108a057600080fd5b506103df6108af366004612761565b611a56565b3480156108c057600080fd5b506103df6108cf366004612738565b611acb565b3480156108e057600080fd5b5061035a6108ef366004612629565b611bb9565b34801561090057600080fd5b506103df61090f36600461277b565b611be7565b34801561092057600080fd5b506103df61092f36600461260f565b611c4d565b34801561094057600080fd5b506103df61094f36600461277b565b611cbe565b34801561096057600080fd5b5061035a611d24565b60006001600160e01b0319821663780e9d6360e01b148061098e575061098e82611d32565b90505b919050565b6060600080546109a590613199565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190613199565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611d72565b610a585760405162461bcd60e51b8152600401610a4f90612e1b565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a7f82610faa565b9050806001600160a01b0316836001600160a01b03161415610ab35760405162461bcd60e51b8152600401610a4f90612fd7565b806001600160a01b0316610ac5611dca565b6001600160a01b03161480610ae15750610ae1816108ef611dca565b610afd5760405162461bcd60e51b8152600401610a4f90612c94565b610b078383611dce565b505050565b600f5481565b60025490565b610b07838383611e3c565b610b2b611dca565b6001600160a01b0316610b3c611449565b6001600160a01b031614610b625760405162461bcd60e51b8152600401610a4f90612e90565b6001600160a01b038216610b885760405162461bcd60e51b8152600401610a4f90612f0e565b6001600160a01b038116610bae5760405162461bcd60e51b8152600401610a4f90612f0e565b816014600081548110610bd157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806014600181548110610c2257634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b60135481565b6000610c6583611046565b8210610c835760405162461bcd60e51b8152600401610a4f90612f70565b6000805b600254811015610cfe5760028181548110610cb257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610cee5783821415610ce2579150610d179050565b610ceb826131d4565b91505b610cf7816131d4565b9050610c87565b5060405162461bcd60e51b8152600401610a4f90612f70565b92915050565b610d25611dca565b6001600160a01b0316610d36611449565b6001600160a01b031614610d5c5760405162461bcd60e51b8152600401610a4f90612e90565b806007541015610d7e5760405162461bcd60e51b8152600401610a4f90612e67565b600b55565b610d8b611dca565b6001600160a01b0316610d9c611449565b6001600160a01b031614610dc25760405162461bcd60e51b8152600401610a4f90612e90565b601054811015610de45760405162461bcd60e51b8152600401610a4f90612e67565b600855565b610df1611dca565b6001600160a01b0316610e02611449565b6001600160a01b031614610e285760405162461bcd60e51b8152600401610a4f90612e90565b806007541015610e4a5760405162461bcd60e51b8152600401610a4f90612e67565b600c55565b610b078383836040518060200160405280600081525061199a565b610e72611dca565b6001600160a01b0316610e83611449565b6001600160a01b031614610ea95760405162461bcd60e51b8152600401610a4f90612e90565b601355565b60085481565b60105481565b6000610ec4610b12565b8210610ee25760405162461bcd60e51b8152600401610a4f90612fa0565b5090565b610eee611dca565b6001600160a01b0316610eff611449565b6001600160a01b031614610f255760405162461bcd60e51b8152600401610a4f90612e90565b8051610f389060129060208401906124e8565b5050565b610f44611dca565b6001600160a01b0316610f55611449565b6001600160a01b031614610f7b5760405162461bcd60e51b8152600401610a4f90612e90565b60115460ff1615158115151415610f9157600080fd5b6011805460ff1916911515919091179055565b600d5481565b60008060028381548110610fce57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061098e5760405162461bcd60e51b8152600401610a4f90612d72565b61100a611dca565b6001600160a01b031661101b611449565b6001600160a01b0316146110415760405162461bcd60e51b8152600401610a4f90612e90565b600d55565b60006001600160a01b03821661106e5760405162461bcd60e51b8152600401610a4f90612d28565b600254600090815b818110156110da576002818154811061109f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156110ca576110c7836131d4565b92505b6110d3816131d4565b9050611076565b50909392505050565b600c5481565b6110f1611dca565b6001600160a01b0316611102611449565b6001600160a01b0316146111285760405162461bcd60e51b8152600401610a4f90612e90565b6111326000611e74565b565b61113c611dca565b6001600160a01b031661114d611449565b6001600160a01b0316146111735760405162461bcd60e51b8152600401610a4f90612e90565b61117d818361310b565b60641461119c5760405162461bcd60e51b8152600401610a4f906130e1565b8160156000815481106111bf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508060156001815481106111f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001555050565b60095481565b61120e611dca565b6001600160a01b031661121f611449565b6001600160a01b0316146112455760405162461bcd60e51b8152600401610a4f90612e90565b600e55565b60115460ff1681565b600e5481565b606061126482611046565b6000106112835760405162461bcd60e51b8152600401610a4f90612f70565b600061128e83611046565b905060008167ffffffffffffffff8111156112b957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156112e2578160200160208202803683370190505b50905060005b82811015611337576112fa8582610c5a565b82828151811061131a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061132f816131d4565b9150506112e8565b509392505050565b611347611dca565b6001600160a01b0316611358611449565b6001600160a01b03161461137e5760405162461bcd60e51b8152600401610a4f90612e90565b4760005b601454811015610f3857601481815481106113ad57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601580546001600160a01b03909216916108fc91606491859081106113ee57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154856114049190613137565b61140e9190613123565b6040518115909202916000818181858888f19350505050158015611436573d6000803e3d6000fd5b5080611441816131d4565b915050611382565b6005546001600160a01b031690565b611460611dca565b6001600160a01b0316611471611449565b6001600160a01b0316146114975760405162461bcd60e51b8152600401610a4f90612e90565b8060075410156114b95760405162461bcd60e51b8152600401610a4f90612e67565b600955565b600260065414156114e15760405162461bcd60e51b8152600401610a4f906130aa565b60026006556040516000906114fa9033906020016128d7565b604051602081830303815290604052805190602001209050600061151c610b12565b60115490915060ff166115415760405162461bcd60e51b8152600401610a4f90612c23565b60075485600f54611552919061310b565b11156115705760405162461bcd60e51b8152600401610a4f90612dbb565b6115b1848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050611ec6565b6115cd5760405162461bcd60e51b8152600401610a4f90612c53565b600954336000908152601660205260409020546115eb90879061310b565b11156116095760405162461bcd60e51b8152600401610a4f90613069565b600b5485111561162b5760405162461bcd60e51b8152600401610a4f90612cf1565b84600d546116399190613137565b3410156116585760405162461bcd60e51b8152600401610a4f90612f45565b60005b8581101561169e5761167633611671838561310b565b611f81565b600f8054906000611686836131d4565b91905055508080611696906131d4565b91505061165b565b50336000908152601660205260409020546116ba90869061310b565b3360009081526016602052604090205550506001600655505050565b6060600180546109a590613199565b60075481565b6116f3611dca565b6001600160a01b0316826001600160a01b031614156117245760405162461bcd60e51b8152600401610a4f90612b51565b8060046000611731611dca565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611775611dca565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ad91906129d6565b60405180910390a35050565b6016602052600090815260409020805460019091015482565b600260065414156117f55760405162461bcd60e51b8152600401610a4f906130aa565b60026006556000611804610b12565b601154909150610100900460ff1661182e5760405162461bcd60e51b8152600401610a4f90612bab565b60075482600f5461183f919061310b565b111561185d5760405162461bcd60e51b8152600401610a4f90612dbb565b600a543360009081526016602052604090206001015461187e90849061310b565b111561189c5760405162461bcd60e51b8152600401610a4f90613069565b600c548211156118be5760405162461bcd60e51b8152600401610a4f90612cf1565b81600e546118cc9190613137565b3410156118eb5760405162461bcd60e51b8152600401610a4f90612f45565b60005b8281101561192c5761190433611671838561310b565b600f8054906000611914836131d4565b91905055508080611924906131d4565b9150506118ee565b503360009081526016602052604090206001015461194b90839061310b565b3360009081526016602052604090206001908101919091556006555050565b600a5481565b6014818154811061198057600080fd5b6000918252602090912001546001600160a01b0316905081565b6119a684848484611f9b565b50505050565b60606119b782611d72565b6119d35760405162461bcd60e51b8152600401610a4f906129fd565b60006119dd611fd4565b905060008151116119fd5760405180602001604052806000815250611a28565b80611a0784611fe3565b604051602001611a18929190612902565b6040516020818303038152906040525b9392505050565b600b5481565b60158181548110611a4557600080fd5b600091825260209091200154905081565b611a5e611dca565b6001600160a01b0316611a6f611449565b6001600160a01b031614611a955760405162461bcd60e51b8152600401610a4f90612e90565b60115460ff6101009091041615158115151415611ab157600080fd5b601180549115156101000261ff0019909216919091179055565b611ad3611dca565b6001600160a01b0316611ae4611449565b6001600160a01b031614611b0a5760405162461bcd60e51b8152600401610a4f90612e90565b60026006541415611b2d5760405162461bcd60e51b8152600401610a4f906130aa565b60026006556000611b3c610b12565b905060085482601054611b4f919061310b565b1115611b6d5760405162461bcd60e51b8152600401610a4f90612b88565b60005b82811015611bae57611b8684611671838561310b565b60108054906000611b96836131d4565b91905055508080611ba6906131d4565b915050611b70565b505060016006555050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611bef611dca565b6001600160a01b0316611c00611449565b6001600160a01b031614611c265760405162461bcd60e51b8152600401610a4f90612e90565b806007541015611c485760405162461bcd60e51b8152600401610a4f90612e67565b600a55565b611c55611dca565b6001600160a01b0316611c66611449565b6001600160a01b031614611c8c5760405162461bcd60e51b8152600401610a4f90612e90565b6001600160a01b038116611cb25760405162461bcd60e51b8152600401610a4f90612a90565b611cbb81611e74565b50565b611cc6611dca565b6001600160a01b0316611cd7611449565b6001600160a01b031614611cfd5760405162461bcd60e51b8152600401610a4f90612e90565b600f54811015611d1f5760405162461bcd60e51b8152600401610a4f90612e67565b600755565b601154610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611d6357506001600160e01b03198216635b5e139f60e01b145b8061098e575061098e82612106565b6002546000908210801561098e575060006001600160a01b031660028381548110611dad57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e0382610faa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e4d611e47611dca565b8261211f565b611e695760405162461bcd60e51b8152600401610a4f90613018565b610b0783838361219c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611f76576000868281518110611ef657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611f37578281604051602001611f1a9291906128f4565b604051602081830303815290604052805190602001209250611f63565b8083604051602001611f4a9291906128f4565b6040516020818303038152906040528051906020012092505b5080611f6e816131d4565b915050611ecb565b509092149392505050565b610f3882826040518060200160405280600081525061228d565b611fac611fa6611dca565b8361211f565b611fc85760405162461bcd60e51b8152600401610a4f90613018565b6119a6848484846122c0565b6060601280546109a590613199565b60608161200857506040805180820190915260018152600360fc1b6020820152610991565b8160005b8115612032578061201c816131d4565b915061202b9050600a83613123565b915061200c565b60008167ffffffffffffffff81111561205b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612085576020820181803683370190505b5090505b84156120fe5761209a600183613156565b91506120a7600a866131ef565b6120b290603061310b565b60f81b8183815181106120d557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120f7600a86613123565b9450612089565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061212a82611d72565b6121465760405162461bcd60e51b8152600401610a4f90612bd7565b600061215183610faa565b9050806001600160a01b0316846001600160a01b0316148061218c5750836001600160a01b031661218184610a28565b6001600160a01b0316145b806120fe57506120fe8185611bb9565b826001600160a01b03166121af82610faa565b6001600160a01b0316146121d55760405162461bcd60e51b8152600401610a4f90612ec5565b6001600160a01b0382166121fb5760405162461bcd60e51b8152600401610a4f90612b0d565b612206838383610b07565b612211600082611dce565b816002828154811061223357634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61229783836122f3565b6122a460008484846123c7565b610b075760405162461bcd60e51b8152600401610a4f90612a3e565b6122cb84848461219c565b6122d7848484846123c7565b6119a65760405162461bcd60e51b8152600401610a4f90612a3e565b6001600160a01b0382166123195760405162461bcd60e51b8152600401610a4f90612de6565b61232281611d72565b1561233f5760405162461bcd60e51b8152600401610a4f90612ad6565b61234b60008383610b07565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006123db846001600160a01b03166124e2565b156124d757836001600160a01b031663150b7a026123f7611dca565b8786866040518563ffffffff1660e01b81526004016124199493929190612955565b602060405180830381600087803b15801561243357600080fd5b505af1925050508015612463575060408051601f3d908101601f19168201909252612460918101906127af565b60015b6124bd573d808015612491576040519150601f19603f3d011682016040523d82523d6000602084013e612496565b606091505b5080516124b55760405162461bcd60e51b8152600401610a4f90612a3e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120fe565b506001949350505050565b3b151590565b8280546124f490613199565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c578251825591602001919060010190612541565b50610ee29291505b80821115610ee25760008155600101612564565b600067ffffffffffffffff808411156125935761259361322f565b604051601f8501601f1916810160200182811182821017156125b7576125b761322f565b6040528481529150818385018610156125cf57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461099157600080fd5b8035801515811461099157600080fd5b600060208284031215612620578081fd5b611a28826125e8565b6000806040838503121561263b578081fd5b612644836125e8565b9150612652602084016125e8565b90509250929050565b60008060006060848603121561266f578081fd5b612678846125e8565b9250612686602085016125e8565b9150604084013590509250925092565b600080600080608085870312156126ab578081fd5b6126b4856125e8565b93506126c2602086016125e8565b925060408501359150606085013567ffffffffffffffff8111156126e4578182fd5b8501601f810187136126f4578182fd5b61270387823560208401612578565b91505092959194509250565b60008060408385031215612721578182fd5b61272a836125e8565b9150612652602084016125ff565b6000806040838503121561274a578182fd5b612753836125e8565b946020939093013593505050565b600060208284031215612772578081fd5b611a28826125ff565b60006020828403121561278c578081fd5b5035919050565b6000602082840312156127a4578081fd5b8135611a2881613245565b6000602082840312156127c0578081fd5b8151611a2881613245565b6000602082840312156127dc578081fd5b813567ffffffffffffffff8111156127f2578182fd5b8201601f81018413612802578182fd5b6120fe84823560208401612578565b600080600060408486031215612825578283fd5b83359250602084013567ffffffffffffffff80821115612843578384fd5b818601915086601f830112612856578384fd5b813581811115612864578485fd5b8760208083028501011115612877578485fd5b6020830194508093505050509250925092565b6000806040838503121561289c578182fd5b50508035926020909101359150565b600081518084526128c381602086016020860161316d565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161291481846020880161316d565b83519083019061292881836020880161316d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612988908301846128ab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129ca578351835292840192918401916001016129ae565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611a2860208301846128ab565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601b908201527f6164647265737320697320746865207a65726f20616464726573730000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f496e636f72726563742076616c75657360801b604082015260600190565b6000821982111561311e5761311e613203565b500190565b60008261313257613132613219565b500490565b600081600019048311821515161561315157613151613203565b500290565b60008282101561316857613168613203565b500390565b60005b83811015613188578181015183820152602001613170565b838111156119a65750506000910152565b6002810460018216806131ad57607f821691505b602082108114156131ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131e8576131e8613203565b5060010190565b6000826131fe576131fe613219565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cbb57600080fdfea2646970667358221220507d27ad99d82b8d01798147a4fa035c9479b30848e3ae4a179da60aee482a7c64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637e95eac4116101ab578063a9526862116100f7578063d897833e11610095578063f176baaa1161006f578063f176baaa146108f4578063f2fde38b14610914578063f439733514610934578063fe4ca8471461095457610335565b8063d897833e14610894578063dce051cc146108b4578063e985e9c5146108d457610335565b8063b88d4fde116100d1578063b88d4fde1461081f578063c87b56dd1461083f578063ccfb63a41461085f578063d40297271461087457610335565b8063a9526862146107d7578063ae5cc172146107ea578063b810fb43146107ff57610335565b80638da5cb5b1161016457806395d89b411161013e57806395d89b411461075f578063995b8ef614610774578063a22cb46514610789578063a87430ba146107a957610335565b80638da5cb5b14610717578063941e79fc1461072c578063945242c61461074c57610335565b80637e95eac4146106765780637ec0912e1461068b5780637ec18cf6146106ab5780637f205a74146106c05780638462151c146106d5578063853828b61461070257610335565b806342842e0e1161028557806362dc6e211161022357806370a08231116101fd57806370a082311461060c578063711cc2ae1461062c578063715018a6146106415780637e8bdb6e1461065657610335565b806362dc6e21146105b75780636352211e146105cc57806365fccb52146105ec57610335565b80634d7cea161161025f5780634d7cea16146105425780634f6ccce71461055757806355f804b3146105775780635e326b921461059757610335565b806342842e0e146104ed5780634783f0ef1461050d578063497865b31461052d57610335565b806323b872dd116102f25780632f745c59116102cc5780632f745c591461046d578063305004d91461048d578063379665bd146104ad5780633e2e2a80146104cd57610335565b806323b872dd14610418578063250b37ad146104385780632eb4a7ab1461045857610335565b806301ffc9a71461033a57806306fdde0314610370578063081812fc14610392578063095ea7b3146103bf5780630990e534146103e157806318160ddd14610403575b600080fd5b34801561034657600080fd5b5061035a610355366004612793565b610969565b60405161036791906129d6565b60405180910390f35b34801561037c57600080fd5b50610385610996565b60405161036791906129ea565b34801561039e57600080fd5b506103b26103ad36600461277b565b610a28565b6040516103679190612941565b3480156103cb57600080fd5b506103df6103da366004612738565b610a74565b005b3480156103ed57600080fd5b506103f6610b0c565b60405161036791906129e1565b34801561040f57600080fd5b506103f6610b12565b34801561042457600080fd5b506103df61043336600461265b565b610b18565b34801561044457600080fd5b506103df610453366004612629565b610b23565b34801561046457600080fd5b506103f6610c54565b34801561047957600080fd5b506103f6610488366004612738565b610c5a565b34801561049957600080fd5b506103df6104a836600461277b565b610d1d565b3480156104b957600080fd5b506103df6104c836600461277b565b610d83565b3480156104d957600080fd5b506103df6104e836600461277b565b610de9565b3480156104f957600080fd5b506103df61050836600461265b565b610e4f565b34801561051957600080fd5b506103df61052836600461277b565b610e6a565b34801561053957600080fd5b506103f6610eae565b34801561054e57600080fd5b506103f6610eb4565b34801561056357600080fd5b506103f661057236600461277b565b610eba565b34801561058357600080fd5b506103df6105923660046127cb565b610ee6565b3480156105a357600080fd5b506103df6105b2366004612761565b610f3c565b3480156105c357600080fd5b506103f6610fa4565b3480156105d857600080fd5b506103b26105e736600461277b565b610faa565b3480156105f857600080fd5b506103df61060736600461277b565b611002565b34801561061857600080fd5b506103f661062736600461260f565b611046565b34801561063857600080fd5b506103f66110e3565b34801561064d57600080fd5b506103df6110e9565b34801561066257600080fd5b506103df61067136600461288a565b611134565b34801561068257600080fd5b506103f6611200565b34801561069757600080fd5b506103df6106a636600461277b565b611206565b3480156106b757600080fd5b5061035a61124a565b3480156106cc57600080fd5b506103f6611253565b3480156106e157600080fd5b506106f56106f036600461260f565b611259565b6040516103679190612992565b34801561070e57600080fd5b506103df61133f565b34801561072357600080fd5b506103b2611449565b34801561073857600080fd5b506103df61074736600461277b565b611458565b6103df61075a366004612811565b6114be565b34801561076b57600080fd5b506103856116d6565b34801561078057600080fd5b506103f66116e5565b34801561079557600080fd5b506103df6107a436600461270f565b6116eb565b3480156107b557600080fd5b506107c96107c436600461260f565b6117b9565b6040516103679291906128f4565b6103df6107e536600461277b565b6117d2565b3480156107f657600080fd5b506103f661196a565b34801561080b57600080fd5b506103b261081a36600461277b565b611970565b34801561082b57600080fd5b506103df61083a366004612696565b61199a565b34801561084b57600080fd5b5061038561085a36600461277b565b6119ac565b34801561086b57600080fd5b506103f6611a2f565b34801561088057600080fd5b506103f661088f36600461277b565b611a35565b3480156108a057600080fd5b506103df6108af366004612761565b611a56565b3480156108c057600080fd5b506103df6108cf366004612738565b611acb565b3480156108e057600080fd5b5061035a6108ef366004612629565b611bb9565b34801561090057600080fd5b506103df61090f36600461277b565b611be7565b34801561092057600080fd5b506103df61092f36600461260f565b611c4d565b34801561094057600080fd5b506103df61094f36600461277b565b611cbe565b34801561096057600080fd5b5061035a611d24565b60006001600160e01b0319821663780e9d6360e01b148061098e575061098e82611d32565b90505b919050565b6060600080546109a590613199565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190613199565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611d72565b610a585760405162461bcd60e51b8152600401610a4f90612e1b565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a7f82610faa565b9050806001600160a01b0316836001600160a01b03161415610ab35760405162461bcd60e51b8152600401610a4f90612fd7565b806001600160a01b0316610ac5611dca565b6001600160a01b03161480610ae15750610ae1816108ef611dca565b610afd5760405162461bcd60e51b8152600401610a4f90612c94565b610b078383611dce565b505050565b600f5481565b60025490565b610b07838383611e3c565b610b2b611dca565b6001600160a01b0316610b3c611449565b6001600160a01b031614610b625760405162461bcd60e51b8152600401610a4f90612e90565b6001600160a01b038216610b885760405162461bcd60e51b8152600401610a4f90612f0e565b6001600160a01b038116610bae5760405162461bcd60e51b8152600401610a4f90612f0e565b816014600081548110610bd157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806014600181548110610c2257634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b60135481565b6000610c6583611046565b8210610c835760405162461bcd60e51b8152600401610a4f90612f70565b6000805b600254811015610cfe5760028181548110610cb257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610cee5783821415610ce2579150610d179050565b610ceb826131d4565b91505b610cf7816131d4565b9050610c87565b5060405162461bcd60e51b8152600401610a4f90612f70565b92915050565b610d25611dca565b6001600160a01b0316610d36611449565b6001600160a01b031614610d5c5760405162461bcd60e51b8152600401610a4f90612e90565b806007541015610d7e5760405162461bcd60e51b8152600401610a4f90612e67565b600b55565b610d8b611dca565b6001600160a01b0316610d9c611449565b6001600160a01b031614610dc25760405162461bcd60e51b8152600401610a4f90612e90565b601054811015610de45760405162461bcd60e51b8152600401610a4f90612e67565b600855565b610df1611dca565b6001600160a01b0316610e02611449565b6001600160a01b031614610e285760405162461bcd60e51b8152600401610a4f90612e90565b806007541015610e4a5760405162461bcd60e51b8152600401610a4f90612e67565b600c55565b610b078383836040518060200160405280600081525061199a565b610e72611dca565b6001600160a01b0316610e83611449565b6001600160a01b031614610ea95760405162461bcd60e51b8152600401610a4f90612e90565b601355565b60085481565b60105481565b6000610ec4610b12565b8210610ee25760405162461bcd60e51b8152600401610a4f90612fa0565b5090565b610eee611dca565b6001600160a01b0316610eff611449565b6001600160a01b031614610f255760405162461bcd60e51b8152600401610a4f90612e90565b8051610f389060129060208401906124e8565b5050565b610f44611dca565b6001600160a01b0316610f55611449565b6001600160a01b031614610f7b5760405162461bcd60e51b8152600401610a4f90612e90565b60115460ff1615158115151415610f9157600080fd5b6011805460ff1916911515919091179055565b600d5481565b60008060028381548110610fce57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061098e5760405162461bcd60e51b8152600401610a4f90612d72565b61100a611dca565b6001600160a01b031661101b611449565b6001600160a01b0316146110415760405162461bcd60e51b8152600401610a4f90612e90565b600d55565b60006001600160a01b03821661106e5760405162461bcd60e51b8152600401610a4f90612d28565b600254600090815b818110156110da576002818154811061109f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156110ca576110c7836131d4565b92505b6110d3816131d4565b9050611076565b50909392505050565b600c5481565b6110f1611dca565b6001600160a01b0316611102611449565b6001600160a01b0316146111285760405162461bcd60e51b8152600401610a4f90612e90565b6111326000611e74565b565b61113c611dca565b6001600160a01b031661114d611449565b6001600160a01b0316146111735760405162461bcd60e51b8152600401610a4f90612e90565b61117d818361310b565b60641461119c5760405162461bcd60e51b8152600401610a4f906130e1565b8160156000815481106111bf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508060156001815481106111f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001555050565b60095481565b61120e611dca565b6001600160a01b031661121f611449565b6001600160a01b0316146112455760405162461bcd60e51b8152600401610a4f90612e90565b600e55565b60115460ff1681565b600e5481565b606061126482611046565b6000106112835760405162461bcd60e51b8152600401610a4f90612f70565b600061128e83611046565b905060008167ffffffffffffffff8111156112b957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156112e2578160200160208202803683370190505b50905060005b82811015611337576112fa8582610c5a565b82828151811061131a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061132f816131d4565b9150506112e8565b509392505050565b611347611dca565b6001600160a01b0316611358611449565b6001600160a01b03161461137e5760405162461bcd60e51b8152600401610a4f90612e90565b4760005b601454811015610f3857601481815481106113ad57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601580546001600160a01b03909216916108fc91606491859081106113ee57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154856114049190613137565b61140e9190613123565b6040518115909202916000818181858888f19350505050158015611436573d6000803e3d6000fd5b5080611441816131d4565b915050611382565b6005546001600160a01b031690565b611460611dca565b6001600160a01b0316611471611449565b6001600160a01b0316146114975760405162461bcd60e51b8152600401610a4f90612e90565b8060075410156114b95760405162461bcd60e51b8152600401610a4f90612e67565b600955565b600260065414156114e15760405162461bcd60e51b8152600401610a4f906130aa565b60026006556040516000906114fa9033906020016128d7565b604051602081830303815290604052805190602001209050600061151c610b12565b60115490915060ff166115415760405162461bcd60e51b8152600401610a4f90612c23565b60075485600f54611552919061310b565b11156115705760405162461bcd60e51b8152600401610a4f90612dbb565b6115b1848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050611ec6565b6115cd5760405162461bcd60e51b8152600401610a4f90612c53565b600954336000908152601660205260409020546115eb90879061310b565b11156116095760405162461bcd60e51b8152600401610a4f90613069565b600b5485111561162b5760405162461bcd60e51b8152600401610a4f90612cf1565b84600d546116399190613137565b3410156116585760405162461bcd60e51b8152600401610a4f90612f45565b60005b8581101561169e5761167633611671838561310b565b611f81565b600f8054906000611686836131d4565b91905055508080611696906131d4565b91505061165b565b50336000908152601660205260409020546116ba90869061310b565b3360009081526016602052604090205550506001600655505050565b6060600180546109a590613199565b60075481565b6116f3611dca565b6001600160a01b0316826001600160a01b031614156117245760405162461bcd60e51b8152600401610a4f90612b51565b8060046000611731611dca565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611775611dca565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ad91906129d6565b60405180910390a35050565b6016602052600090815260409020805460019091015482565b600260065414156117f55760405162461bcd60e51b8152600401610a4f906130aa565b60026006556000611804610b12565b601154909150610100900460ff1661182e5760405162461bcd60e51b8152600401610a4f90612bab565b60075482600f5461183f919061310b565b111561185d5760405162461bcd60e51b8152600401610a4f90612dbb565b600a543360009081526016602052604090206001015461187e90849061310b565b111561189c5760405162461bcd60e51b8152600401610a4f90613069565b600c548211156118be5760405162461bcd60e51b8152600401610a4f90612cf1565b81600e546118cc9190613137565b3410156118eb5760405162461bcd60e51b8152600401610a4f90612f45565b60005b8281101561192c5761190433611671838561310b565b600f8054906000611914836131d4565b91905055508080611924906131d4565b9150506118ee565b503360009081526016602052604090206001015461194b90839061310b565b3360009081526016602052604090206001908101919091556006555050565b600a5481565b6014818154811061198057600080fd5b6000918252602090912001546001600160a01b0316905081565b6119a684848484611f9b565b50505050565b60606119b782611d72565b6119d35760405162461bcd60e51b8152600401610a4f906129fd565b60006119dd611fd4565b905060008151116119fd5760405180602001604052806000815250611a28565b80611a0784611fe3565b604051602001611a18929190612902565b6040516020818303038152906040525b9392505050565b600b5481565b60158181548110611a4557600080fd5b600091825260209091200154905081565b611a5e611dca565b6001600160a01b0316611a6f611449565b6001600160a01b031614611a955760405162461bcd60e51b8152600401610a4f90612e90565b60115460ff6101009091041615158115151415611ab157600080fd5b601180549115156101000261ff0019909216919091179055565b611ad3611dca565b6001600160a01b0316611ae4611449565b6001600160a01b031614611b0a5760405162461bcd60e51b8152600401610a4f90612e90565b60026006541415611b2d5760405162461bcd60e51b8152600401610a4f906130aa565b60026006556000611b3c610b12565b905060085482601054611b4f919061310b565b1115611b6d5760405162461bcd60e51b8152600401610a4f90612b88565b60005b82811015611bae57611b8684611671838561310b565b60108054906000611b96836131d4565b91905055508080611ba6906131d4565b915050611b70565b505060016006555050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611bef611dca565b6001600160a01b0316611c00611449565b6001600160a01b031614611c265760405162461bcd60e51b8152600401610a4f90612e90565b806007541015611c485760405162461bcd60e51b8152600401610a4f90612e67565b600a55565b611c55611dca565b6001600160a01b0316611c66611449565b6001600160a01b031614611c8c5760405162461bcd60e51b8152600401610a4f90612e90565b6001600160a01b038116611cb25760405162461bcd60e51b8152600401610a4f90612a90565b611cbb81611e74565b50565b611cc6611dca565b6001600160a01b0316611cd7611449565b6001600160a01b031614611cfd5760405162461bcd60e51b8152600401610a4f90612e90565b600f54811015611d1f5760405162461bcd60e51b8152600401610a4f90612e67565b600755565b601154610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611d6357506001600160e01b03198216635b5e139f60e01b145b8061098e575061098e82612106565b6002546000908210801561098e575060006001600160a01b031660028381548110611dad57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e0382610faa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e4d611e47611dca565b8261211f565b611e695760405162461bcd60e51b8152600401610a4f90613018565b610b0783838361219c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611f76576000868281518110611ef657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611f37578281604051602001611f1a9291906128f4565b604051602081830303815290604052805190602001209250611f63565b8083604051602001611f4a9291906128f4565b6040516020818303038152906040528051906020012092505b5080611f6e816131d4565b915050611ecb565b509092149392505050565b610f3882826040518060200160405280600081525061228d565b611fac611fa6611dca565b8361211f565b611fc85760405162461bcd60e51b8152600401610a4f90613018565b6119a6848484846122c0565b6060601280546109a590613199565b60608161200857506040805180820190915260018152600360fc1b6020820152610991565b8160005b8115612032578061201c816131d4565b915061202b9050600a83613123565b915061200c565b60008167ffffffffffffffff81111561205b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612085576020820181803683370190505b5090505b84156120fe5761209a600183613156565b91506120a7600a866131ef565b6120b290603061310b565b60f81b8183815181106120d557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120f7600a86613123565b9450612089565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061212a82611d72565b6121465760405162461bcd60e51b8152600401610a4f90612bd7565b600061215183610faa565b9050806001600160a01b0316846001600160a01b0316148061218c5750836001600160a01b031661218184610a28565b6001600160a01b0316145b806120fe57506120fe8185611bb9565b826001600160a01b03166121af82610faa565b6001600160a01b0316146121d55760405162461bcd60e51b8152600401610a4f90612ec5565b6001600160a01b0382166121fb5760405162461bcd60e51b8152600401610a4f90612b0d565b612206838383610b07565b612211600082611dce565b816002828154811061223357634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61229783836122f3565b6122a460008484846123c7565b610b075760405162461bcd60e51b8152600401610a4f90612a3e565b6122cb84848461219c565b6122d7848484846123c7565b6119a65760405162461bcd60e51b8152600401610a4f90612a3e565b6001600160a01b0382166123195760405162461bcd60e51b8152600401610a4f90612de6565b61232281611d72565b1561233f5760405162461bcd60e51b8152600401610a4f90612ad6565b61234b60008383610b07565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006123db846001600160a01b03166124e2565b156124d757836001600160a01b031663150b7a026123f7611dca565b8786866040518563ffffffff1660e01b81526004016124199493929190612955565b602060405180830381600087803b15801561243357600080fd5b505af1925050508015612463575060408051601f3d908101601f19168201909252612460918101906127af565b60015b6124bd573d808015612491576040519150601f19603f3d011682016040523d82523d6000602084013e612496565b606091505b5080516124b55760405162461bcd60e51b8152600401610a4f90612a3e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120fe565b506001949350505050565b3b151590565b8280546124f490613199565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c578251825591602001919060010190612541565b50610ee29291505b80821115610ee25760008155600101612564565b600067ffffffffffffffff808411156125935761259361322f565b604051601f8501601f1916810160200182811182821017156125b7576125b761322f565b6040528481529150818385018610156125cf57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461099157600080fd5b8035801515811461099157600080fd5b600060208284031215612620578081fd5b611a28826125e8565b6000806040838503121561263b578081fd5b612644836125e8565b9150612652602084016125e8565b90509250929050565b60008060006060848603121561266f578081fd5b612678846125e8565b9250612686602085016125e8565b9150604084013590509250925092565b600080600080608085870312156126ab578081fd5b6126b4856125e8565b93506126c2602086016125e8565b925060408501359150606085013567ffffffffffffffff8111156126e4578182fd5b8501601f810187136126f4578182fd5b61270387823560208401612578565b91505092959194509250565b60008060408385031215612721578182fd5b61272a836125e8565b9150612652602084016125ff565b6000806040838503121561274a578182fd5b612753836125e8565b946020939093013593505050565b600060208284031215612772578081fd5b611a28826125ff565b60006020828403121561278c578081fd5b5035919050565b6000602082840312156127a4578081fd5b8135611a2881613245565b6000602082840312156127c0578081fd5b8151611a2881613245565b6000602082840312156127dc578081fd5b813567ffffffffffffffff8111156127f2578182fd5b8201601f81018413612802578182fd5b6120fe84823560208401612578565b600080600060408486031215612825578283fd5b83359250602084013567ffffffffffffffff80821115612843578384fd5b818601915086601f830112612856578384fd5b813581811115612864578485fd5b8760208083028501011115612877578485fd5b6020830194508093505050509250925092565b6000806040838503121561289c578182fd5b50508035926020909101359150565b600081518084526128c381602086016020860161316d565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161291481846020880161316d565b83519083019061292881836020880161316d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612988908301846128ab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129ca578351835292840192918401916001016129ae565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611a2860208301846128ab565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601b908201527f6164647265737320697320746865207a65726f20616464726573730000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f496e636f72726563742076616c75657360801b604082015260600190565b6000821982111561311e5761311e613203565b500190565b60008261313257613132613219565b500490565b600081600019048311821515161561315157613151613203565b500290565b60008282101561316857613168613203565b500390565b60005b83811015613188578181015183820152602001613170565b838111156119a65750506000910152565b6002810460018216806131ad57607f821691505b602082108114156131ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131e8576131e8613203565b5060010190565b6000826131fe576131fe613219565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cbb57600080fdfea2646970667358221220507d27ad99d82b8d01798147a4fa035c9479b30848e3ae4a179da60aee482a7c64736f6c63430008000033

Deployed Bytecode Sourcemap

30986:6530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;31454:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;34614:145::-;;;;;;;;;;-1:-1:-1;34614:145:0;;;;;:::i;:::-;;:::i;37012:272::-;;;;;;;;;;-1:-1:-1;37012:272:0;;;;;:::i;:::-;;:::i;31627:25::-;;;;;;;;;;;;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;36500:203::-;;;;;;;;;;-1:-1:-1;36500:203:0;;;;;:::i;:::-;;:::i;36319:175::-;;;;;;;;;;-1:-1:-1;36319:175:0;;;;;:::i;:::-;;:::i;36709:197::-;;;;;;;;;;-1:-1:-1;36709:197:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;36912:94::-;;;;;;;;;;-1:-1:-1;36912:94:0;;;;;:::i;:::-;;:::i;31118:32::-;;;;;;;;;;;;;:::i;31484:30::-;;;;;;;;;;;;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;35200:102::-;;;;;;;;;;-1:-1:-1;35200:102:0;;;;;:::i;:::-;;:::i;35661:135::-;;;;;;;;;;-1:-1:-1;35661:135:0;;;;;:::i;:::-;;:::i;31364:41::-;;;;;;;;;;;;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;35416:108::-;;;;;;;;;;-1:-1:-1;35416:108:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;31306:51::-;;;;;;;;;;;;;:::i;1363:94::-;;;;;;;;;;;;;:::i;37290:223::-;;;;;;;;;;-1:-1:-1;37290:223:0;;;;;:::i;:::-;;:::i;31157:42::-;;;;;;;;;;;;;:::i;35308:102::-;;;;;;;;;;-1:-1:-1;35308:102:0;;;;;:::i;:::-;;:::i;31524:33::-;;;;;;;;;;;;;:::i;31409:38::-;;;;;;;;;;;;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34953:241::-;;;;;;;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;35973:171::-;;;;;;;;;;-1:-1:-1;35973:171:0;;;;;:::i;:::-;;:::i;32502:984::-;;;;;;:::i;:::-;;:::i;22533:104::-;;;;;;;;;;;;;:::i;31084:30::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;31913:38::-;;;;;;;;;;-1:-1:-1;31913:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;33492:751::-;;;;;;:::i;:::-;;:::i;31203:39::-;;;;;;;;;;;;;:::i;31730:133::-;;;;;;;;;;-1:-1:-1;31730:133:0;;;;;:::i;:::-;;:::i;34767:180::-;;;;;;;;;;-1:-1:-1;34767:180:0;;;;;:::i;:::-;;:::i;34252:353::-;;;;;;;;;;-1:-1:-1;34252:353:0;;;;;:::i;:::-;;:::i;31249:53::-;;;;;;;;;;;;;:::i;31873:33::-;;;;;;;;;;-1:-1:-1;31873:33:0;;;;;:::i;:::-;;:::i;35530:125::-;;;;;;;;;;-1:-1:-1;35530:125:0;;;;;:::i;:::-;;:::i;32129:367::-;;;;;;;;;;-1:-1:-1;32129:367:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;35802:165::-;;;;;;;;;;-1:-1:-1;35802:165:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;36150:163::-;;;;;;;;;;-1:-1:-1;36150:163:0;;;;;:::i;:::-;;:::i;31561:30::-;;;;;;;;;;;;;:::i;28308:225::-;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;;28308:225;;;;:::o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;;;;;;:::i;:::-;22883:5;-1:-1:-1;;;;;22867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22867:21:0;;:62;;;;22892:37;22909:5;22916:12;:10;:12::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;;;;;;:::i;:::-;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22643:412;;;:::o;31454:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;34614:145::-;34709:42;34730:5;34737:3;34742:8;34709:20;:42::i;37012:272::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37102:19:0;::::1;37094:59;;;;-1:-1:-1::0;;;37094:59:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37166:21:0;::::1;37158:61;;;;-1:-1:-1::0;;;37158:61:0::1;;;;;;;:::i;:::-;37245:5;37228:11;37240:1;37228:14;;;;;;-1:-1:-1::0;;;37228:14:0::1;;;;;;;;;;;;;;;;;:22;;;;;-1:-1:-1::0;;;;;37228:22:0::1;;;;;-1:-1:-1::0;;;;;37228:22:0::1;;;;;;37272:7;37255:11;37267:1;37255:14;;;;;;-1:-1:-1::0;;;37255:14:0::1;;;;;;;;;;;;;;;;;:24;;;;;-1:-1:-1::0;;;;;37255:24:0::1;;;;;-1:-1:-1::0;;;;;37255:24:0::1;;;;;;37012:272:::0;;:::o;31627:25::-;;;;:::o;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;-1:-1:-1;;;28821:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;28539:500::-;;;;;:::o;36500:203::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36611:8:::1;36599;;:20;;36591:48;;;;-1:-1:-1::0;;;36591:48:0::1;;;;;;;:::i;:::-;36650:34;:45:::0;36500:203::o;36319:175::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36416:15:::1;;36403:9;:28;;36395:56;;;;-1:-1:-1::0;;;36395:56:0::1;;;;;;;:::i;:::-;36462:12;:24:::0;36319:175::o;36709:197::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36817:8:::1;36805;;:20;;36797:48;;;;-1:-1:-1::0;;;36797:48:0::1;;;;;;;:::i;:::-;36856:31;:42:::0;36709:197::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;36912:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36981:10:::1;:20:::0;36912:94::o;31118:32::-;;;;:::o;31484:30::-;;;;:::o;29585:194::-;29660:7;29696:24;:22;:24::i;:::-;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;;;;;;:::i;:::-;-1:-1:-1;29766:5:0;29585:194::o;35200:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35274:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35200:102:::0;:::o;35661:135::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35732:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;35724:32;;;::::0;::::1;;35766:13;:22:::0;;-1:-1:-1;;35766:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35661:135::o;31364:41::-;;;;:::o;22182:239::-;22254:7;22274:13;22290:7;22298;22290:16;;;;;;-1:-1:-1;;;22290:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;;;;;;:::i;35416:108::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35492:13:::1;:24:::0;35416:108::o;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;;;;;;:::i;:::-;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;-1:-1:-1;;;22057:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;31306:51::-;;;;:::o;1363:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;37290:223::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37389:25:::1;37402:12:::0;37389:10;:25:::1;:::i;:::-;37418:3;37389:32;37381:61;;;;-1:-1:-1::0;;;37381:61:0::1;;;;;;;:::i;:::-;37466:10;37451:9;37461:1;37451:12;;;;;;-1:-1:-1::0;;;37451:12:0::1;;;;;;;;;;;;;;;;:25;;;;37496:12;37481:9;37491:1;37481:12;;;;;;-1:-1:-1::0;;;37481:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:27:::0;-1:-1:-1;;37290:223:0:o;31157:42::-;;;;:::o;35308:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35381:10:::1;:21:::0;35308:102::o;31524:33::-;;;;;;:::o;31409:38::-;;;;:::o;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;-1:-1:-1;;;29283:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;-1:-1:-1;;;29375:11:0;;;;;;;;;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;34953:241::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35022:21:::1;35004:15;35054:133;35078:11;:18:::0;35074:22;::::1;35054:133;;;35119:11;35131:1;35119:14;;;;;;-1:-1:-1::0;;;35119:14:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35155:9:::1;:12:::0;;-1:-1:-1;;;;;35119:14:0;;::::1;::::0;35111:64:::1;::::0;35171:3:::1;::::0;35165:1;;35155:12;::::1;;;-1:-1:-1::0;;;35155:12:0::1;;;;;;;;;;;;;;;;;35145:7;:22;;;;:::i;:::-;35144:30;;;;:::i;:::-;35111:64;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35098:3:0;::::1;::::0;::::1;:::i;:::-;;;;35054:133;;712:87:::0;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;35973:171::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36070:8:::1;36058;;:20;;36050:48;;;;-1:-1:-1::0;;;36050:48:0::1;;;;;;;:::i;:::-;36109:16;:27:::0;35973:171::o;32502:984::-;4823:1;5419:7;;:19;;5411:63;;;;-1:-1:-1;;;5411:63:0;;;;;;;:::i;:::-;4823:1;5552:7;:18;32631:28:::1;::::0;32606:12:::1;::::0;32631:28:::1;::::0;32648:10:::1;::::0;32631:28:::1;;;:::i;:::-;;;;;;;;;;;;;32621:39;;;;;;32606:54;;32665:19;32687:13;:11;:13::i;:::-;32718;::::0;32665:35;;-1:-1:-1;32718:13:0::1;;32705:62;;;;-1:-1:-1::0;;;32705:62:0::1;;;;;;;:::i;:::-;32815:8;;32805:6;32791:11;;:20;;;;:::i;:::-;:32;;32778:76;;;;-1:-1:-1::0;;;32778:76:0::1;;;;;;;:::i;:::-;32872:49;32891:11;;32872:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;32904:10:0::1;::::0;;-1:-1:-1;32916:4:0;;-1:-1:-1;32872:18:0::1;:49::i;:::-;32859:109;;;;-1:-1:-1::0;;;32859:109:0::1;;;;;;;:::i;:::-;33028:16;::::0;32992:10:::1;32986:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;33018:6;;32986:38:::1;:::i;:::-;:58;;32973:117;;;;-1:-1:-1::0;;;32973:117:0::1;;;;;;;:::i;:::-;33118:34;;33108:6;:44;;33095:100;;;;-1:-1:-1::0;;;33095:100:0::1;;;;;;;:::i;:::-;33242:6;33226:13;;:22;;;;:::i;:::-;33213:9;:35;;33200:78;;;;-1:-1:-1::0;;;33200:78:0::1;;;;;;;:::i;:::-;33288:9;33283:121;33307:6;33303:1;:10;33283:121;;;33335:38;33345:10;33357:15;33371:1:::0;33357:11;:15:::1;:::i;:::-;33335:9;:38::i;:::-;33379:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;33315:3;;;;;:::i;:::-;;;;33283:121;;;-1:-1:-1::0;33446:10:0::1;33440:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;33472:6;;33440:38:::1;:::i;:::-;33414:10;33408:17;::::0;;;:5:::1;:17;::::0;;;;:70;-1:-1:-1;;4779:1:0;5731:7;:22;-1:-1:-1;;;32502:984:0:o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;31084:30::-;;;;:::o;23288:295::-;23403:12;:10;:12::i;:::-;-1:-1:-1;;;;;23391:24:0;:8;-1:-1:-1;;;;;23391:24:0;;;23383:62;;;;-1:-1:-1;;;23383:62:0;;;;;;;:::i;:::-;23503:8;23458:18;:32;23477:12;:10;:12::i;:::-;-1:-1:-1;;;;;23458:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23458:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;;23542:12;:10;:12::i;:::-;-1:-1:-1;;;;;23527:48:0;;23566:8;23527:48;;;;;;:::i;:::-;;;;;;;;23288:295;;:::o;31913:38::-;;;;;;;;;;;;;;;;;;;:::o;33492:751::-;4823:1;5419:7;;:19;;5411:63;;;;-1:-1:-1;;;5411:63:0;;;;;;;:::i;:::-;4823:1;5552:7;:18;33561:19:::1;33583:13;:11;:13::i;:::-;33614:10;::::0;33561:35;;-1:-1:-1;33614:10:0::1;::::0;::::1;;;33601:55;;;;-1:-1:-1::0;;;33601:55:0::1;;;;;;;:::i;:::-;33704:8;;33694:6;33680:11;;:20;;;;:::i;:::-;:32;;33667:76;;;;-1:-1:-1::0;;;33667:76:0::1;;;;;;;:::i;:::-;33800:13;::::0;33767:10:::1;33761:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;33790:6;;33761:35:::1;:::i;:::-;:52;;33748:111;;;;-1:-1:-1::0;;;33748:111:0::1;;;;;;;:::i;:::-;33887:31;;33877:6;:41;;33864:97;;;;-1:-1:-1::0;;;33864:97:0::1;;;;;;;:::i;:::-;34005:6;33992:10;;:19;;;;:::i;:::-;33979:9;:32;;33966:75;;;;-1:-1:-1::0;;;33966:75:0::1;;;;;;;:::i;:::-;34051:9;34046:121;34070:6;34066:1;:10;34046:121;;;34098:38;34108:10;34120:15;34134:1:::0;34120:11;:15:::1;:::i;34098:38::-;34142:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;34078:3;;;;;:::i;:::-;;;;34046:121;;;-1:-1:-1::0;34206:10:0::1;34200:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;34229:6;;34200:35:::1;:::i;:::-;34177:10;34171:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;::::0;;::::1;:64:::0;;;;5731:7;:22;-1:-1:-1;;33492:751:0:o;31203:39::-;;;;:::o;31730:133::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31730:133:0;;-1:-1:-1;31730:133:0;:::o;34767:180::-;34886:53;34911:5;34918:3;34923:8;34933:5;34886:24;:53::i;:::-;34767:180;;;;:::o;34252:353::-;34328:13;34362:17;34370:8;34362:7;:17::i;:::-;34354:63;;;;-1:-1:-1;;;34354:63:0;;;;;;;:::i;:::-;34428:28;34459:10;:8;:10::i;:::-;34428:41;;34518:1;34493:14;34487:28;:32;:110;;;;;;;;;;;;;;;;;34546:14;34562:19;:8;:17;:19::i;:::-;34529:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34487:110;34480:117;34252:353;-1:-1:-1;;;34252:353:0:o;31249:53::-;;;;:::o;31873:33::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31873:33:0;:::o;35530:125::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35602:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;35594:29;;;::::0;::::1;;35628:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;35628:19:0;;::::1;::::0;;;::::1;::::0;;35530:125::o;32129:367::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;32220:19:::2;32242:13;:11;:13::i;:::-;32220:35;;32316:12;;32306:6;32288:15;;:24;;;;:::i;:::-;:40;;32266:100;;;;-1:-1:-1::0;;;32266:100:0::2;;;;;;;:::i;:::-;32376:9;32371:118;32395:6;32391:1;:10;32371:118;;;32423:31;32433:3:::0;32438:15:::2;32452:1:::0;32438:11;:15:::2;:::i;32423:31::-;32460:15;:17:::0;;;:15:::2;:17;::::0;::::2;:::i;:::-;;;;;;32403:3;;;;;:::i;:::-;;;;32371:118;;;-1:-1:-1::0;;4779:1:0::1;5731:7;:22:::0;-1:-1:-1;;32129:367:0:o;23589:164::-;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;35802:165::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35896:8:::1;35884;;:20;;35876:48;;;;-1:-1:-1::0;;;35876:48:0::1;;;;;;;:::i;:::-;35935:13;:24:::0;35802:165::o;1612:192::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;;-1:-1:-1::0;;;1693:73:0::1;;;;;;;:::i;:::-;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;36150:163::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36243:11:::1;;36230:9;:24;;36222:52;;;;-1:-1:-1::0;;;36222:52:0::1;;;;;;;:::i;:::-;36285:8;:20:::0;36150:163::o;31561:30::-;;;;;;;;;:::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;;21704:36;21728:11;21704:23;:36::i;24950:155::-;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;-1:-1:-1;;;25067:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;;24950:155;-1:-1:-1;;24950:155:0:o;95:98::-;175:10;95:98;:::o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;23973:12;:10;:12::i;:::-;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1812:173;;:::o;30147:832::-;30272:4;30312;30272;30329:525;30353:5;:12;30349:1;:16;30329:525;;;30387:20;30410:5;30416:1;30410:8;;;;;;-1:-1:-1;;;30410:8:0;;;;;;;;;;;;;;;30387:31;;30455:12;30439;:28;30435:408;;30609:12;30623;30592:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30582:55;;;;;;30567:70;;30435:408;;;30799:12;30813;30782:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30772:55;;;;;;30757:70;;30435:408;-1:-1:-1;30367:3:0;;;;:::i;:::-;;;;30329:525;;;-1:-1:-1;30951:20:0;;;;30147:832;-1:-1:-1;;;30147:832:0:o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;24295:328::-;24470:41;24489:12;:10;:12::i;:::-;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;32024:99::-;32075:13;32108:7;32101:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;;2453:53;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;-1:-1:-1;;;2682:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;-1:-1:-1;;;2770:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;20834:157::-;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;20834:157;;;:::o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;;;;;;:::i;:::-;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;;25419:32;25436:5;25443:7;25419:16;:32::i;26600:517::-;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;;;;;;:::i;:::-;26899:39;26920:4;26926:2;26930:7;26899:20;:39::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;-1:-1:-1;;;27043:16:0;;;;;;;;;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;;;;;;:::i;:::-;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;;;;;;:::i;:::-;26124:45;26153:1;26157:2;26161:7;26124:20;:45::i;:::-;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;27480:15;:2;-1:-1:-1;;;;;27480:13:0;;:15::i;:::-;27476:620;;;27532:2;-1:-1:-1;;;;;27516:36:0;;27553:12;:10;:12::i;:::-;27567:4;27573:7;27582:5;27516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;13396:387::-;13719:20;13767:8;;;13396:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:190::-;;3362:2;3350:9;3341:7;3337:23;3333:32;3330:2;;;3383:6;3375;3368:22;3330:2;-1:-1:-1;3411:23:1;;3320:120;-1:-1:-1;3320:120:1:o;3445:257::-;;3556:2;3544:9;3535:7;3531:23;3527:32;3524:2;;;3577:6;3569;3562:22;3524:2;3621:9;3608:23;3640:32;3666:5;3640:32;:::i;3707:261::-;;3829:2;3817:9;3808:7;3804:23;3800:32;3797:2;;;3850:6;3842;3835:22;3797:2;3887:9;3881:16;3906:32;3932:5;3906:32;:::i;3973:482::-;;4095:2;4083:9;4074:7;4070:23;4066:32;4063:2;;;4116:6;4108;4101:22;4063:2;4161:9;4148:23;4194:18;4186:6;4183:30;4180:2;;;4231:6;4223;4216:22;4180:2;4259:22;;4312:4;4304:13;;4300:27;-1:-1:-1;4290:2:1;;4346:6;4338;4331:22;4290:2;4374:75;4441:7;4436:2;4423:16;4418:2;4414;4410:11;4374:75;:::i;4655:734::-;;;;4819:2;4807:9;4798:7;4794:23;4790:32;4787:2;;;4840:6;4832;4825:22;4787:2;4881:9;4868:23;4858:33;;4942:2;4931:9;4927:18;4914:32;4965:18;5006:2;4998:6;4995:14;4992:2;;;5027:6;5019;5012:22;4992:2;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:2;;5142:6;5134;5127:22;5086:2;5187;5174:16;5213:2;5205:6;5202:14;5199:2;;;5234:6;5226;5219:22;5199:2;5293:7;5288:2;5282;5274:6;5270:15;5266:2;5262:24;5258:33;5255:46;5252:2;;;5319:6;5311;5304:22;5252:2;5355;5351;5347:11;5337:21;;5377:6;5367:16;;;;;4777:612;;;;;:::o;5394:258::-;;;5523:2;5511:9;5502:7;5498:23;5494:32;5491:2;;;5544:6;5536;5529:22;5491:2;-1:-1:-1;;5572:23:1;;;5642:2;5627:18;;;5614:32;;-1:-1:-1;5481:171:1:o;5657:259::-;;5738:5;5732:12;5765:6;5760:3;5753:19;5781:63;5837:6;5830:4;5825:3;5821:14;5814:4;5807:5;5803:16;5781:63;:::i;:::-;5898:2;5877:15;-1:-1:-1;;5873:29:1;5864:39;;;;5905:4;5860:50;;5708:208;-1:-1:-1;;5708:208:1:o;5921:229::-;6070:2;6066:15;;;;-1:-1:-1;;6062:53:1;6050:66;;6141:2;6132:12;;6040:110::o;6155:247::-;6312:19;;;6356:2;6347:12;;6340:28;6393:2;6384:12;;6302:100::o;6407:637::-;;6725:6;6719:13;6741:53;6787:6;6782:3;6775:4;6767:6;6763:17;6741:53;:::i;:::-;6857:13;;6816:16;;;;6879:57;6857:13;6816:16;6913:4;6901:17;;6879:57;:::i;:::-;-1:-1:-1;;;6958:20:1;;6987:22;;;7036:1;7025:13;;6695:349;-1:-1:-1;;;;6695:349:1:o;7049:203::-;-1:-1:-1;;;;;7213:32:1;;;;7195:51;;7183:2;7168:18;;7150:102::o;7257:490::-;-1:-1:-1;;;;;7526:15:1;;;7508:34;;7578:15;;7573:2;7558:18;;7551:43;7625:2;7610:18;;7603:34;;;7673:3;7668:2;7653:18;;7646:31;;;7257:490;;7694:47;;7721:19;;7713:6;7694:47;:::i;:::-;7686:55;7460:287;-1:-1:-1;;;;;;7460:287:1:o;7752:635::-;7923:2;7975:21;;;8045:13;;7948:18;;;8067:22;;;7752:635;;7923:2;8146:15;;;;8120:2;8105:18;;;7752:635;8192:169;8206:6;8203:1;8200:13;8192:169;;;8267:13;;8255:26;;8336:15;;;;8301:12;;;;8228:1;8221:9;8192:169;;;-1:-1:-1;8378:3:1;;7903:484;-1:-1:-1;;;;;;7903:484:1:o;8392:187::-;8557:14;;8550:22;8532:41;;8520:2;8505:18;;8487:92::o;8584:177::-;8730:25;;;8718:2;8703:18;;8685:76::o;8766:221::-;;8915:2;8904:9;8897:21;8935:46;8977:2;8966:9;8962:18;8954:6;8935:46;:::i;8992:397::-;9194:2;9176:21;;;9233:2;9213:18;;;9206:30;9272:34;9267:2;9252:18;;9245:62;-1:-1:-1;;;9338:2:1;9323:18;;9316:31;9379:3;9364:19;;9166:223::o;9394:414::-;9596:2;9578:21;;;9635:2;9615:18;;;9608:30;9674:34;9669:2;9654:18;;9647:62;-1:-1:-1;;;9740:2:1;9725:18;;9718:48;9798:3;9783:19;;9568:240::o;9813:402::-;10015:2;9997:21;;;10054:2;10034:18;;;10027:30;10093:34;10088:2;10073:18;;10066:62;-1:-1:-1;;;10159:2:1;10144:18;;10137:36;10205:3;10190:19;;9987:228::o;10220:352::-;10422:2;10404:21;;;10461:2;10441:18;;;10434:30;10500;10495:2;10480:18;;10473:58;10563:2;10548:18;;10394:178::o;10577:400::-;10779:2;10761:21;;;10818:2;10798:18;;;10791:30;10857:34;10852:2;10837:18;;10830:62;-1:-1:-1;;;10923:2:1;10908:18;;10901:34;10967:3;10952:19;;10751:226::o;10982:349::-;11184:2;11166:21;;;11223:2;11203:18;;;11196:30;11262:27;11257:2;11242:18;;11235:55;11322:2;11307:18;;11156:175::o;11336:332::-;11538:2;11520:21;;;11577:1;11557:18;;;11550:29;-1:-1:-1;;;11610:2:1;11595:18;;11588:39;11659:2;11644:18;;11510:158::o;11673:342::-;11875:2;11857:21;;;11914:2;11894:18;;;11887:30;-1:-1:-1;;;11948:2:1;11933:18;;11926:48;12006:2;11991:18;;11847:168::o;12020:408::-;12222:2;12204:21;;;12261:2;12241:18;;;12234:30;12300:34;12295:2;12280:18;;12273:62;-1:-1:-1;;;12366:2:1;12351:18;;12344:42;12418:3;12403:19;;12194:234::o;12433:346::-;12635:2;12617:21;;;12674:2;12654:18;;;12647:30;-1:-1:-1;;;12708:2:1;12693:18;;12686:52;12770:2;12755:18;;12607:172::o;12784:397::-;12986:2;12968:21;;;13025:2;13005:18;;;12998:30;13064:34;13059:2;13044:18;;13037:62;-1:-1:-1;;;13130:2:1;13115:18;;13108:31;13171:3;13156:19;;12958:223::o;13186:420::-;13388:2;13370:21;;;13427:2;13407:18;;;13400:30;13466:34;13461:2;13446:18;;13439:62;13537:26;13532:2;13517:18;;13510:54;13596:3;13581:19;;13360:246::o;13611:354::-;13813:2;13795:21;;;13852:2;13832:18;;;13825:30;13891:32;13886:2;13871:18;;13864:60;13956:2;13941:18;;13785:180::o;13970:406::-;14172:2;14154:21;;;14211:2;14191:18;;;14184:30;14250:34;14245:2;14230:18;;14223:62;-1:-1:-1;;;14316:2:1;14301:18;;14294:40;14366:3;14351:19;;14144:232::o;14381:405::-;14583:2;14565:21;;;14622:2;14602:18;;;14595:30;14661:34;14656:2;14641:18;;14634:62;-1:-1:-1;;;14727:2:1;14712:18;;14705:39;14776:3;14761:19;;14555:231::o;14791:341::-;14993:2;14975:21;;;15032:2;15012:18;;;15005:30;-1:-1:-1;;;15066:2:1;15051:18;;15044:47;15123:2;15108:18;;14965:167::o;15137:356::-;15339:2;15321:21;;;15358:18;;;15351:30;15417:34;15412:2;15397:18;;15390:62;15484:2;15469:18;;15311:182::o;15498:408::-;15700:2;15682:21;;;15739:2;15719:18;;;15712:30;15778:34;15773:2;15758:18;;15751:62;-1:-1:-1;;;15844:2:1;15829:18;;15822:42;15896:3;15881:19;;15672:234::o;15911:339::-;16113:2;16095:21;;;16152:2;16132:18;;;16125:30;-1:-1:-1;;;16186:2:1;16171:18;;16164:45;16241:2;16226:18;;16085:165::o;16255:356::-;16457:2;16439:21;;;16476:18;;;16469:30;16535:34;16530:2;16515:18;;16508:62;16602:2;16587:18;;16429:182::o;16616:405::-;16818:2;16800:21;;;16857:2;16837:18;;;16830:30;16896:34;16891:2;16876:18;;16869:62;-1:-1:-1;;;16962:2:1;16947:18;;16940:39;17011:3;16996:19;;16790:231::o;17026:351::-;17228:2;17210:21;;;17267:2;17247:18;;;17240:30;17306:29;17301:2;17286:18;;17279:57;17368:2;17353:18;;17200:177::o;17382:341::-;17584:2;17566:21;;;17623:2;17603:18;;;17596:30;-1:-1:-1;;;17657:2:1;17642:18;;17635:47;17714:2;17699:18;;17556:167::o;17728:346::-;17930:2;17912:21;;;17969:2;17949:18;;;17942:30;-1:-1:-1;;;18003:2:1;17988:18;;17981:52;18065:2;18050:18;;17902:172::o;18079:347::-;18281:2;18263:21;;;18320:2;18300:18;;;18293:30;18359:25;18354:2;18339:18;;18332:53;18417:2;18402:18;;18253:173::o;18431:397::-;18633:2;18615:21;;;18672:2;18652:18;;;18645:30;18711:34;18706:2;18691:18;;18684:62;-1:-1:-1;;;18777:2:1;18762:18;;18755:31;18818:3;18803:19;;18605:223::o;18833:413::-;19035:2;19017:21;;;19074:2;19054:18;;;19047:30;19113:34;19108:2;19093:18;;19086:62;-1:-1:-1;;;19179:2:1;19164:18;;19157:47;19236:3;19221:19;;19007:239::o;19251:397::-;19453:2;19435:21;;;19492:2;19472:18;;;19465:30;19531:34;19526:2;19511:18;;19504:62;-1:-1:-1;;;19597:2:1;19582:18;;19575:31;19638:3;19623:19;;19425:223::o;19653:355::-;19855:2;19837:21;;;19894:2;19874:18;;;19867:30;19933:33;19928:2;19913:18;;19906:61;19999:2;19984:18;;19827:181::o;20013:340::-;20215:2;20197:21;;;20254:2;20234:18;;;20227:30;-1:-1:-1;;;20288:2:1;20273:18;;20266:46;20344:2;20329:18;;20187:166::o;20793:128::-;;20864:1;20860:6;20857:1;20854:13;20851:2;;;20870:18;;:::i;:::-;-1:-1:-1;20906:9:1;;20841:80::o;20926:120::-;;20992:1;20982:2;;20997:18;;:::i;:::-;-1:-1:-1;21031:9:1;;20972:74::o;21051:168::-;;21157:1;21153;21149:6;21145:14;21142:1;21139:21;21134:1;21127:9;21120:17;21116:45;21113:2;;;21164:18;;:::i;:::-;-1:-1:-1;21204:9:1;;21103:116::o;21224:125::-;;21292:1;21289;21286:8;21283:2;;;21297:18;;:::i;:::-;-1:-1:-1;21334:9:1;;21273:76::o;21354:258::-;21426:1;21436:113;21450:6;21447:1;21444:13;21436:113;;;21526:11;;;21520:18;21507:11;;;21500:39;21472:2;21465:10;21436:113;;;21567:6;21564:1;21561:13;21558:2;;;-1:-1:-1;;21602:1:1;21584:16;;21577:27;21407:205::o;21617:380::-;21702:1;21692:12;;21749:1;21739:12;;;21760:2;;21814:4;21806:6;21802:17;21792:27;;21760:2;21867;21859:6;21856:14;21836:18;21833:38;21830:2;;;21913:10;21908:3;21904:20;21901:1;21894:31;21948:4;21945:1;21938:15;21976:4;21973:1;21966:15;21830:2;;21672:325;;;:::o;22002:135::-;;-1:-1:-1;;22062:17:1;;22059:2;;;22082:18;;:::i;:::-;-1:-1:-1;22129:1:1;22118:13;;22049:88::o;22142:112::-;;22200:1;22190:2;;22205:18;;:::i;:::-;-1:-1:-1;22239:9:1;;22180:74::o;22259:127::-;22320:10;22315:3;22311:20;22308:1;22301:31;22351:4;22348:1;22341:15;22375:4;22372:1;22365:15;22391:127;22452:10;22447:3;22443:20;22440:1;22433:31;22483:4;22480:1;22473:15;22507:4;22504:1;22497:15;22523:127;22584:10;22579:3;22575:20;22572:1;22565:31;22615:4;22612:1;22605:15;22639:4;22636:1;22629:15;22655:133;-1:-1:-1;;;;;;22731:32:1;;22721:43;;22711:2;;22778:1;22775;22768:12

Swarm Source

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