ETH Price: $3,485.95 (+1.96%)
Gas: 12 Gwei

Token

OKOKU (O)
 

Overview

Max Total Supply

3,403 O

Holders

1,549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 O
0x7179af9dbe43f1dbfed8733b83260ecac18515c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ŌKOKU is a fully decentralized project, striving to develop the most satisfied community in the NFT space. Art is fully hand drawn with 4 different characters and 331 total traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OKOKU

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-04-05
*/

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 OKOKU is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public SALE_NFT = 3318;
	uint256 public VAULT_NFT = 15;
	
	uint256 public MINT_PER_WALLET_PRESALE = 6;
	uint256 public MINT_PER_WALLET_PRESALE_HONORARY_MEMBERS = 9;
	uint256 public MINT_PER_WALLET_SALE = 3318;
	
	uint256 public FREE_NFT_PER_MINT = 2;
	
	uint256 public MINT_PER_TRANSACTION_PRESALE = 2;
	uint256 public MINT_PER_TRANSACTION_PRESALE_HONORARY_MEMBERS = 3;
	uint256 public MINT_PER_TRANSACTION_SALE = 3;
	
	uint256 public PRESALE_PRICE = 5 * 10**16;
	uint256 public SALE_PRICE = 5 * 10**16;
	
	uint256 public SALE_MINTED;
	uint256 public VAULT_MINTED;
	
    bool public presaleEnable = false;
	bool public saleEnable = false;
	
    string private baseURI;
	bytes32 public merkleRoot;
	bytes32 public merkleRootHonoraryMembers;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	mapping (address => User) public users;

    constructor() ERC721P('OKOKU', 'O') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintVaultNFT(address _to, uint256 _count) public onlyOwner{
	    uint256 totalSupply = totalSupply();
        require(
            VAULT_MINTED + _count <= VAULT_NFT, 
            "Max limit"
        );
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, totalSupply + i);
			VAULT_MINTED++;
        }
    }
	
	function mintPreSaleNFT(uint256 _count, uint256 roottype, bytes32[] calldata merkleProof) public payable{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		uint256 totalSupply = totalSupply();
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
		if(roottype==1)
		{
		    uint256 count = _count * FREE_NFT_PER_MINT + _count;
			require(
				SALE_MINTED + count <= SALE_NFT, 
				"Exceeds max limit"
			);
			require(
				MerkleProof.verify(merkleProof, merkleRoot, node), 
				"MerkleDistributor: Invalid proof."
			);
			require(
				users[msg.sender].presalemint + count <= MINT_PER_WALLET_PRESALE,
				"Exceeds max mint limit per wallet"
			);
			require(
				_count <= MINT_PER_TRANSACTION_PRESALE,
				"Exceeds max mint limit per txn"
			);
			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;
		}
		else
		{
		    uint256 count = _count * FREE_NFT_PER_MINT + _count;
			require(
				SALE_MINTED + count <= SALE_NFT, 
				"Exceeds max limit"
			);
			require(
				MerkleProof.verify(merkleProof, merkleRootHonoraryMembers, node), 
				"MerkleDistributor: Invalid proof."
			);
			require(
				users[msg.sender].presalemint + count <= MINT_PER_WALLET_PRESALE_HONORARY_MEMBERS,
				"Exceeds max mint limit per wallet"
			);
			require(
				_count <= MINT_PER_TRANSACTION_PRESALE_HONORARY_MEMBERS,
				"Exceeds max mint limit per txn"
			);
			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{
		uint256 totalSupply = totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
		
		uint256 count = _count * FREE_NFT_PER_MINT + _count;
		
        require(
			SALE_MINTED + count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + count <= MINT_PER_WALLET_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MINT_PER_TRANSACTION_SALE,
			"Exceeds max mint limit per txn"
		);
		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 withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	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, "Incorrect value");
		saleEnable = status;
    }
	
	function setPreSaleStatus(bool status) public onlyOwner {
	   require(presaleEnable != status, "Incorrect value");
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MINT_PER_WALLET_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit, uint256 newLimitHonoraryMembers) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
		require(SALE_NFT >= newLimitHonoraryMembers, "Incorrect value");
		
        MINT_PER_WALLET_PRESALE = newLimit;
		MINT_PER_WALLET_PRESALE_HONORARY_MEMBERS = newLimitHonoraryMembers;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateVaultSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= VAULT_MINTED, "Incorrect value");
        VAULT_NFT = newSupply;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit, uint256 newLimitHonoraryMembers) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
		require(SALE_NFT >= newLimitHonoraryMembers, "Incorrect value");
		
        MINT_PER_TRANSACTION_PRESALE = newLimit;
		MINT_PER_TRANSACTION_PRESALE_HONORARY_MEMBERS = newLimitHonoraryMembers;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MINT_PER_TRANSACTION_SALE = newLimit;
    }
	
	function updateFreeLimitPerMint(uint256 newLimit) external onlyOwner {
        FREE_NFT_PER_MINT = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot, bytes32 newRootHonoraryMember) external onlyOwner {
	   merkleRoot = newRoot;
	   merkleRootHonoraryMembers = newRootHonoraryMember;
	}
}

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":"FREE_NFT_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_TRANSACTION_PRESALE_HONORARY_MEMBERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WALLET_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WALLET_PRESALE_HONORARY_MEMBERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WALLET_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":[],"name":"VAULT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VAULT_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"merkleRootHonoraryMembers","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"roottype","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintVaultNFT","outputs":[],"stateMutability":"nonpayable","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":"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":"newLimit","type":"uint256"}],"name":"updateFreeLimitPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"},{"internalType":"bytes32","name":"newRootHonoraryMember","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"},{"internalType":"uint256","name":"newLimitHonoraryMembers","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"},{"internalType":"uint256","name":"newLimitHonoraryMembers","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":"uint256","name":"newSupply","type":"uint256"}],"name":"updateVaultSupply","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610cf66007819055600f600881905560066009908155600a55600b919091556002600c819055600d556003600e819055905566b1a2bc2ec5000060108190556011556014805461ffff191690553480156200005e57600080fd5b5060408051808201825260058152644f4b4f4b5560d81b6020808301918252835180850190945260018452604f60f81b908401528151919291620000a59160009162000139565b508051620000bb90600190602084019062000139565b505050620000d8620000d2620000e360201b60201c565b620000e7565b60016006556200021c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600281046001821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b61315d806200022c6000396000f3fe6080604052600436106103505760003560e01c80637ec18cf6116101c6578063b88d4fde116100f7578063dfb74ece11610095578063f176baaa1161006f578063f176baaa14610903578063f2fde38b14610923578063f439733514610943578063fe4ca8471461096357610350565b8063dfb74ece146108ae578063e985e9c5146108ce578063eeb6349f146108ee57610350565b8063cac8a0fd116100d1578063cac8a0fd1461084f578063cbca5d6e14610864578063d897833e14610879578063df66ca881461089957610350565b8063b88d4fde146107fa578063bd39b8601461081a578063c87b56dd1461082f57610350565b8063a22cb46511610164578063af8879051161013e578063af88790514610792578063b216eda1146107b2578063b4318de7146107c5578063b79b7482146107da57610350565b8063a22cb46514610731578063a87430ba14610751578063a95268621461077f57610350565b80638462151c116101a05780638462151c146106c55780638da5cb5b146106f257806395d89b4114610707578063995b8ef61461071c57610350565b80637ec18cf61461067b5780637f205a7414610690578063817a4597146106a557610350565b80634415c7d9116102a057806362dc6e211161023e57806365fccb521161021857806365fccb521461060657806370a0823114610626578063715018a6146106465780637ec0912e1461065b57610350565b806362dc6e21146105bc5780636352211e146105d157806364c19876146105f157610350565b80634f6ccce71161027a5780634f6ccce71461053c57806355f804b31461055c5780635e326b921461057c578063629acea01461059c57610350565b80634415c7d9146104fd578063491728cc146105125780634f547b901461052757610350565b80631ddb5f991161030d5780632f745c59116102e75780632f745c59146104885780633ccfd60b146104a85780633e2e2a80146104bd57806342842e0e146104dd57610350565b80631ddb5f991461043357806323b872dd146104535780632eb4a7ab1461047357610350565b806301ffc9a71461035557806306fdde031461038b578063081812fc146103ad578063095ea7b3146103da5780630990e534146103fc57806318160ddd1461041e575b600080fd5b34801561036157600080fd5b506103756103703660046126fc565b610978565b604051610382919061293a565b60405180910390f35b34801561039757600080fd5b506103a06109a5565b604051610382919061294e565b3480156103b957600080fd5b506103cd6103c836600461277a565b610a37565b60405161038291906128a5565b3480156103e657600080fd5b506103fa6103f5366004612698565b610a83565b005b34801561040857600080fd5b50610411610b1b565b6040516103829190612945565b34801561042a57600080fd5b50610411610b21565b34801561043f57600080fd5b506103fa61044e3660046126db565b610b27565b34801561045f57600080fd5b506103fa61046e3660046125bb565b610bb5565b34801561047f57600080fd5b50610411610bc0565b34801561049457600080fd5b506104116104a3366004612698565b610bc6565b3480156104b457600080fd5b506103fa610c89565b3480156104c957600080fd5b506103fa6104d836600461277a565b610cfb565b3480156104e957600080fd5b506103fa6104f83660046125bb565b610d61565b34801561050957600080fd5b50610411610d7c565b34801561051e57600080fd5b50610411610d82565b34801561053357600080fd5b50610411610d88565b34801561054857600080fd5b5061041161055736600461277a565b610d8e565b34801561056857600080fd5b506103fa610577366004612734565b610dba565b34801561058857600080fd5b506103fa6105973660046126c1565b610e0c565b3480156105a857600080fd5b506103fa6105b736600461277a565b610e87565b3480156105c857600080fd5b50610411610ecb565b3480156105dd57600080fd5b506103cd6105ec36600461277a565b610ed1565b3480156105fd57600080fd5b50610411610f29565b34801561061257600080fd5b506103fa61062136600461277a565b610f2f565b34801561063257600080fd5b5061041161064136600461256f565b610f73565b34801561065257600080fd5b506103fa611010565b34801561066757600080fd5b506103fa61067636600461277a565b61105b565b34801561068757600080fd5b5061037561109f565b34801561069c57600080fd5b506104116110a8565b3480156106b157600080fd5b506103fa6106c0366004612698565b6110ae565b3480156106d157600080fd5b506106e56106e036600461256f565b611174565b60405161038291906128f6565b3480156106fe57600080fd5b506103cd61125a565b34801561071357600080fd5b506103a0611269565b34801561072857600080fd5b50610411611278565b34801561073d57600080fd5b506103fa61074c36600461266f565b61127e565b34801561075d57600080fd5b5061077161076c36600461256f565b61134c565b604051610382929190612858565b6103fa61078d36600461277a565b611365565b34801561079e57600080fd5b506103fa6107ad3660046126db565b6114eb565b6103fa6107c0366004612792565b611535565b3480156107d157600080fd5b506104116118ea565b3480156107e657600080fd5b506103fa6107f536600461277a565b6118f0565b34801561080657600080fd5b506103fa6108153660046125f6565b611956565b34801561082657600080fd5b50610411611962565b34801561083b57600080fd5b506103a061084a36600461277a565b611968565b34801561085b57600080fd5b506104116119eb565b34801561087057600080fd5b506104116119f1565b34801561088557600080fd5b506103fa6108943660046126c1565b6119f7565b3480156108a557600080fd5b50610411611a7f565b3480156108ba57600080fd5b506103fa6108c93660046126db565b611a85565b3480156108da57600080fd5b506103756108e9366004612589565b611b13565b3480156108fa57600080fd5b50610411611b41565b34801561090f57600080fd5b506103fa61091e36600461277a565b611b47565b34801561092f57600080fd5b506103fa61093e36600461256f565b611bad565b34801561094f57600080fd5b506103fa61095e36600461277a565b611c1e565b34801561096f57600080fd5b50610375611c84565b60006001600160e01b0319821663780e9d6360e01b148061099d575061099d82611c92565b90505b919050565b6060600080546109b490613065565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090613065565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a4282611cd2565b610a675760405162461bcd60e51b8152600401610a5e90612d7f565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a8e82610ed1565b9050806001600160a01b0316836001600160a01b03161415610ac25760405162461bcd60e51b8152600401610a5e90612f04565b806001600160a01b0316610ad4611d2a565b6001600160a01b03161480610af05750610af0816108e9611d2a565b610b0c5760405162461bcd60e51b8152600401610a5e90612c2f565b610b168383611d2e565b505050565b60125481565b60025490565b610b2f611d2a565b6001600160a01b0316610b4061125a565b6001600160a01b031614610b665760405162461bcd60e51b8152600401610a5e90612df4565b816007541015610b885760405162461bcd60e51b8152600401610a5e90612dcb565b806007541015610baa5760405162461bcd60e51b8152600401610a5e90612dcb565b600d91909155600e55565b610b16838383611d9c565b60165481565b6000610bd183610f73565b8210610bef5760405162461bcd60e51b8152600401610a5e90612e9d565b6000805b600254811015610c6a5760028181548110610c1e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c5a5783821415610c4e579150610c839050565b610c57826130a0565b91505b610c63816130a0565b9050610bf3565b5060405162461bcd60e51b8152600401610a5e90612e9d565b92915050565b610c91611d2a565b6001600160a01b0316610ca261125a565b6001600160a01b031614610cc85760405162461bcd60e51b8152600401610a5e90612df4565b6040514790339082156108fc029083906000818181858888f19350505050158015610cf7573d6000803e3d6000fd5b5050565b610d03611d2a565b6001600160a01b0316610d1461125a565b6001600160a01b031614610d3a5760405162461bcd60e51b8152600401610a5e90612df4565b806007541015610d5c5760405162461bcd60e51b8152600401610a5e90612dcb565b600f55565b610b1683838360405180602001604052806000815250611956565b60175481565b600e5481565b600d5481565b6000610d98610b21565b8210610db65760405162461bcd60e51b8152600401610a5e90612ecd565b5090565b610dc2611d2a565b6001600160a01b0316610dd361125a565b6001600160a01b031614610df95760405162461bcd60e51b8152600401610a5e90612df4565b8051610cf7906015906020840190612448565b610e14611d2a565b6001600160a01b0316610e2561125a565b6001600160a01b031614610e4b5760405162461bcd60e51b8152600401610a5e90612df4565b60145460ff1615158115151415610e745760405162461bcd60e51b8152600401610a5e90612dcb565b6014805460ff1916911515919091179055565b610e8f611d2a565b6001600160a01b0316610ea061125a565b6001600160a01b031614610ec65760405162461bcd60e51b8152600401610a5e90612df4565b600c55565b60105481565b60008060028381548110610ef557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061099d5760405162461bcd60e51b8152600401610a5e90612cd6565b600c5481565b610f37611d2a565b6001600160a01b0316610f4861125a565b6001600160a01b031614610f6e5760405162461bcd60e51b8152600401610a5e90612df4565b601055565b60006001600160a01b038216610f9b5760405162461bcd60e51b8152600401610a5e90612c8c565b600254600090815b818110156110075760028181548110610fcc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610ff757610ff4836130a0565b92505b611000816130a0565b9050610fa3565b50909392505050565b611018611d2a565b6001600160a01b031661102961125a565b6001600160a01b03161461104f5760405162461bcd60e51b8152600401610a5e90612df4565b6110596000611dd4565b565b611063611d2a565b6001600160a01b031661107461125a565b6001600160a01b03161461109a5760405162461bcd60e51b8152600401610a5e90612df4565b601155565b60145460ff1681565b60115481565b6110b6611d2a565b6001600160a01b03166110c761125a565b6001600160a01b0316146110ed5760405162461bcd60e51b8152600401610a5e90612df4565b60006110f7610b21565b90506008548260135461110a9190612fd7565b11156111285760405162461bcd60e51b8152600401610a5e90612b23565b60005b8281101561116e57611146846111418385612fd7565b611e26565b60138054906000611156836130a0565b91905055508080611166906130a0565b91505061112b565b50505050565b606061117f82610f73565b60001061119e5760405162461bcd60e51b8152600401610a5e90612e9d565b60006111a983610f73565b905060008167ffffffffffffffff8111156111d457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111fd578160200160208202803683370190505b50905060005b82811015611252576112158582610bc6565b82828151811061123557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061124a816130a0565b915050611203565b509392505050565b6005546001600160a01b031690565b6060600180546109b490613065565b60075481565b611286611d2a565b6001600160a01b0316826001600160a01b031614156112b75760405162461bcd60e51b8152600401610a5e90612ab5565b80600460006112c4611d2a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611308611d2a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611340919061293a565b60405180910390a35050565b6018602052600090815260409020805460019091015482565b600061136f610b21565b601454909150610100900460ff166113995760405162461bcd60e51b8152600401610a5e90612b46565b600082600c54846113aa9190613003565b6113b49190612fd7565b9050600754816012546113c79190612fd7565b11156113e55760405162461bcd60e51b8152600401610a5e90612d1f565b600b5433600090815260186020526040902060010154611406908390612fd7565b11156114245760405162461bcd60e51b8152600401610a5e90612f96565b600f548311156114465760405162461bcd60e51b8152600401610a5e90612aec565b826011546114549190613003565b3410156114735760405162461bcd60e51b8152600401610a5e90612e72565b60005b818110156114b45761148c336111418386612fd7565b6012805490600061149c836130a0565b919050555080806114ac906130a0565b915050611476565b50336000908152601860205260409020600101546114d3908290612fd7565b33600090815260186020526040902060010155505050565b6114f3611d2a565b6001600160a01b031661150461125a565b6001600160a01b03161461152a5760405162461bcd60e51b8152600401610a5e90612df4565b601691909155601755565b600033604051602001611548919061283b565b604051602081830303815290604052805190602001209050600061156a610b21565b60145490915060ff1661158f5760405162461bcd60e51b8152600401610a5e90612bbe565b846001141561173f57600086600c54886115a99190613003565b6115b39190612fd7565b9050600754816012546115c69190612fd7565b11156115e45760405162461bcd60e51b8152600401610a5e90612d1f565b611625858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150869050611e40565b6116415760405162461bcd60e51b8152600401610a5e90612bee565b6009543360009081526018602052604090205461165f908390612fd7565b111561167d5760405162461bcd60e51b8152600401610a5e90612f96565b600d5487111561169f5760405162461bcd60e51b8152600401610a5e90612aec565b866010546116ad9190613003565b3410156116cc5760405162461bcd60e51b8152600401610a5e90612e72565b60005b8181101561170d576116e5336111418386612fd7565b601280549060006116f5836130a0565b91905055508080611705906130a0565b9150506116cf565b5033600090815260186020526040902054611729908290612fd7565b33600090815260186020526040902055506118e2565b600086600c54886117509190613003565b61175a9190612fd7565b90506007548160125461176d9190612fd7565b111561178b5760405162461bcd60e51b8152600401610a5e90612d1f565b6117cc858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150869050611e40565b6117e85760405162461bcd60e51b8152600401610a5e90612bee565b600a5433600090815260186020526040902054611806908390612fd7565b11156118245760405162461bcd60e51b8152600401610a5e90612f96565b600e548711156118465760405162461bcd60e51b8152600401610a5e90612aec565b866010546118549190613003565b3410156118735760405162461bcd60e51b8152600401610a5e90612e72565b60005b818110156118b45761188c336111418386612fd7565b6012805490600061189c836130a0565b919050555080806118ac906130a0565b915050611876565b50336000908152601860205260409020546118d0908290612fd7565b33600090815260186020526040902055505b505050505050565b600a5481565b6118f8611d2a565b6001600160a01b031661190961125a565b6001600160a01b03161461192f5760405162461bcd60e51b8152600401610a5e90612df4565b6013548110156119515760405162461bcd60e51b8152600401610a5e90612dcb565b600855565b61116e84848484611efb565b60135481565b606061197382611cd2565b61198f5760405162461bcd60e51b8152600401610a5e90612961565b6000611999611f34565b905060008151116119b957604051806020016040528060008152506119e4565b806119c384611f43565b6040516020016119d4929190612866565b6040516020818303038152906040525b9392505050565b600f5481565b600b5481565b6119ff611d2a565b6001600160a01b0316611a1061125a565b6001600160a01b031614611a365760405162461bcd60e51b8152600401610a5e90612df4565b60145460ff6101009091041615158115151415611a655760405162461bcd60e51b8152600401610a5e90612dcb565b601480549115156101000261ff0019909216919091179055565b60095481565b611a8d611d2a565b6001600160a01b0316611a9e61125a565b6001600160a01b031614611ac45760405162461bcd60e51b8152600401610a5e90612df4565b816007541015611ae65760405162461bcd60e51b8152600401610a5e90612dcb565b806007541015611b085760405162461bcd60e51b8152600401610a5e90612dcb565b600991909155600a55565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60085481565b611b4f611d2a565b6001600160a01b0316611b6061125a565b6001600160a01b031614611b865760405162461bcd60e51b8152600401610a5e90612df4565b806007541015611ba85760405162461bcd60e51b8152600401610a5e90612dcb565b600b55565b611bb5611d2a565b6001600160a01b0316611bc661125a565b6001600160a01b031614611bec5760405162461bcd60e51b8152600401610a5e90612df4565b6001600160a01b038116611c125760405162461bcd60e51b8152600401610a5e906129f4565b611c1b81611dd4565b50565b611c26611d2a565b6001600160a01b0316611c3761125a565b6001600160a01b031614611c5d5760405162461bcd60e51b8152600401610a5e90612df4565b601254811015611c7f5760405162461bcd60e51b8152600401610a5e90612dcb565b600755565b601454610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611cc357506001600160e01b03198216635b5e139f60e01b145b8061099d575061099d82612066565b6002546000908210801561099d575060006001600160a01b031660028381548110611d0d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6382610ed1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611dad611da7611d2a565b8261207f565b611dc95760405162461bcd60e51b8152600401610a5e90612f45565b610b168383836120fc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf78282604051806020016040528060008152506121ed565b600081815b8551811015611ef0576000868281518110611e7057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611eb1578281604051602001611e94929190612858565b604051602081830303815290604052805190602001209250611edd565b8083604051602001611ec4929190612858565b6040516020818303038152906040528051906020012092505b5080611ee8816130a0565b915050611e45565b509092149392505050565b611f0c611f06611d2a565b8361207f565b611f285760405162461bcd60e51b8152600401610a5e90612f45565b61116e84848484612220565b6060601580546109b490613065565b606081611f6857506040805180820190915260018152600360fc1b60208201526109a0565b8160005b8115611f925780611f7c816130a0565b9150611f8b9050600a83612fef565b9150611f6c565b60008167ffffffffffffffff811115611fbb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe5576020820181803683370190505b5090505b841561205e57611ffa600183613022565b9150612007600a866130bb565b612012906030612fd7565b60f81b81838151811061203557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612057600a86612fef565b9450611fe9565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061208a82611cd2565b6120a65760405162461bcd60e51b8152600401610a5e90612b72565b60006120b183610ed1565b9050806001600160a01b0316846001600160a01b031614806120ec5750836001600160a01b03166120e184610a37565b6001600160a01b0316145b8061205e575061205e8185611b13565b826001600160a01b031661210f82610ed1565b6001600160a01b0316146121355760405162461bcd60e51b8152600401610a5e90612e29565b6001600160a01b03821661215b5760405162461bcd60e51b8152600401610a5e90612a71565b612166838383610b16565b612171600082611d2e565b816002828154811061219357634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6121f78383612253565b6122046000848484612327565b610b165760405162461bcd60e51b8152600401610a5e906129a2565b61222b8484846120fc565b61223784848484612327565b61116e5760405162461bcd60e51b8152600401610a5e906129a2565b6001600160a01b0382166122795760405162461bcd60e51b8152600401610a5e90612d4a565b61228281611cd2565b1561229f5760405162461bcd60e51b8152600401610a5e90612a3a565b6122ab60008383610b16565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061233b846001600160a01b0316612442565b1561243757836001600160a01b031663150b7a02612357611d2a565b8786866040518563ffffffff1660e01b815260040161237994939291906128b9565b602060405180830381600087803b15801561239357600080fd5b505af19250505080156123c3575060408051601f3d908101601f191682019092526123c091810190612718565b60015b61241d573d8080156123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b5080516124155760405162461bcd60e51b8152600401610a5e906129a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061205e565b506001949350505050565b3b151590565b82805461245490613065565b90600052602060002090601f01602090048101928261247657600085556124bc565b82601f1061248f57805160ff19168380011785556124bc565b828001600101855582156124bc579182015b828111156124bc5782518255916020019190600101906124a1565b50610db69291505b80821115610db657600081556001016124c4565b600067ffffffffffffffff808411156124f3576124f36130fb565b604051601f8501601f191681016020018281118282101715612517576125176130fb565b60405284815291508183850186101561252f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109a057600080fd5b803580151581146109a057600080fd5b600060208284031215612580578081fd5b6119e482612548565b6000806040838503121561259b578081fd5b6125a483612548565b91506125b260208401612548565b90509250929050565b6000806000606084860312156125cf578081fd5b6125d884612548565b92506125e660208501612548565b9150604084013590509250925092565b6000806000806080858703121561260b578081fd5b61261485612548565b935061262260208601612548565b925060408501359150606085013567ffffffffffffffff811115612644578182fd5b8501601f81018713612654578182fd5b612663878235602084016124d8565b91505092959194509250565b60008060408385031215612681578182fd5b61268a83612548565b91506125b26020840161255f565b600080604083850312156126aa578182fd5b6126b383612548565b946020939093013593505050565b6000602082840312156126d2578081fd5b6119e48261255f565b600080604083850312156126ed578182fd5b50508035926020909101359150565b60006020828403121561270d578081fd5b81356119e481613111565b600060208284031215612729578081fd5b81516119e481613111565b600060208284031215612745578081fd5b813567ffffffffffffffff81111561275b578182fd5b8201601f8101841361276b578182fd5b61205e848235602084016124d8565b60006020828403121561278b578081fd5b5035919050565b600080600080606085870312156127a7578182fd5b8435935060208501359250604085013567ffffffffffffffff808211156127cc578384fd5b818701915087601f8301126127df578384fd5b8135818111156127ed578485fd5b8860208083028501011115612800578485fd5b95989497505060200194505050565b60008151808452612827816020860160208601613039565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612878818460208801613039565b83519083019061288c818360208801613039565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ec9083018461280f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561292e57835183529284019291840191600101612912565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526119e4602083018461280f565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60008219821115612fea57612fea6130cf565b500190565b600082612ffe57612ffe6130e5565b500490565b600081600019048311821515161561301d5761301d6130cf565b500290565b600082821015613034576130346130cf565b500390565b60005b8381101561305457818101518382015260200161303c565b8381111561116e5750506000910152565b60028104600182168061307957607f821691505b6020821081141561309a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130b4576130b46130cf565b5060010190565b6000826130ca576130ca6130e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c1b57600080fdfea2646970667358221220eb91edc5d7df17b81f18fb3a5d1806a7c2c21c8888928fd8338eb90002da500664736f6c63430008000033

Deployed Bytecode

0x6080604052600436106103505760003560e01c80637ec18cf6116101c6578063b88d4fde116100f7578063dfb74ece11610095578063f176baaa1161006f578063f176baaa14610903578063f2fde38b14610923578063f439733514610943578063fe4ca8471461096357610350565b8063dfb74ece146108ae578063e985e9c5146108ce578063eeb6349f146108ee57610350565b8063cac8a0fd116100d1578063cac8a0fd1461084f578063cbca5d6e14610864578063d897833e14610879578063df66ca881461089957610350565b8063b88d4fde146107fa578063bd39b8601461081a578063c87b56dd1461082f57610350565b8063a22cb46511610164578063af8879051161013e578063af88790514610792578063b216eda1146107b2578063b4318de7146107c5578063b79b7482146107da57610350565b8063a22cb46514610731578063a87430ba14610751578063a95268621461077f57610350565b80638462151c116101a05780638462151c146106c55780638da5cb5b146106f257806395d89b4114610707578063995b8ef61461071c57610350565b80637ec18cf61461067b5780637f205a7414610690578063817a4597146106a557610350565b80634415c7d9116102a057806362dc6e211161023e57806365fccb521161021857806365fccb521461060657806370a0823114610626578063715018a6146106465780637ec0912e1461065b57610350565b806362dc6e21146105bc5780636352211e146105d157806364c19876146105f157610350565b80634f6ccce71161027a5780634f6ccce71461053c57806355f804b31461055c5780635e326b921461057c578063629acea01461059c57610350565b80634415c7d9146104fd578063491728cc146105125780634f547b901461052757610350565b80631ddb5f991161030d5780632f745c59116102e75780632f745c59146104885780633ccfd60b146104a85780633e2e2a80146104bd57806342842e0e146104dd57610350565b80631ddb5f991461043357806323b872dd146104535780632eb4a7ab1461047357610350565b806301ffc9a71461035557806306fdde031461038b578063081812fc146103ad578063095ea7b3146103da5780630990e534146103fc57806318160ddd1461041e575b600080fd5b34801561036157600080fd5b506103756103703660046126fc565b610978565b604051610382919061293a565b60405180910390f35b34801561039757600080fd5b506103a06109a5565b604051610382919061294e565b3480156103b957600080fd5b506103cd6103c836600461277a565b610a37565b60405161038291906128a5565b3480156103e657600080fd5b506103fa6103f5366004612698565b610a83565b005b34801561040857600080fd5b50610411610b1b565b6040516103829190612945565b34801561042a57600080fd5b50610411610b21565b34801561043f57600080fd5b506103fa61044e3660046126db565b610b27565b34801561045f57600080fd5b506103fa61046e3660046125bb565b610bb5565b34801561047f57600080fd5b50610411610bc0565b34801561049457600080fd5b506104116104a3366004612698565b610bc6565b3480156104b457600080fd5b506103fa610c89565b3480156104c957600080fd5b506103fa6104d836600461277a565b610cfb565b3480156104e957600080fd5b506103fa6104f83660046125bb565b610d61565b34801561050957600080fd5b50610411610d7c565b34801561051e57600080fd5b50610411610d82565b34801561053357600080fd5b50610411610d88565b34801561054857600080fd5b5061041161055736600461277a565b610d8e565b34801561056857600080fd5b506103fa610577366004612734565b610dba565b34801561058857600080fd5b506103fa6105973660046126c1565b610e0c565b3480156105a857600080fd5b506103fa6105b736600461277a565b610e87565b3480156105c857600080fd5b50610411610ecb565b3480156105dd57600080fd5b506103cd6105ec36600461277a565b610ed1565b3480156105fd57600080fd5b50610411610f29565b34801561061257600080fd5b506103fa61062136600461277a565b610f2f565b34801561063257600080fd5b5061041161064136600461256f565b610f73565b34801561065257600080fd5b506103fa611010565b34801561066757600080fd5b506103fa61067636600461277a565b61105b565b34801561068757600080fd5b5061037561109f565b34801561069c57600080fd5b506104116110a8565b3480156106b157600080fd5b506103fa6106c0366004612698565b6110ae565b3480156106d157600080fd5b506106e56106e036600461256f565b611174565b60405161038291906128f6565b3480156106fe57600080fd5b506103cd61125a565b34801561071357600080fd5b506103a0611269565b34801561072857600080fd5b50610411611278565b34801561073d57600080fd5b506103fa61074c36600461266f565b61127e565b34801561075d57600080fd5b5061077161076c36600461256f565b61134c565b604051610382929190612858565b6103fa61078d36600461277a565b611365565b34801561079e57600080fd5b506103fa6107ad3660046126db565b6114eb565b6103fa6107c0366004612792565b611535565b3480156107d157600080fd5b506104116118ea565b3480156107e657600080fd5b506103fa6107f536600461277a565b6118f0565b34801561080657600080fd5b506103fa6108153660046125f6565b611956565b34801561082657600080fd5b50610411611962565b34801561083b57600080fd5b506103a061084a36600461277a565b611968565b34801561085b57600080fd5b506104116119eb565b34801561087057600080fd5b506104116119f1565b34801561088557600080fd5b506103fa6108943660046126c1565b6119f7565b3480156108a557600080fd5b50610411611a7f565b3480156108ba57600080fd5b506103fa6108c93660046126db565b611a85565b3480156108da57600080fd5b506103756108e9366004612589565b611b13565b3480156108fa57600080fd5b50610411611b41565b34801561090f57600080fd5b506103fa61091e36600461277a565b611b47565b34801561092f57600080fd5b506103fa61093e36600461256f565b611bad565b34801561094f57600080fd5b506103fa61095e36600461277a565b611c1e565b34801561096f57600080fd5b50610375611c84565b60006001600160e01b0319821663780e9d6360e01b148061099d575061099d82611c92565b90505b919050565b6060600080546109b490613065565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090613065565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a4282611cd2565b610a675760405162461bcd60e51b8152600401610a5e90612d7f565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a8e82610ed1565b9050806001600160a01b0316836001600160a01b03161415610ac25760405162461bcd60e51b8152600401610a5e90612f04565b806001600160a01b0316610ad4611d2a565b6001600160a01b03161480610af05750610af0816108e9611d2a565b610b0c5760405162461bcd60e51b8152600401610a5e90612c2f565b610b168383611d2e565b505050565b60125481565b60025490565b610b2f611d2a565b6001600160a01b0316610b4061125a565b6001600160a01b031614610b665760405162461bcd60e51b8152600401610a5e90612df4565b816007541015610b885760405162461bcd60e51b8152600401610a5e90612dcb565b806007541015610baa5760405162461bcd60e51b8152600401610a5e90612dcb565b600d91909155600e55565b610b16838383611d9c565b60165481565b6000610bd183610f73565b8210610bef5760405162461bcd60e51b8152600401610a5e90612e9d565b6000805b600254811015610c6a5760028181548110610c1e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c5a5783821415610c4e579150610c839050565b610c57826130a0565b91505b610c63816130a0565b9050610bf3565b5060405162461bcd60e51b8152600401610a5e90612e9d565b92915050565b610c91611d2a565b6001600160a01b0316610ca261125a565b6001600160a01b031614610cc85760405162461bcd60e51b8152600401610a5e90612df4565b6040514790339082156108fc029083906000818181858888f19350505050158015610cf7573d6000803e3d6000fd5b5050565b610d03611d2a565b6001600160a01b0316610d1461125a565b6001600160a01b031614610d3a5760405162461bcd60e51b8152600401610a5e90612df4565b806007541015610d5c5760405162461bcd60e51b8152600401610a5e90612dcb565b600f55565b610b1683838360405180602001604052806000815250611956565b60175481565b600e5481565b600d5481565b6000610d98610b21565b8210610db65760405162461bcd60e51b8152600401610a5e90612ecd565b5090565b610dc2611d2a565b6001600160a01b0316610dd361125a565b6001600160a01b031614610df95760405162461bcd60e51b8152600401610a5e90612df4565b8051610cf7906015906020840190612448565b610e14611d2a565b6001600160a01b0316610e2561125a565b6001600160a01b031614610e4b5760405162461bcd60e51b8152600401610a5e90612df4565b60145460ff1615158115151415610e745760405162461bcd60e51b8152600401610a5e90612dcb565b6014805460ff1916911515919091179055565b610e8f611d2a565b6001600160a01b0316610ea061125a565b6001600160a01b031614610ec65760405162461bcd60e51b8152600401610a5e90612df4565b600c55565b60105481565b60008060028381548110610ef557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061099d5760405162461bcd60e51b8152600401610a5e90612cd6565b600c5481565b610f37611d2a565b6001600160a01b0316610f4861125a565b6001600160a01b031614610f6e5760405162461bcd60e51b8152600401610a5e90612df4565b601055565b60006001600160a01b038216610f9b5760405162461bcd60e51b8152600401610a5e90612c8c565b600254600090815b818110156110075760028181548110610fcc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610ff757610ff4836130a0565b92505b611000816130a0565b9050610fa3565b50909392505050565b611018611d2a565b6001600160a01b031661102961125a565b6001600160a01b03161461104f5760405162461bcd60e51b8152600401610a5e90612df4565b6110596000611dd4565b565b611063611d2a565b6001600160a01b031661107461125a565b6001600160a01b03161461109a5760405162461bcd60e51b8152600401610a5e90612df4565b601155565b60145460ff1681565b60115481565b6110b6611d2a565b6001600160a01b03166110c761125a565b6001600160a01b0316146110ed5760405162461bcd60e51b8152600401610a5e90612df4565b60006110f7610b21565b90506008548260135461110a9190612fd7565b11156111285760405162461bcd60e51b8152600401610a5e90612b23565b60005b8281101561116e57611146846111418385612fd7565b611e26565b60138054906000611156836130a0565b91905055508080611166906130a0565b91505061112b565b50505050565b606061117f82610f73565b60001061119e5760405162461bcd60e51b8152600401610a5e90612e9d565b60006111a983610f73565b905060008167ffffffffffffffff8111156111d457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111fd578160200160208202803683370190505b50905060005b82811015611252576112158582610bc6565b82828151811061123557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061124a816130a0565b915050611203565b509392505050565b6005546001600160a01b031690565b6060600180546109b490613065565b60075481565b611286611d2a565b6001600160a01b0316826001600160a01b031614156112b75760405162461bcd60e51b8152600401610a5e90612ab5565b80600460006112c4611d2a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611308611d2a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611340919061293a565b60405180910390a35050565b6018602052600090815260409020805460019091015482565b600061136f610b21565b601454909150610100900460ff166113995760405162461bcd60e51b8152600401610a5e90612b46565b600082600c54846113aa9190613003565b6113b49190612fd7565b9050600754816012546113c79190612fd7565b11156113e55760405162461bcd60e51b8152600401610a5e90612d1f565b600b5433600090815260186020526040902060010154611406908390612fd7565b11156114245760405162461bcd60e51b8152600401610a5e90612f96565b600f548311156114465760405162461bcd60e51b8152600401610a5e90612aec565b826011546114549190613003565b3410156114735760405162461bcd60e51b8152600401610a5e90612e72565b60005b818110156114b45761148c336111418386612fd7565b6012805490600061149c836130a0565b919050555080806114ac906130a0565b915050611476565b50336000908152601860205260409020600101546114d3908290612fd7565b33600090815260186020526040902060010155505050565b6114f3611d2a565b6001600160a01b031661150461125a565b6001600160a01b03161461152a5760405162461bcd60e51b8152600401610a5e90612df4565b601691909155601755565b600033604051602001611548919061283b565b604051602081830303815290604052805190602001209050600061156a610b21565b60145490915060ff1661158f5760405162461bcd60e51b8152600401610a5e90612bbe565b846001141561173f57600086600c54886115a99190613003565b6115b39190612fd7565b9050600754816012546115c69190612fd7565b11156115e45760405162461bcd60e51b8152600401610a5e90612d1f565b611625858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150869050611e40565b6116415760405162461bcd60e51b8152600401610a5e90612bee565b6009543360009081526018602052604090205461165f908390612fd7565b111561167d5760405162461bcd60e51b8152600401610a5e90612f96565b600d5487111561169f5760405162461bcd60e51b8152600401610a5e90612aec565b866010546116ad9190613003565b3410156116cc5760405162461bcd60e51b8152600401610a5e90612e72565b60005b8181101561170d576116e5336111418386612fd7565b601280549060006116f5836130a0565b91905055508080611705906130a0565b9150506116cf565b5033600090815260186020526040902054611729908290612fd7565b33600090815260186020526040902055506118e2565b600086600c54886117509190613003565b61175a9190612fd7565b90506007548160125461176d9190612fd7565b111561178b5760405162461bcd60e51b8152600401610a5e90612d1f565b6117cc858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150869050611e40565b6117e85760405162461bcd60e51b8152600401610a5e90612bee565b600a5433600090815260186020526040902054611806908390612fd7565b11156118245760405162461bcd60e51b8152600401610a5e90612f96565b600e548711156118465760405162461bcd60e51b8152600401610a5e90612aec565b866010546118549190613003565b3410156118735760405162461bcd60e51b8152600401610a5e90612e72565b60005b818110156118b45761188c336111418386612fd7565b6012805490600061189c836130a0565b919050555080806118ac906130a0565b915050611876565b50336000908152601860205260409020546118d0908290612fd7565b33600090815260186020526040902055505b505050505050565b600a5481565b6118f8611d2a565b6001600160a01b031661190961125a565b6001600160a01b03161461192f5760405162461bcd60e51b8152600401610a5e90612df4565b6013548110156119515760405162461bcd60e51b8152600401610a5e90612dcb565b600855565b61116e84848484611efb565b60135481565b606061197382611cd2565b61198f5760405162461bcd60e51b8152600401610a5e90612961565b6000611999611f34565b905060008151116119b957604051806020016040528060008152506119e4565b806119c384611f43565b6040516020016119d4929190612866565b6040516020818303038152906040525b9392505050565b600f5481565b600b5481565b6119ff611d2a565b6001600160a01b0316611a1061125a565b6001600160a01b031614611a365760405162461bcd60e51b8152600401610a5e90612df4565b60145460ff6101009091041615158115151415611a655760405162461bcd60e51b8152600401610a5e90612dcb565b601480549115156101000261ff0019909216919091179055565b60095481565b611a8d611d2a565b6001600160a01b0316611a9e61125a565b6001600160a01b031614611ac45760405162461bcd60e51b8152600401610a5e90612df4565b816007541015611ae65760405162461bcd60e51b8152600401610a5e90612dcb565b806007541015611b085760405162461bcd60e51b8152600401610a5e90612dcb565b600991909155600a55565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60085481565b611b4f611d2a565b6001600160a01b0316611b6061125a565b6001600160a01b031614611b865760405162461bcd60e51b8152600401610a5e90612df4565b806007541015611ba85760405162461bcd60e51b8152600401610a5e90612dcb565b600b55565b611bb5611d2a565b6001600160a01b0316611bc661125a565b6001600160a01b031614611bec5760405162461bcd60e51b8152600401610a5e90612df4565b6001600160a01b038116611c125760405162461bcd60e51b8152600401610a5e906129f4565b611c1b81611dd4565b50565b611c26611d2a565b6001600160a01b0316611c3761125a565b6001600160a01b031614611c5d5760405162461bcd60e51b8152600401610a5e90612df4565b601254811015611c7f5760405162461bcd60e51b8152600401610a5e90612dcb565b600755565b601454610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611cc357506001600160e01b03198216635b5e139f60e01b145b8061099d575061099d82612066565b6002546000908210801561099d575060006001600160a01b031660028381548110611d0d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6382610ed1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611dad611da7611d2a565b8261207f565b611dc95760405162461bcd60e51b8152600401610a5e90612f45565b610b168383836120fc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf78282604051806020016040528060008152506121ed565b600081815b8551811015611ef0576000868281518110611e7057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611eb1578281604051602001611e94929190612858565b604051602081830303815290604052805190602001209250611edd565b8083604051602001611ec4929190612858565b6040516020818303038152906040528051906020012092505b5080611ee8816130a0565b915050611e45565b509092149392505050565b611f0c611f06611d2a565b8361207f565b611f285760405162461bcd60e51b8152600401610a5e90612f45565b61116e84848484612220565b6060601580546109b490613065565b606081611f6857506040805180820190915260018152600360fc1b60208201526109a0565b8160005b8115611f925780611f7c816130a0565b9150611f8b9050600a83612fef565b9150611f6c565b60008167ffffffffffffffff811115611fbb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe5576020820181803683370190505b5090505b841561205e57611ffa600183613022565b9150612007600a866130bb565b612012906030612fd7565b60f81b81838151811061203557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612057600a86612fef565b9450611fe9565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061208a82611cd2565b6120a65760405162461bcd60e51b8152600401610a5e90612b72565b60006120b183610ed1565b9050806001600160a01b0316846001600160a01b031614806120ec5750836001600160a01b03166120e184610a37565b6001600160a01b0316145b8061205e575061205e8185611b13565b826001600160a01b031661210f82610ed1565b6001600160a01b0316146121355760405162461bcd60e51b8152600401610a5e90612e29565b6001600160a01b03821661215b5760405162461bcd60e51b8152600401610a5e90612a71565b612166838383610b16565b612171600082611d2e565b816002828154811061219357634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6121f78383612253565b6122046000848484612327565b610b165760405162461bcd60e51b8152600401610a5e906129a2565b61222b8484846120fc565b61223784848484612327565b61116e5760405162461bcd60e51b8152600401610a5e906129a2565b6001600160a01b0382166122795760405162461bcd60e51b8152600401610a5e90612d4a565b61228281611cd2565b1561229f5760405162461bcd60e51b8152600401610a5e90612a3a565b6122ab60008383610b16565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061233b846001600160a01b0316612442565b1561243757836001600160a01b031663150b7a02612357611d2a565b8786866040518563ffffffff1660e01b815260040161237994939291906128b9565b602060405180830381600087803b15801561239357600080fd5b505af19250505080156123c3575060408051601f3d908101601f191682019092526123c091810190612718565b60015b61241d573d8080156123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b5080516124155760405162461bcd60e51b8152600401610a5e906129a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061205e565b506001949350505050565b3b151590565b82805461245490613065565b90600052602060002090601f01602090048101928261247657600085556124bc565b82601f1061248f57805160ff19168380011785556124bc565b828001600101855582156124bc579182015b828111156124bc5782518255916020019190600101906124a1565b50610db69291505b80821115610db657600081556001016124c4565b600067ffffffffffffffff808411156124f3576124f36130fb565b604051601f8501601f191681016020018281118282101715612517576125176130fb565b60405284815291508183850186101561252f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109a057600080fd5b803580151581146109a057600080fd5b600060208284031215612580578081fd5b6119e482612548565b6000806040838503121561259b578081fd5b6125a483612548565b91506125b260208401612548565b90509250929050565b6000806000606084860312156125cf578081fd5b6125d884612548565b92506125e660208501612548565b9150604084013590509250925092565b6000806000806080858703121561260b578081fd5b61261485612548565b935061262260208601612548565b925060408501359150606085013567ffffffffffffffff811115612644578182fd5b8501601f81018713612654578182fd5b612663878235602084016124d8565b91505092959194509250565b60008060408385031215612681578182fd5b61268a83612548565b91506125b26020840161255f565b600080604083850312156126aa578182fd5b6126b383612548565b946020939093013593505050565b6000602082840312156126d2578081fd5b6119e48261255f565b600080604083850312156126ed578182fd5b50508035926020909101359150565b60006020828403121561270d578081fd5b81356119e481613111565b600060208284031215612729578081fd5b81516119e481613111565b600060208284031215612745578081fd5b813567ffffffffffffffff81111561275b578182fd5b8201601f8101841361276b578182fd5b61205e848235602084016124d8565b60006020828403121561278b578081fd5b5035919050565b600080600080606085870312156127a7578182fd5b8435935060208501359250604085013567ffffffffffffffff808211156127cc578384fd5b818701915087601f8301126127df578384fd5b8135818111156127ed578485fd5b8860208083028501011115612800578485fd5b95989497505060200194505050565b60008151808452612827816020860160208601613039565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612878818460208801613039565b83519083019061288c818360208801613039565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ec9083018461280f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561292e57835183529284019291840191600101612912565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526119e4602083018461280f565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60008219821115612fea57612fea6130cf565b500190565b600082612ffe57612ffe6130e5565b500490565b600081600019048311821515161561301d5761301d6130cf565b500290565b600082821015613034576130346130cf565b500390565b60005b8381101561305457818101518382015260200161303c565b8381111561116e5750506000910152565b60028104600182168061307957607f821691505b6020821081141561309a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130b4576130b46130cf565b5060010190565b6000826130ca576130ca6130e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c1b57600080fdfea2646970667358221220eb91edc5d7df17b81f18fb3a5d1806a7c2c21c8888928fd8338eb90002da500664736f6c63430008000033

Deployed Bytecode Sourcemap

30984:7477: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;:::-;;31612:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;37574:378::-;;;;;;;;;;-1:-1:-1;37574:378:0;;;;;:::i;:::-;;:::i;35567:145::-;;;;;;;;;;-1:-1:-1;35567:145:0;;;;;:::i;:::-;;:::i;31782:25::-;;;;;;;;;;;;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;35906:143::-;;;;;;;;;;;;;:::i;37958:191::-;;;;;;;;;;-1:-1:-1;37958:191:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;31811:40::-;;;;;;;;;;;;;:::i;31403:64::-;;;;;;;;;;;;;:::i;31352:47::-;;;;;;;;;;;;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;36055:102::-;;;;;;;;;;-1:-1:-1;36055:102:0;;;;;:::i;:::-;;:::i;36535:154::-;;;;;;;;;;-1:-1:-1;36535:154:0;;;;;:::i;:::-;;:::i;38155:116::-;;;;;;;;;;-1:-1:-1;38155:116:0;;;;;:::i;:::-;;:::i;31522:41::-;;;;;;;;;;;;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;31309:36::-;;;;;;;;;;;;;:::i;36271:108::-;;;;;;;;;;-1:-1:-1;36271:108:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;1363:94::-;;;;;;;;;;;;;:::i;36163:102::-;;;;;;;;;;-1:-1:-1;36163:102:0;;;;;:::i;:::-;;:::i;31679:33::-;;;;;;;;;;;;;:::i;31567:38::-;;;;;;;;;;;;;:::i;32125:342::-;;;;;;;;;;-1:-1:-1;32125:342:0;;;;;:::i;:::-;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;22533:104::-;;;;;;;;;;;;;:::i;31081:30::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;31926:38::-;;;;;;;;;;-1:-1:-1;31926:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;34397:799::-;;;;;;:::i;:::-;;:::i;38277:181::-;;;;;;;;;;-1:-1:-1;38277:181:0;;;;;:::i;:::-;;:::i;32473:1918::-;;;;;;:::i;:::-;;:::i;31197:59::-;;;;;;;;;;;;;:::i;37402:166::-;;;;;;;;;;-1:-1:-1;37402:166:0;;;;;:::i;:::-;;:::i;35720:180::-;;;;;;;;;;-1:-1:-1;35720:180:0;;;;;:::i;:::-;;:::i;31642:27::-;;;;;;;;;;;;;:::i;35205:353::-;;;;;;;;;;-1:-1:-1;35205:353:0;;;;;:::i;:::-;;:::i;31471:44::-;;;;;;;;;;;;;:::i;31260:42::-;;;;;;;;;;;;;:::i;36385:144::-;;;;;;;;;;-1:-1:-1;36385:144:0;;;;;:::i;:::-;;:::i;31151:42::-;;;;;;;;;;;;;:::i;36873:354::-;;;;;;;;;;-1:-1:-1;36873:354:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;31115:29::-;;;;;;;;;;;;;:::i;36695:172::-;;;;;;;;;;-1:-1:-1;36695:172:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;37233:163::-;;;;;;;;;;-1:-1:-1;37233:163:0;;;;;:::i;:::-;;:::i;31716: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;31612:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;37574:378::-;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;:::-;37718:8:::1;37706;;:20;;37698:48;;;;-1:-1:-1::0;;;37698:48:0::1;;;;;;;:::i;:::-;37771:23;37759:8;;:35;;37751:63;;;;-1:-1:-1::0;;;37751:63:0::1;;;;;;;:::i;:::-;37829:28;:39:::0;;;;37873:45:::1;:71:::0;37574:378::o;35567:145::-;35662:42;35683:5;35690:3;35695:8;35662:20;:42::i;31782: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;35906:143::-;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;:::-;36004:37:::1;::::0;35972:21:::1;::::0;36012:10:::1;::::0;36004:37;::::1;;;::::0;35972:21;;35954:15:::1;36004:37:::0;35954:15;36004:37;35972:21;36012:10;36004:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1003:1;35906:143::o:0;37958:191::-;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;:::-;38066:8:::1;38054;;:20;;38046:48;;;;-1:-1:-1::0;;;38046:48:0::1;;;;;;;:::i;:::-;38105:25;:36:::0;37958:191::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;31811:40::-;;;;:::o;31403:64::-;;;;:::o;31352:47::-;;;;:::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;36055: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;:::-;36129:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;36535:154::-:0;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;:::-;36606:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;36598:51;;;;-1:-1:-1::0;;;36598:51:0::1;;;;;;;:::i;:::-;36659:13;:22:::0;;-1:-1:-1;;36659:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36535:154::o;38155:116::-;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;:::-;38235:17:::1;:28:::0;38155:116::o;31522: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;31309:36::-;;;;:::o;36271: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;:::-;36347:13:::1;:24:::0;36271: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;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;36163: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;:::-;36236:10:::1;:21:::0;36163:102::o;31679:33::-;;;;;;:::o;31567:38::-;;;;:::o;32125:342::-;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;:::-;32200:19:::1;32222:13;:11;:13::i;:::-;32200:35;;32293:9;;32283:6;32268:12;;:21;;;;:::i;:::-;:34;;32246:94;;;;-1:-1:-1::0;;;32246:94:0::1;;;;;;;:::i;:::-;32350:9;32345:115;32369:6;32365:1;:10;32345:115;;;32397:31;32407:3:::0;32412:15:::1;32426:1:::0;32412:11;:15:::1;:::i;:::-;32397:9;:31::i;:::-;32434:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;32377:3;;;;;:::i;:::-;;;;32345:115;;;;1003:1;32125:342:::0;;:::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;712:87::-;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;31081: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;31926:38::-;;;;;;;;;;;;;;;;;;;:::o;34397:799::-;34453:19;34475:13;:11;:13::i;:::-;34506:10;;34453:35;;-1:-1:-1;34506:10:0;;;;;34493:55;;;;-1:-1:-1;;;34493:55:0;;;;;;;:::i;:::-;34557:13;34602:6;34582:17;;34573:6;:26;;;;:::i;:::-;:35;;;;:::i;:::-;34557:51;;34659:8;;34650:5;34636:11;;:19;;;;:::i;:::-;:31;;34623:75;;;;-1:-1:-1;;;34623:75:0;;;;;;;:::i;:::-;34754:20;;34722:10;34716:17;;;;:5;:17;;;;;:26;;;:34;;34745:5;;34716:34;:::i;:::-;:58;;34703:117;;;;-1:-1:-1;;;34703:117:0;;;;;;;:::i;:::-;34848:25;;34838:6;:35;;34825:91;;;;-1:-1:-1;;;34825:91:0;;;;;;;:::i;:::-;34960:6;34947:10;;:19;;;;:::i;:::-;34934:9;:32;;34921:75;;;;-1:-1:-1;;;34921:75:0;;;;;;;:::i;:::-;35006:9;35001:120;35025:5;35021:1;:9;35001:120;;;35052:38;35062:10;35074:15;35088:1;35074:11;:15;:::i;35052:38::-;35096:11;:13;;;:11;:13;;;:::i;:::-;;;;;;35032:3;;;;;:::i;:::-;;;;35001:120;;;-1:-1:-1;35160:10:0;35154:17;;;;:5;:17;;;;;:26;;;:34;;35183:5;;35154:34;:::i;:::-;35131:10;35125:17;;;;:5;:17;;;;;:26;;:63;-1:-1:-1;;;34397:799:0:o;38277:181::-;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;:::-;38377:10:::1;:20:::0;;;;38404:25:::1;:49:::0;38277:181::o;32473:1918::-;32582:12;32624:10;32607:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;32597:39;;;;;;32582:54;;32641:19;32663:13;:11;:13::i;:::-;32694;;32641:35;;-1:-1:-1;32694:13:0;;32681:62;;;;-1:-1:-1;;;32681:62:0;;;;;;;:::i;:::-;32751:8;32761:1;32751:11;32748:1636;;;32776:13;32821:6;32801:17;;32792:6;:26;;;;:::i;:::-;:35;;;;:::i;:::-;32776:51;;32870:8;;32861:5;32847:11;;:19;;;;:::i;:::-;:31;;32833:78;;;;-1:-1:-1;;;32833:78:0;;;;;;;:::i;:::-;32931:49;32950:11;;32931:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32963:10:0;;;-1:-1:-1;32975:4:0;;-1:-1:-1;32931:18:0;:49::i;:::-;32917:112;;;;-1:-1:-1;;;32917:112:0;;;;;;;:::i;:::-;33090:23;;33055:10;33049:17;;;;:5;:17;;;;;:29;:37;;33081:5;;33049:37;:::i;:::-;:64;;33035:126;;;;-1:-1:-1;;;33035:126:0;;;;;;;:::i;:::-;33191:28;;33181:6;:38;;33167:97;;;;-1:-1:-1;;;33167:97:0;;;;;;;:::i;:::-;33313:6;33297:13;;:22;;;;:::i;:::-;33284:9;:35;;33270:81;;;;-1:-1:-1;;;33270:81:0;;;;;;;:::i;:::-;33362:9;33357:108;33381:5;33377:1;:9;33357:108;;;33400:38;33410:10;33422:15;33436:1;33422:11;:15;:::i;33400:38::-;33445:11;:13;;;:11;:13;;;:::i;:::-;;;;;;33388:3;;;;;:::i;:::-;;;;33357:108;;;-1:-1:-1;33508:10:0;33502:17;;;;:5;:17;;;;;:29;:37;;33534:5;;33502:37;:::i;:::-;33476:10;33470:17;;;;:5;:17;;;;;:69;-1:-1:-1;32748:1636:0;;;33566:13;33611:6;33591:17;;33582:6;:26;;;;:::i;:::-;:35;;;;:::i;:::-;33566:51;;33660:8;;33651:5;33637:11;;:19;;;;:::i;:::-;:31;;33623:78;;;;-1:-1:-1;;;33623:78:0;;;;;;;:::i;:::-;33721:64;33740:11;;33721:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33753:25:0;;;-1:-1:-1;33780:4:0;;-1:-1:-1;33721:18:0;:64::i;:::-;33707:127;;;;-1:-1:-1;;;33707:127:0;;;;;;;:::i;:::-;33895:40;;33860:10;33854:17;;;;:5;:17;;;;;:29;:37;;33886:5;;33854:37;:::i;:::-;:81;;33840:143;;;;-1:-1:-1;;;33840:143:0;;;;;;;:::i;:::-;34013:45;;34003:6;:55;;33989:114;;;;-1:-1:-1;;;33989:114:0;;;;;;;:::i;:::-;34152:6;34136:13;;:22;;;;:::i;:::-;34123:9;:35;;34109:81;;;;-1:-1:-1;;;34109:81:0;;;;;;;:::i;:::-;34201:9;34196:108;34220:5;34216:1;:9;34196:108;;;34239:38;34249:10;34261:15;34275:1;34261:11;:15;:::i;34239:38::-;34284:11;:13;;;:11;:13;;;:::i;:::-;;;;;;34227:3;;;;;:::i;:::-;;;;34196:108;;;-1:-1:-1;34347:10:0;34341:17;;;;:5;:17;;;;;:29;:37;;34373:5;;34341:37;:::i;:::-;34315:10;34309:17;;;;:5;:17;;;;;:69;-1:-1:-1;32748:1636:0;32473:1918;;;;;;:::o;31197:59::-;;;;:::o;37402:166::-;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;:::-;37496:12:::1;;37483:9;:25;;37475:53;;;;-1:-1:-1::0;;;37475:53:0::1;;;;;;;:::i;:::-;37539:9;:21:::0;37402:166::o;35720:180::-;35839:53;35864:5;35871:3;35876:8;35886:5;35839:24;:53::i;31642:27::-;;;;:::o;35205:353::-;35281:13;35315:17;35323:8;35315:7;:17::i;:::-;35307:63;;;;-1:-1:-1;;;35307:63:0;;;;;;;:::i;:::-;35381:28;35412:10;:8;:10::i;:::-;35381:41;;35471:1;35446:14;35440:28;:32;:110;;;;;;;;;;;;;;;;;35499:14;35515:19;:8;:17;:19::i;:::-;35482:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35440:110;35433:117;35205:353;-1:-1:-1;;;35205:353:0:o;31471:44::-;;;;:::o;31260:42::-;;;;:::o;36385:144::-;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;:::-;36457:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;36449:48;;;;-1:-1:-1::0;;;36449:48:0::1;;;;;;;:::i;:::-;36502:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;36502:19:0;;::::1;::::0;;;::::1;::::0;;36385:144::o;31151:42::-;;;;:::o;36873:354::-;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;:::-;37003:8:::1;36991;;:20;;36983:48;;;;-1:-1:-1::0;;;36983:48:0::1;;;;;;;:::i;:::-;37056:23;37044:8;;:35;;37036:63;;;;-1:-1:-1::0;;;37036:63:0::1;;;;;;;:::i;:::-;37114:23;:34:::0;;;;37153:40:::1;:66:::0;36873:354::o;23589:164::-;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;31115:29::-;;;;:::o;36695:172::-;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;:::-;36789:8:::1;36777;;:20;;36769:48;;;;-1:-1:-1::0;;;36769:48:0::1;;;;;;;:::i;:::-;36828:20;:31:::0;36695:172::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;37233: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;:::-;37326:11:::1;;37313:9;:24;;37305:52;;;;-1:-1:-1::0;;;37305:52:0::1;;;;;;;:::i;:::-;37368:8;:20:::0;37233:163::o;31716: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;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;30147:830::-;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;30949:20:0;;;;30147:830;-1:-1:-1;;;30147:830:0:o;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;32020:99::-;32071:13;32104:7;32097: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:258::-;;;3379:2;3367:9;3358:7;3354:23;3350:32;3347:2;;;3400:6;3392;3385:22;3347:2;-1:-1:-1;;3428:23:1;;;3498:2;3483:18;;;3470:32;;-1:-1:-1;3337:171:1:o;3513:257::-;;3624:2;3612:9;3603:7;3599:23;3595:32;3592:2;;;3645:6;3637;3630:22;3592:2;3689:9;3676:23;3708:32;3734:5;3708:32;:::i;3775:261::-;;3897:2;3885:9;3876:7;3872:23;3868:32;3865:2;;;3918:6;3910;3903:22;3865:2;3955:9;3949:16;3974:32;4000:5;3974:32;:::i;4041:482::-;;4163:2;4151:9;4142:7;4138:23;4134:32;4131:2;;;4184:6;4176;4169:22;4131:2;4229:9;4216:23;4262:18;4254:6;4251:30;4248:2;;;4299:6;4291;4284:22;4248:2;4327:22;;4380:4;4372:13;;4368:27;-1:-1:-1;4358:2:1;;4414:6;4406;4399:22;4358:2;4442:75;4509:7;4504:2;4491:16;4486:2;4482;4478:11;4442:75;:::i;4528:190::-;;4640:2;4628:9;4619:7;4615:23;4611:32;4608:2;;;4661:6;4653;4646:22;4608:2;-1:-1:-1;4689:23:1;;4598:120;-1:-1:-1;4598:120:1:o;4986:802::-;;;;;5167:2;5155:9;5146:7;5142:23;5138:32;5135:2;;;5188:6;5180;5173:22;5135:2;5229:9;5216:23;5206:33;;5286:2;5275:9;5271:18;5258:32;5248:42;;5341:2;5330:9;5326:18;5313:32;5364:18;5405:2;5397:6;5394:14;5391:2;;;5426:6;5418;5411:22;5391:2;5469:6;5458:9;5454:22;5444:32;;5514:7;5507:4;5503:2;5499:13;5495:27;5485:2;;5541:6;5533;5526:22;5485:2;5586;5573:16;5612:2;5604:6;5601:14;5598:2;;;5633:6;5625;5618:22;5598:2;5692:7;5687:2;5681;5673:6;5669:15;5665:2;5661:24;5657:33;5654:46;5651:2;;;5718:6;5710;5703:22;5651:2;5125:663;;;;-1:-1:-1;;5754:2:1;5746:11;;-1:-1:-1;;;5125:663:1:o;5793:259::-;;5874:5;5868:12;5901:6;5896:3;5889:19;5917:63;5973:6;5966:4;5961:3;5957:14;5950:4;5943:5;5939:16;5917:63;:::i;:::-;6034:2;6013:15;-1:-1:-1;;6009:29:1;6000:39;;;;6041:4;5996:50;;5844:208;-1:-1:-1;;5844:208:1:o;6057:229::-;6206:2;6202:15;;;;-1:-1:-1;;6198:53:1;6186:66;;6277:2;6268:12;;6176:110::o;6291:247::-;6448:19;;;6492:2;6483:12;;6476:28;6529:2;6520:12;;6438:100::o;6543:637::-;;6861:6;6855:13;6877:53;6923:6;6918:3;6911:4;6903:6;6899:17;6877:53;:::i;:::-;6993:13;;6952:16;;;;7015:57;6993:13;6952:16;7049:4;7037:17;;7015:57;:::i;:::-;-1:-1:-1;;;7094:20:1;;7123:22;;;7172:1;7161:13;;6831:349;-1:-1:-1;;;;6831:349:1:o;7185:203::-;-1:-1:-1;;;;;7349:32:1;;;;7331:51;;7319:2;7304:18;;7286:102::o;7393:490::-;-1:-1:-1;;;;;7662:15:1;;;7644:34;;7714:15;;7709:2;7694:18;;7687:43;7761:2;7746:18;;7739:34;;;7809:3;7804:2;7789:18;;7782:31;;;7393:490;;7830:47;;7857:19;;7849:6;7830:47;:::i;:::-;7822:55;7596:287;-1:-1:-1;;;;;;7596:287:1:o;7888:635::-;8059:2;8111:21;;;8181:13;;8084:18;;;8203:22;;;7888:635;;8059:2;8282:15;;;;8256:2;8241:18;;;7888:635;8328:169;8342:6;8339:1;8336:13;8328:169;;;8403:13;;8391:26;;8472:15;;;;8437:12;;;;8364:1;8357:9;8328:169;;;-1:-1:-1;8514:3:1;;8039:484;-1:-1:-1;;;;;;8039:484:1:o;8528:187::-;8693:14;;8686:22;8668:41;;8656:2;8641:18;;8623:92::o;8720:177::-;8866:25;;;8854:2;8839:18;;8821:76::o;8902:221::-;;9051:2;9040:9;9033:21;9071:46;9113:2;9102:9;9098:18;9090:6;9071:46;:::i;9128:397::-;9330:2;9312:21;;;9369:2;9349:18;;;9342:30;9408:34;9403:2;9388:18;;9381:62;-1:-1:-1;;;9474:2:1;9459:18;;9452:31;9515:3;9500:19;;9302:223::o;9530:414::-;9732:2;9714:21;;;9771:2;9751:18;;;9744:30;9810:34;9805:2;9790:18;;9783:62;-1:-1:-1;;;9876:2:1;9861:18;;9854:48;9934:3;9919:19;;9704:240::o;9949:402::-;10151:2;10133:21;;;10190:2;10170:18;;;10163:30;10229:34;10224:2;10209:18;;10202:62;-1:-1:-1;;;10295:2:1;10280:18;;10273:36;10341:3;10326:19;;10123:228::o;10356:352::-;10558:2;10540:21;;;10597:2;10577:18;;;10570:30;10636;10631:2;10616:18;;10609:58;10699:2;10684:18;;10530:178::o;10713:400::-;10915:2;10897:21;;;10954:2;10934:18;;;10927:30;10993:34;10988:2;10973:18;;10966:62;-1:-1:-1;;;11059:2:1;11044:18;;11037:34;11103:3;11088:19;;10887:226::o;11118:349::-;11320:2;11302:21;;;11359:2;11339:18;;;11332:30;11398:27;11393:2;11378:18;;11371:55;11458:2;11443:18;;11292:175::o;11472:354::-;11674:2;11656:21;;;11713:2;11693:18;;;11686:30;11752:32;11747:2;11732:18;;11725:60;11817:2;11802:18;;11646:180::o;11831:332::-;12033:2;12015:21;;;12072:1;12052:18;;;12045:29;-1:-1:-1;;;12105:2:1;12090:18;;12083:39;12154:2;12139:18;;12005:158::o;12168:342::-;12370:2;12352:21;;;12409:2;12389:18;;;12382:30;-1:-1:-1;;;12443:2:1;12428:18;;12421:48;12501:2;12486:18;;12342:168::o;12515:408::-;12717:2;12699:21;;;12756:2;12736:18;;;12729:30;12795:34;12790:2;12775:18;;12768:62;-1:-1:-1;;;12861:2:1;12846:18;;12839:42;12913:3;12898:19;;12689:234::o;12928:346::-;13130:2;13112:21;;;13169:2;13149:18;;;13142:30;-1:-1:-1;;;13203:2:1;13188:18;;13181:52;13265:2;13250:18;;13102:172::o;13279:397::-;13481:2;13463:21;;;13520:2;13500:18;;;13493:30;13559:34;13554:2;13539:18;;13532:62;-1:-1:-1;;;13625:2:1;13610:18;;13603:31;13666:3;13651:19;;13453:223::o;13681:420::-;13883:2;13865:21;;;13922:2;13902:18;;;13895:30;13961:34;13956:2;13941:18;;13934:62;14032:26;14027:2;14012:18;;14005:54;14091:3;14076:19;;13855:246::o;14106:406::-;14308:2;14290:21;;;14347:2;14327:18;;;14320:30;14386:34;14381:2;14366:18;;14359:62;-1:-1:-1;;;14452:2:1;14437:18;;14430:40;14502:3;14487:19;;14280:232::o;14517:405::-;14719:2;14701:21;;;14758:2;14738:18;;;14731:30;14797:34;14792:2;14777:18;;14770:62;-1:-1:-1;;;14863:2:1;14848:18;;14841:39;14912:3;14897:19;;14691:231::o;14927:341::-;15129:2;15111:21;;;15168:2;15148:18;;;15141:30;-1:-1:-1;;;15202:2:1;15187:18;;15180:47;15259:2;15244:18;;15101:167::o;15273:356::-;15475:2;15457:21;;;15494:18;;;15487:30;15553:34;15548:2;15533:18;;15526:62;15620:2;15605:18;;15447:182::o;15634:408::-;15836:2;15818:21;;;15875:2;15855:18;;;15848:30;15914:34;15909:2;15894:18;;15887:62;-1:-1:-1;;;15980:2:1;15965:18;;15958:42;16032:3;16017:19;;15808:234::o;16047:339::-;16249:2;16231:21;;;16288:2;16268:18;;;16261:30;-1:-1:-1;;;16322:2:1;16307:18;;16300:45;16377:2;16362:18;;16221:165::o;16391:356::-;16593:2;16575:21;;;16612:18;;;16605:30;16671:34;16666:2;16651:18;;16644:62;16738:2;16723:18;;16565:182::o;16752:405::-;16954:2;16936:21;;;16993:2;16973:18;;;16966:30;17032:34;17027:2;17012:18;;17005:62;-1:-1:-1;;;17098:2:1;17083:18;;17076:39;17147:3;17132:19;;16926:231::o;17162:341::-;17364:2;17346:21;;;17403:2;17383:18;;;17376:30;-1:-1:-1;;;17437:2:1;17422:18;;17415:47;17494:2;17479:18;;17336:167::o;17508:346::-;17710:2;17692:21;;;17749:2;17729:18;;;17722:30;-1:-1:-1;;;17783:2:1;17768:18;;17761:52;17845:2;17830:18;;17682:172::o;17859:347::-;18061:2;18043:21;;;18100:2;18080:18;;;18073:30;18139:25;18134:2;18119:18;;18112:53;18197:2;18182:18;;18033:173::o;18211:397::-;18413:2;18395:21;;;18452:2;18432:18;;;18425:30;18491:34;18486:2;18471:18;;18464:62;-1:-1:-1;;;18557:2:1;18542:18;;18535:31;18598:3;18583:19;;18385:223::o;18613:413::-;18815:2;18797:21;;;18854:2;18834:18;;;18827:30;18893:34;18888:2;18873:18;;18866:62;-1:-1:-1;;;18959:2:1;18944:18;;18937:47;19016:3;19001:19;;18787:239::o;19031:397::-;19233:2;19215:21;;;19272:2;19252:18;;;19245:30;19311:34;19306:2;19291:18;;19284:62;-1:-1:-1;;;19377:2:1;19362:18;;19355:31;19418:3;19403:19;;19205:223::o;19868:128::-;;19939:1;19935:6;19932:1;19929:13;19926:2;;;19945:18;;:::i;:::-;-1:-1:-1;19981:9:1;;19916:80::o;20001:120::-;;20067:1;20057:2;;20072:18;;:::i;:::-;-1:-1:-1;20106:9:1;;20047:74::o;20126:168::-;;20232:1;20228;20224:6;20220:14;20217:1;20214:21;20209:1;20202:9;20195:17;20191:45;20188:2;;;20239:18;;:::i;:::-;-1:-1:-1;20279:9:1;;20178:116::o;20299:125::-;;20367:1;20364;20361:8;20358:2;;;20372:18;;:::i;:::-;-1:-1:-1;20409:9:1;;20348:76::o;20429:258::-;20501:1;20511:113;20525:6;20522:1;20519:13;20511:113;;;20601:11;;;20595:18;20582:11;;;20575:39;20547:2;20540:10;20511:113;;;20642:6;20639:1;20636:13;20633:2;;;-1:-1:-1;;20677:1:1;20659:16;;20652:27;20482:205::o;20692:380::-;20777:1;20767:12;;20824:1;20814:12;;;20835:2;;20889:4;20881:6;20877:17;20867:27;;20835:2;20942;20934:6;20931:14;20911:18;20908:38;20905:2;;;20988:10;20983:3;20979:20;20976:1;20969:31;21023:4;21020:1;21013:15;21051:4;21048:1;21041:15;20905:2;;20747:325;;;:::o;21077:135::-;;-1:-1:-1;;21137:17:1;;21134:2;;;21157:18;;:::i;:::-;-1:-1:-1;21204:1:1;21193:13;;21124:88::o;21217:112::-;;21275:1;21265:2;;21280:18;;:::i;:::-;-1:-1:-1;21314:9:1;;21255:74::o;21334:127::-;21395:10;21390:3;21386:20;21383:1;21376:31;21426:4;21423:1;21416:15;21450:4;21447:1;21440:15;21466:127;21527:10;21522:3;21518:20;21515:1;21508:31;21558:4;21555:1;21548:15;21582:4;21579:1;21572:15;21598:127;21659:10;21654:3;21650:20;21647:1;21640:31;21690:4;21687:1;21680:15;21714:4;21711:1;21704:15;21730:133;-1:-1:-1;;;;;;21806:32:1;;21796:43;;21786:2;;21853:1;21850;21843:12

Swarm Source

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