ETH Price: $2,980.54 (-3.97%)
Gas: 2 Gwei

Token

Elite Society (ELITE)
 

Overview

Max Total Supply

262 ELITE

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
delf0s.eth
Balance
1 ELITE
0x57d88c7551d1c570733bacd995493ff40291bfcb
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EliteSociety

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

pragma solidity ^0.8.0;

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

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

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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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



contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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;
        }
    }

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

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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract EliteSociety is ERC721, ERC721Enumerable, Ownable {
    address authenticator = 0x866c2F3E8370D54b5B0cB7e60d9FE0459Cfc2352;
    
    uint16 public maxSupply = 1337;

    uint8 public reserved = 20;

    uint8 public state = 0; // 0-Stop 1-OgSale 2-PreSale 3-Sale
    
    bool public revealed = false;
    
    uint public mintPrice = 0.1 ether;
    
    string unrevealedURI = "";
    string baseURI = "";

    mapping (address => bool) public ogMinted;
    mapping (address => uint8) public minted;
    
    constructor() ERC721("Elite Society", "ELITE") {
        
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function withdrawEther(address payable _to, uint _amount) public onlyOwner {
        _to.transfer(_amount);
    }

    function ogMint (bytes memory signature) external {
        require(state == 1, "OG Elite mint is currently closed.");
        
        require(verifyPassword(msg.sender, 0, signature), "You were not added to the OG whitelist. Please contact Elite Society team if you think this is an error.");
        
        require(!ogMinted[msg.sender], "You have already minted your OG Elite.");
        
        _mint(msg.sender, totalSupply () + 1);
        
        ogMinted[msg.sender] = true;
    }

    function mint(uint8 tokenAmt, bytes memory signature) external payable {
        require(state == 2 ? verifyPassword(msg.sender, 1, signature) : state == 3, "You haven't been added to the whitelist or the sale hasn't started yet.");
        
        require(msg.value >= tokenAmt * mintPrice, "Wrong eth amount sent.");
        
        require(minted[msg.sender] + tokenAmt <= 2, "This would exceed maximum mint amount.");
        
        require(totalSupply() + tokenAmt <= maxSupply - reserved, "This would exceed max supply.");
        
        for(uint16 i = 0; i < tokenAmt; i++) {
            uint256 mintIndex = totalSupply () + 1;
            _mint(msg.sender, mintIndex);
        }
        
        minted[msg.sender] += tokenAmt;
    }
    
    function claimToAdmin(uint16 tokenAmt) public onlyOwner {
        require(totalSupply() + tokenAmt <= maxSupply, "This would exceed max supply");
        //require(reserved > 0, "This would exceed reserved supply");
        
        for(uint256 i = 0; i < tokenAmt; i++) {
            uint256 mintIndex = totalSupply () + 1;
            _mint(msg.sender, mintIndex);
            reserved--;
        }
    }

    function tokenURI(uint tokenId) public view override returns(string memory) {
        return revealed ? super.tokenURI(tokenId) : unrevealedURI;
    }

    function setState(uint8 newState) external onlyOwner {
        state = newState;
    }
    
    function setRevealed() external onlyOwner {
        revealed = !revealed;
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

     function setUnrevealedURI(string calldata unrevealedURI_) external onlyOwner {
        unrevealedURI = unrevealedURI_;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function verifyPassword(address user, uint256 listId, bytes memory signature) public view returns (bool) {
        bytes32 messageHash = keccak256(abi.encode(user, listId));
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);

        return recoverSigner(ethSignedMessageHash, signature) == authenticator;
    }
    
    function getEthSignedMessageHash(bytes32 _messageHash) public pure returns (bytes32) {
        /*
        Signature is produced by signing a keccak256 hash with the following format:
        "\x19Ethereum Signed Message\n" + len(msg) + msg
        */
        return
        keccak256(
            abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash)
        );
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) public pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
    public
    pure
    returns (
        bytes32 r,
        bytes32 s,
        uint8 v
    )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
        /*
        First 32 bytes stores the length of the signature

        add(sig, 32) = pointer of sig + 32
        effectively, skips first 32 bytes of signature

        mload(p) loads next 32 bytes starting at the memory address p into memory
        */

        // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
        // second 32 bytes
            s := mload(add(sig, 64))
        // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        // implicitly return (r, s, v)
    }
}

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":[{"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":"uint16","name":"tokenAmt","type":"uint16"}],"name":"claimToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"tokenAmt","type":"uint8"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"ogMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newState","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"listId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifyPassword","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160c81b03191676140539866c2f3e8370d54b5b0cb7e60d9fe0459cfc235217905567016345785d8a0000600c5560a06040819052600060808190526200005091600d9162000161565b506040805160208101918290526000908190526200007191600e9162000161565b503480156200007f57600080fd5b50604080518082018252600d81526c456c69746520536f636965747960981b602080830191825283518085019094526005845264454c49544560d81b908401528151919291620000d29160009162000161565b508051620000e890600190602084019062000161565b50505062000105620000ff6200010b60201b60201c565b6200010f565b62000244565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016f9062000207565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600181811c908216806200021c57607f821691505b602082108114156200023e57634e487b7160e01b600052602260045260246000fd5b50919050565b6131f380620002546000396000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e9b1683a1161007f578063fa54080111610064578063fa540801146107aa578063fe2c7fee14610818578063fe60d12c1461083857600080fd5b8063e9b1683a1461075a578063f2fde38b1461078a57600080fd5b8063c87b56dd116100b0578063c87b56dd146106ab578063d5abeb01146106cb578063e985e9c51461071157600080fd5b8063b88d4fde14610656578063c19d93fb1461067657600080fd5b806397aba7f911610122578063a22cb46511610107578063a22cb465146105d8578063a7bb5803146105f8578063b018db581461063657600080fd5b806397aba7f9146105a55780639bb24386146105c557600080fd5b806370a082311461053d578063715018a61461055d5780638da5cb5b1461057257806395d89b411461059057600080fd5b80633bd649681161020157806355f804b3116101b55780636352211e1161019a5780636352211e146104e757806365ce2e98146105075780636817c76c1461052757600080fd5b806355f804b3146104a757806356de96db146104c757600080fd5b80634f6ccce7116101e65780634f6ccce7146104315780635183022714610451578063522f68151461048757600080fd5b80633bd64968146103fc57806342842e0e1461041157600080fd5b80630c5da3f6116102585780631e7269c51161023d5780631e7269c51461037a57806323b872dd146103bc5780632f745c59146103dc57600080fd5b80630c5da3f61461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612a65565b61086c565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461087d565b6040516102b69190612ada565b3480156102ed57600080fd5b506103016102fc366004612aed565b61090f565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612b1b565b6109ba565b005b34801561034757600080fd5b50610339610356366004612c03565b610aec565b34801561036757600080fd5b506008545b6040519081526020016102b6565b34801561038657600080fd5b506103aa610395366004612c38565b60106020526000908152604090205460ff1681565b60405160ff90911681526020016102b6565b3480156103c857600080fd5b506103396103d7366004612c55565b610d0c565b3480156103e857600080fd5b5061036c6103f7366004612b1b565b610d93565b34801561040857600080fd5b50610339610e3b565b34801561041d57600080fd5b5061033961042c366004612c55565b610ee6565b34801561043d57600080fd5b5061036c61044c366004612aed565b610f01565b34801561045d57600080fd5b50600b546102aa907801000000000000000000000000000000000000000000000000900460ff1681565b34801561049357600080fd5b506103396104a2366004612b1b565b610fa5565b3480156104b357600080fd5b506103396104c2366004612c96565b611035565b3480156104d357600080fd5b506103396104e2366004612d1e565b61109b565b3480156104f357600080fd5b50610301610502366004612aed565b611144565b34801561051357600080fd5b50610339610522366004612d39565b6111cf565b34801561053357600080fd5b5061036c600c5481565b34801561054957600080fd5b5061036c610558366004612c38565b61133d565b34801561056957600080fd5b506103396113d7565b34801561057e57600080fd5b50600a546001600160a01b0316610301565b34801561059c57600080fd5b506102d461143d565b3480156105b157600080fd5b506103016105c0366004612d5d565b61144c565b6103396105d3366004612da4565b6114cb565b3480156105e457600080fd5b506103396105f3366004612ddc565b6117ec565b34801561060457600080fd5b50610618610613366004612c03565b6117f7565b60408051938452602084019290925260ff16908201526060016102b6565b34801561064257600080fd5b506102aa610651366004612e1a565b61186b565b34801561066257600080fd5b50610339610671366004612e73565b61190c565b34801561068257600080fd5b50600b546103aa9077010000000000000000000000000000000000000000000000900460ff1681565b3480156106b757600080fd5b506102d46106c6366004612aed565b61199a565b3480156106d757600080fd5b50600b546106fe9074010000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020016102b6565b34801561071d57600080fd5b506102aa61072c366004612edf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076657600080fd5b506102aa610775366004612c38565b600f6020526000908152604090205460ff1681565b34801561079657600080fd5b506103396107a5366004612c38565b611a5c565b3480156107b657600080fd5b5061036c6107c5366004612aed565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b34801561082457600080fd5b50610339610833366004612c96565b611b3e565b34801561084457600080fd5b50600b546103aa90760100000000000000000000000000000000000000000000900460ff1681565b600061087782611ba4565b92915050565b60606000805461088c90612f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612f0d565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109c582611144565b9050806001600160a01b0316836001600160a01b03161415610a4f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610995565b336001600160a01b0382161480610a6b5750610a6b813361072c565b610add5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610995565b610ae78383611bfa565b505050565b600b5477010000000000000000000000000000000000000000000000900460ff16600114610b825760405162461bcd60e51b815260206004820152602260248201527f4f4720456c697465206d696e742069732063757272656e746c7920636c6f736560448201527f642e0000000000000000000000000000000000000000000000000000000000006064820152608401610995565b610b8e3360008361186b565b610c4c5760405162461bcd60e51b815260206004820152606860248201527f596f752077657265206e6f7420616464656420746f20746865204f472077686960448201527f74656c6973742e20506c6561736520636f6e7461637420456c69746520536f6360648201527f69657479207465616d20696620796f75207468696e6b2074686973206973206160848201527f6e206572726f722e00000000000000000000000000000000000000000000000060a482015260c401610995565b336000908152600f602052604090205460ff1615610cd25760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e74656420796f7572204f472060448201527f456c6974652e00000000000000000000000000000000000000000000000000006064820152608401610995565b610cef33610cdf60085490565b610cea906001612f90565b611c80565b50336000908152600f60205260409020805460ff19166001179055565b610d163382611de6565b610d885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610995565b610ae7838383611eee565b6000610d9e8361133d565b8210610e125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610995565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b80547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff811678010000000000000000000000000000000000000000000000009182900460ff1615909102179055565b610ae78383836040518060200160405280600081525061190c565b6000610f0c60085490565b8210610f805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610995565b60088281548110610f9357610f93612fa8565b90600052602060002001549050919050565b600a546001600160a01b03163314610fff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610ae7573d6000803e3d6000fd5b600a546001600160a01b0316331461108f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b610ae7600e838361299e565b600a546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b805460ff90921677010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806108775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610995565b600a546001600160a01b031633146112295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b5461ffff74010000000000000000000000000000000000000000909104811690821661125660085490565b6112609190612f90565b11156112ae5760405162461bcd60e51b815260206004820152601c60248201527f5468697320776f756c6420657863656564206d617820737570706c79000000006044820152606401610995565b60005b8161ffff168110156113395760006112c860085490565b6112d3906001612f90565b90506112df3382611c80565b600b8054760100000000000000000000000000000000000000000000900460ff1690601661130c83612fd7565b91906101000a81548160ff021916908360ff1602179055505050808061133190612ff4565b9150506112b1565b5050565b60006001600160a01b0382166113bb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610995565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b61143b60006120de565b565b60606001805461088c90612f0d565b60008060008061145b856117f7565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156114b6573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600b5477010000000000000000000000000000000000000000000000900460ff1660021461151c57600b5477010000000000000000000000000000000000000000000000900460ff16600314611528565b6115283360018361186b565b6115c05760405162461bcd60e51b815260206004820152604760248201527f596f7520686176656e2774206265656e20616464656420746f2074686520776860448201527f6974656c697374206f72207468652073616c65206861736e277420737461727460648201527f6564207965742e00000000000000000000000000000000000000000000000000608482015260a401610995565b600c546115d09060ff841661300f565b34101561161f5760405162461bcd60e51b815260206004820152601660248201527f57726f6e672065746820616d6f756e742073656e742e000000000000000000006044820152606401610995565b3360009081526010602052604090205460029061164090849060ff1661302e565b60ff1611156116b75760405162461bcd60e51b815260206004820152602660248201527f5468697320776f756c6420657863656564206d6178696d756d206d696e74206160448201527f6d6f756e742e00000000000000000000000000000000000000000000000000006064820152608401610995565b600b546116fd90760100000000000000000000000000000000000000000000810460ff169074010000000000000000000000000000000000000000900461ffff16613053565b61ffff168260ff1661170e60085490565b6117189190612f90565b11156117665760405162461bcd60e51b815260206004820152601d60248201527f5468697320776f756c6420657863656564206d617820737570706c792e0000006044820152606401610995565b60005b8260ff168161ffff1610156117ad57600061178360085490565b61178e906001612f90565b905061179a3382611c80565b50806117a581613076565b915050611769565b5033600090815260106020526040812080548492906117d090849060ff1661302e565b92506101000a81548160ff021916908360ff1602179055505050565b611339338383612148565b6000806000835160411461184d5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610995565b50505060208101516040820151606090920151909260009190911a90565b604080516001600160a01b038581166020808401919091528284018690528351808403850181526060840185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080850152609c8085018290528551808603909101815260bc9094019094528251920191909120600b5460009392166118f8828661144c565b6001600160a01b0316149695505050505050565b6119163383611de6565b6119885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610995565b61199484848484612217565b50505050565b600b546060907801000000000000000000000000000000000000000000000000900460ff16611a5357600d80546119d090612f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc90612f0d565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b5050505050610877565b610877826122a0565b600a546001600160a01b03163314611ab65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b6001600160a01b038116611b325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610995565b611b3b816120de565b50565b600a546001600160a01b03163314611b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b610ae7600d838361299e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610877575061087782612389565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611c4782611144565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216611cd65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610995565b6000818152600260205260409020546001600160a01b031615611d3b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610995565b611d476000838361246c565b6001600160a01b0382166000908152600360205260408120805460019290611d70908490612f90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316611e705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610995565b6000611e7b83611144565b9050806001600160a01b0316846001600160a01b03161480611eb65750836001600160a01b0316611eab8461090f565b6001600160a01b0316145b80611ee657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f0182611144565b6001600160a01b031614611f7d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610995565b6001600160a01b038216611ff85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610995565b61200383838361246c565b61200e600082611bfa565b6001600160a01b0383166000908152600360205260408120805460019290612037908490613098565b90915550506001600160a01b0382166000908152600360205260408120805460019290612065908490612f90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121aa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610995565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612222848484611eee565b61222e84848484612477565b6119945760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610995565b6000818152600260205260409020546060906001600160a01b031661232d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610995565b6000612337612615565b905060008151116123575760405180602001604052806000815250612382565b8061236184612624565b6040516020016123729291906130af565b6040516020818303038152906040525b9392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061241c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610877565b610ae7838383612756565b60006001600160a01b0384163b1561260a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906124d49033908990889088906004016130de565b6020604051808303816000875af192505050801561250f575060408051601f3d908101601f1916820190925261250c9181019061311a565b60015b6125bf573d80801561253d576040519150601f19603f3d011682016040523d82523d6000602084013e612542565b606091505b5080516125b75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610995565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ee6565b506001949350505050565b6060600e805461088c90612f0d565b60608161266457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561268e578061267881612ff4565b91506126879050600a83613166565b9150612668565b60008167ffffffffffffffff8111156126a9576126a9612b47565b6040519080825280601f01601f1916602001820160405280156126d3576020820181803683370190505b5090505b8415611ee6576126e8600183613098565b91506126f5600a8661317a565b612700906030612f90565b60f81b81838151811061271557612715612fa8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061274f600a86613166565b94506126d7565b6001600160a01b0383166127b1576127ac81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127d4565b816001600160a01b0316836001600160a01b0316146127d4576127d4838261280e565b6001600160a01b0382166127eb57610ae7816128ab565b826001600160a01b0316826001600160a01b031614610ae757610ae7828261295a565b6000600161281b8461133d565b6128259190613098565b600083815260076020526040902054909150808214612878576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128bd90600190613098565b600083815260096020526040812054600880549394509092849081106128e5576128e5612fa8565b90600052602060002001549050806008838154811061290657612906612fa8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061293e5761293e61318e565b6001900381819060005260206000200160009055905550505050565b60006129658361133d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546129aa90612f0d565b90600052602060002090601f0160209004810192826129cc5760008555612a12565b82601f106129e55782800160ff19823516178555612a12565b82800160010185558215612a12579182015b82811115612a125782358255916020019190600101906129f7565b50612a1e929150612a22565b5090565b5b80821115612a1e5760008155600101612a23565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611b3b57600080fd5b600060208284031215612a7757600080fd5b813561238281612a37565b60005b83811015612a9d578181015183820152602001612a85565b838111156119945750506000910152565b60008151808452612ac6816020860160208601612a82565b601f01601f19169290920160200192915050565b6020815260006123826020830184612aae565b600060208284031215612aff57600080fd5b5035919050565b6001600160a01b0381168114611b3b57600080fd5b60008060408385031215612b2e57600080fd5b8235612b3981612b06565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112612b8757600080fd5b813567ffffffffffffffff80821115612ba257612ba2612b47565b604051601f8301601f19908116603f01168101908282118183101715612bca57612bca612b47565b81604052838152866020858801011115612be357600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612c1557600080fd5b813567ffffffffffffffff811115612c2c57600080fd5b611ee684828501612b76565b600060208284031215612c4a57600080fd5b813561238281612b06565b600080600060608486031215612c6a57600080fd5b8335612c7581612b06565b92506020840135612c8581612b06565b929592945050506040919091013590565b60008060208385031215612ca957600080fd5b823567ffffffffffffffff80821115612cc157600080fd5b818501915085601f830112612cd557600080fd5b813581811115612ce457600080fd5b866020828501011115612cf657600080fd5b60209290920196919550909350505050565b803560ff81168114612d1957600080fd5b919050565b600060208284031215612d3057600080fd5b61238282612d08565b600060208284031215612d4b57600080fd5b813561ffff8116811461238257600080fd5b60008060408385031215612d7057600080fd5b82359150602083013567ffffffffffffffff811115612d8e57600080fd5b612d9a85828601612b76565b9150509250929050565b60008060408385031215612db757600080fd5b612dc083612d08565b9150602083013567ffffffffffffffff811115612d8e57600080fd5b60008060408385031215612def57600080fd5b8235612dfa81612b06565b915060208301358015158114612e0f57600080fd5b809150509250929050565b600080600060608486031215612e2f57600080fd5b8335612e3a81612b06565b925060208401359150604084013567ffffffffffffffff811115612e5d57600080fd5b612e6986828701612b76565b9150509250925092565b60008060008060808587031215612e8957600080fd5b8435612e9481612b06565b93506020850135612ea481612b06565b925060408501359150606085013567ffffffffffffffff811115612ec757600080fd5b612ed387828801612b76565b91505092959194509250565b60008060408385031215612ef257600080fd5b8235612efd81612b06565b91506020830135612e0f81612b06565b600181811c90821680612f2157607f821691505b60208210811415612f5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612fa357612fa3612f61565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821680612fea57612fea612f61565b6000190192915050565b600060001982141561300857613008612f61565b5060010190565b600081600019048311821515161561302957613029612f61565b500290565b600060ff821660ff84168060ff0382111561304b5761304b612f61565b019392505050565b600061ffff8381169083168181101561306e5761306e612f61565b039392505050565b600061ffff8083168181141561308e5761308e612f61565b6001019392505050565b6000828210156130aa576130aa612f61565b500390565b600083516130c1818460208801612a82565b8351908301906130d5818360208801612a82565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526131106080830184612aae565b9695505050505050565b60006020828403121561312c57600080fd5b815161238281612a37565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261317557613175613137565b500490565b60008261318957613189613137565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d5090eea399f6563d0ec012a4ff0a0176238a7092b8cc0404009a12a65ece72764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e9b1683a1161007f578063fa54080111610064578063fa540801146107aa578063fe2c7fee14610818578063fe60d12c1461083857600080fd5b8063e9b1683a1461075a578063f2fde38b1461078a57600080fd5b8063c87b56dd116100b0578063c87b56dd146106ab578063d5abeb01146106cb578063e985e9c51461071157600080fd5b8063b88d4fde14610656578063c19d93fb1461067657600080fd5b806397aba7f911610122578063a22cb46511610107578063a22cb465146105d8578063a7bb5803146105f8578063b018db581461063657600080fd5b806397aba7f9146105a55780639bb24386146105c557600080fd5b806370a082311461053d578063715018a61461055d5780638da5cb5b1461057257806395d89b411461059057600080fd5b80633bd649681161020157806355f804b3116101b55780636352211e1161019a5780636352211e146104e757806365ce2e98146105075780636817c76c1461052757600080fd5b806355f804b3146104a757806356de96db146104c757600080fd5b80634f6ccce7116101e65780634f6ccce7146104315780635183022714610451578063522f68151461048757600080fd5b80633bd64968146103fc57806342842e0e1461041157600080fd5b80630c5da3f6116102585780631e7269c51161023d5780631e7269c51461037a57806323b872dd146103bc5780632f745c59146103dc57600080fd5b80630c5da3f61461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612a65565b61086c565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461087d565b6040516102b69190612ada565b3480156102ed57600080fd5b506103016102fc366004612aed565b61090f565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612b1b565b6109ba565b005b34801561034757600080fd5b50610339610356366004612c03565b610aec565b34801561036757600080fd5b506008545b6040519081526020016102b6565b34801561038657600080fd5b506103aa610395366004612c38565b60106020526000908152604090205460ff1681565b60405160ff90911681526020016102b6565b3480156103c857600080fd5b506103396103d7366004612c55565b610d0c565b3480156103e857600080fd5b5061036c6103f7366004612b1b565b610d93565b34801561040857600080fd5b50610339610e3b565b34801561041d57600080fd5b5061033961042c366004612c55565b610ee6565b34801561043d57600080fd5b5061036c61044c366004612aed565b610f01565b34801561045d57600080fd5b50600b546102aa907801000000000000000000000000000000000000000000000000900460ff1681565b34801561049357600080fd5b506103396104a2366004612b1b565b610fa5565b3480156104b357600080fd5b506103396104c2366004612c96565b611035565b3480156104d357600080fd5b506103396104e2366004612d1e565b61109b565b3480156104f357600080fd5b50610301610502366004612aed565b611144565b34801561051357600080fd5b50610339610522366004612d39565b6111cf565b34801561053357600080fd5b5061036c600c5481565b34801561054957600080fd5b5061036c610558366004612c38565b61133d565b34801561056957600080fd5b506103396113d7565b34801561057e57600080fd5b50600a546001600160a01b0316610301565b34801561059c57600080fd5b506102d461143d565b3480156105b157600080fd5b506103016105c0366004612d5d565b61144c565b6103396105d3366004612da4565b6114cb565b3480156105e457600080fd5b506103396105f3366004612ddc565b6117ec565b34801561060457600080fd5b50610618610613366004612c03565b6117f7565b60408051938452602084019290925260ff16908201526060016102b6565b34801561064257600080fd5b506102aa610651366004612e1a565b61186b565b34801561066257600080fd5b50610339610671366004612e73565b61190c565b34801561068257600080fd5b50600b546103aa9077010000000000000000000000000000000000000000000000900460ff1681565b3480156106b757600080fd5b506102d46106c6366004612aed565b61199a565b3480156106d757600080fd5b50600b546106fe9074010000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020016102b6565b34801561071d57600080fd5b506102aa61072c366004612edf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076657600080fd5b506102aa610775366004612c38565b600f6020526000908152604090205460ff1681565b34801561079657600080fd5b506103396107a5366004612c38565b611a5c565b3480156107b657600080fd5b5061036c6107c5366004612aed565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b34801561082457600080fd5b50610339610833366004612c96565b611b3e565b34801561084457600080fd5b50600b546103aa90760100000000000000000000000000000000000000000000900460ff1681565b600061087782611ba4565b92915050565b60606000805461088c90612f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612f0d565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109c582611144565b9050806001600160a01b0316836001600160a01b03161415610a4f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610995565b336001600160a01b0382161480610a6b5750610a6b813361072c565b610add5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610995565b610ae78383611bfa565b505050565b600b5477010000000000000000000000000000000000000000000000900460ff16600114610b825760405162461bcd60e51b815260206004820152602260248201527f4f4720456c697465206d696e742069732063757272656e746c7920636c6f736560448201527f642e0000000000000000000000000000000000000000000000000000000000006064820152608401610995565b610b8e3360008361186b565b610c4c5760405162461bcd60e51b815260206004820152606860248201527f596f752077657265206e6f7420616464656420746f20746865204f472077686960448201527f74656c6973742e20506c6561736520636f6e7461637420456c69746520536f6360648201527f69657479207465616d20696620796f75207468696e6b2074686973206973206160848201527f6e206572726f722e00000000000000000000000000000000000000000000000060a482015260c401610995565b336000908152600f602052604090205460ff1615610cd25760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e74656420796f7572204f472060448201527f456c6974652e00000000000000000000000000000000000000000000000000006064820152608401610995565b610cef33610cdf60085490565b610cea906001612f90565b611c80565b50336000908152600f60205260409020805460ff19166001179055565b610d163382611de6565b610d885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610995565b610ae7838383611eee565b6000610d9e8361133d565b8210610e125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610995565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b80547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff811678010000000000000000000000000000000000000000000000009182900460ff1615909102179055565b610ae78383836040518060200160405280600081525061190c565b6000610f0c60085490565b8210610f805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610995565b60088281548110610f9357610f93612fa8565b90600052602060002001549050919050565b600a546001600160a01b03163314610fff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610ae7573d6000803e3d6000fd5b600a546001600160a01b0316331461108f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b610ae7600e838361299e565b600a546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b805460ff90921677010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806108775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610995565b600a546001600160a01b031633146112295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b600b5461ffff74010000000000000000000000000000000000000000909104811690821661125660085490565b6112609190612f90565b11156112ae5760405162461bcd60e51b815260206004820152601c60248201527f5468697320776f756c6420657863656564206d617820737570706c79000000006044820152606401610995565b60005b8161ffff168110156113395760006112c860085490565b6112d3906001612f90565b90506112df3382611c80565b600b8054760100000000000000000000000000000000000000000000900460ff1690601661130c83612fd7565b91906101000a81548160ff021916908360ff1602179055505050808061133190612ff4565b9150506112b1565b5050565b60006001600160a01b0382166113bb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610995565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b61143b60006120de565b565b60606001805461088c90612f0d565b60008060008061145b856117f7565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156114b6573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600b5477010000000000000000000000000000000000000000000000900460ff1660021461151c57600b5477010000000000000000000000000000000000000000000000900460ff16600314611528565b6115283360018361186b565b6115c05760405162461bcd60e51b815260206004820152604760248201527f596f7520686176656e2774206265656e20616464656420746f2074686520776860448201527f6974656c697374206f72207468652073616c65206861736e277420737461727460648201527f6564207965742e00000000000000000000000000000000000000000000000000608482015260a401610995565b600c546115d09060ff841661300f565b34101561161f5760405162461bcd60e51b815260206004820152601660248201527f57726f6e672065746820616d6f756e742073656e742e000000000000000000006044820152606401610995565b3360009081526010602052604090205460029061164090849060ff1661302e565b60ff1611156116b75760405162461bcd60e51b815260206004820152602660248201527f5468697320776f756c6420657863656564206d6178696d756d206d696e74206160448201527f6d6f756e742e00000000000000000000000000000000000000000000000000006064820152608401610995565b600b546116fd90760100000000000000000000000000000000000000000000810460ff169074010000000000000000000000000000000000000000900461ffff16613053565b61ffff168260ff1661170e60085490565b6117189190612f90565b11156117665760405162461bcd60e51b815260206004820152601d60248201527f5468697320776f756c6420657863656564206d617820737570706c792e0000006044820152606401610995565b60005b8260ff168161ffff1610156117ad57600061178360085490565b61178e906001612f90565b905061179a3382611c80565b50806117a581613076565b915050611769565b5033600090815260106020526040812080548492906117d090849060ff1661302e565b92506101000a81548160ff021916908360ff1602179055505050565b611339338383612148565b6000806000835160411461184d5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610995565b50505060208101516040820151606090920151909260009190911a90565b604080516001600160a01b038581166020808401919091528284018690528351808403850181526060840185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080850152609c8085018290528551808603909101815260bc9094019094528251920191909120600b5460009392166118f8828661144c565b6001600160a01b0316149695505050505050565b6119163383611de6565b6119885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610995565b61199484848484612217565b50505050565b600b546060907801000000000000000000000000000000000000000000000000900460ff16611a5357600d80546119d090612f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc90612f0d565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b5050505050610877565b610877826122a0565b600a546001600160a01b03163314611ab65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b6001600160a01b038116611b325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610995565b611b3b816120de565b50565b600a546001600160a01b03163314611b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610995565b610ae7600d838361299e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610877575061087782612389565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611c4782611144565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216611cd65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610995565b6000818152600260205260409020546001600160a01b031615611d3b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610995565b611d476000838361246c565b6001600160a01b0382166000908152600360205260408120805460019290611d70908490612f90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316611e705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610995565b6000611e7b83611144565b9050806001600160a01b0316846001600160a01b03161480611eb65750836001600160a01b0316611eab8461090f565b6001600160a01b0316145b80611ee657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f0182611144565b6001600160a01b031614611f7d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610995565b6001600160a01b038216611ff85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610995565b61200383838361246c565b61200e600082611bfa565b6001600160a01b0383166000908152600360205260408120805460019290612037908490613098565b90915550506001600160a01b0382166000908152600360205260408120805460019290612065908490612f90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121aa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610995565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612222848484611eee565b61222e84848484612477565b6119945760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610995565b6000818152600260205260409020546060906001600160a01b031661232d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610995565b6000612337612615565b905060008151116123575760405180602001604052806000815250612382565b8061236184612624565b6040516020016123729291906130af565b6040516020818303038152906040525b9392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061241c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610877565b610ae7838383612756565b60006001600160a01b0384163b1561260a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906124d49033908990889088906004016130de565b6020604051808303816000875af192505050801561250f575060408051601f3d908101601f1916820190925261250c9181019061311a565b60015b6125bf573d80801561253d576040519150601f19603f3d011682016040523d82523d6000602084013e612542565b606091505b5080516125b75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610995565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ee6565b506001949350505050565b6060600e805461088c90612f0d565b60608161266457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561268e578061267881612ff4565b91506126879050600a83613166565b9150612668565b60008167ffffffffffffffff8111156126a9576126a9612b47565b6040519080825280601f01601f1916602001820160405280156126d3576020820181803683370190505b5090505b8415611ee6576126e8600183613098565b91506126f5600a8661317a565b612700906030612f90565b60f81b81838151811061271557612715612fa8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061274f600a86613166565b94506126d7565b6001600160a01b0383166127b1576127ac81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127d4565b816001600160a01b0316836001600160a01b0316146127d4576127d4838261280e565b6001600160a01b0382166127eb57610ae7816128ab565b826001600160a01b0316826001600160a01b031614610ae757610ae7828261295a565b6000600161281b8461133d565b6128259190613098565b600083815260076020526040902054909150808214612878576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128bd90600190613098565b600083815260096020526040812054600880549394509092849081106128e5576128e5612fa8565b90600052602060002001549050806008838154811061290657612906612fa8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061293e5761293e61318e565b6001900381819060005260206000200160009055905550505050565b60006129658361133d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546129aa90612f0d565b90600052602060002090601f0160209004810192826129cc5760008555612a12565b82601f106129e55782800160ff19823516178555612a12565b82800160010185558215612a12579182015b82811115612a125782358255916020019190600101906129f7565b50612a1e929150612a22565b5090565b5b80821115612a1e5760008155600101612a23565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611b3b57600080fd5b600060208284031215612a7757600080fd5b813561238281612a37565b60005b83811015612a9d578181015183820152602001612a85565b838111156119945750506000910152565b60008151808452612ac6816020860160208601612a82565b601f01601f19169290920160200192915050565b6020815260006123826020830184612aae565b600060208284031215612aff57600080fd5b5035919050565b6001600160a01b0381168114611b3b57600080fd5b60008060408385031215612b2e57600080fd5b8235612b3981612b06565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112612b8757600080fd5b813567ffffffffffffffff80821115612ba257612ba2612b47565b604051601f8301601f19908116603f01168101908282118183101715612bca57612bca612b47565b81604052838152866020858801011115612be357600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612c1557600080fd5b813567ffffffffffffffff811115612c2c57600080fd5b611ee684828501612b76565b600060208284031215612c4a57600080fd5b813561238281612b06565b600080600060608486031215612c6a57600080fd5b8335612c7581612b06565b92506020840135612c8581612b06565b929592945050506040919091013590565b60008060208385031215612ca957600080fd5b823567ffffffffffffffff80821115612cc157600080fd5b818501915085601f830112612cd557600080fd5b813581811115612ce457600080fd5b866020828501011115612cf657600080fd5b60209290920196919550909350505050565b803560ff81168114612d1957600080fd5b919050565b600060208284031215612d3057600080fd5b61238282612d08565b600060208284031215612d4b57600080fd5b813561ffff8116811461238257600080fd5b60008060408385031215612d7057600080fd5b82359150602083013567ffffffffffffffff811115612d8e57600080fd5b612d9a85828601612b76565b9150509250929050565b60008060408385031215612db757600080fd5b612dc083612d08565b9150602083013567ffffffffffffffff811115612d8e57600080fd5b60008060408385031215612def57600080fd5b8235612dfa81612b06565b915060208301358015158114612e0f57600080fd5b809150509250929050565b600080600060608486031215612e2f57600080fd5b8335612e3a81612b06565b925060208401359150604084013567ffffffffffffffff811115612e5d57600080fd5b612e6986828701612b76565b9150509250925092565b60008060008060808587031215612e8957600080fd5b8435612e9481612b06565b93506020850135612ea481612b06565b925060408501359150606085013567ffffffffffffffff811115612ec757600080fd5b612ed387828801612b76565b91505092959194509250565b60008060408385031215612ef257600080fd5b8235612efd81612b06565b91506020830135612e0f81612b06565b600181811c90821680612f2157607f821691505b60208210811415612f5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612fa357612fa3612f61565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821680612fea57612fea612f61565b6000190192915050565b600060001982141561300857613008612f61565b5060010190565b600081600019048311821515161561302957613029612f61565b500290565b600060ff821660ff84168060ff0382111561304b5761304b612f61565b019392505050565b600061ffff8381169083168181101561306e5761306e612f61565b039392505050565b600061ffff8083168181141561308e5761308e612f61565b6001019392505050565b6000828210156130aa576130aa612f61565b500390565b600083516130c1818460208801612a82565b8351908301906130d5818360208801612a82565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526131106080830184612aae565b9695505050505050565b60006020828403121561312c57600080fd5b815161238281612a37565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261317557613175613137565b500490565b60008261318957613189613137565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d5090eea399f6563d0ec012a4ff0a0176238a7092b8cc0404009a12a65ece72764736f6c634300080a0033

Deployed Bytecode Sourcemap

39507:5420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40334:212;;;;;;;;;;-1:-1:-1;40334:212:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;40334:212:0;;;;;;;;18640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20199:221::-;;;;;;;;;;-1:-1:-1;20199:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;20199:221:0;1633:226:1;19722:411:0;;;;;;;;;;-1:-1:-1;19722:411:0;;;;;:::i;:::-;;:::i;:::-;;40677:503;;;;;;;;;;-1:-1:-1;40677:503:0;;;;;:::i;:::-;;:::i;33999:113::-;;;;;;;;;;-1:-1:-1;34087:10:0;:17;33999:113;;;3785:25:1;;;3773:2;3758:18;33999:113:0;3639:177:1;39992:40:0;;;;;;;;;;-1:-1:-1;39992:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4245:4:1;4233:17;;;4215:36;;4203:2;4188:18;39992:40:0;4073:184:1;20949:339:0;;;;;;;;;;-1:-1:-1;20949:339:0;;;;;:::i;:::-;;:::i;33667:256::-;;;;;;;;;;-1:-1:-1;33667:256:0;;;;;:::i;:::-;;:::i;42645:81::-;;;;;;;;;;;;;:::i;21359:185::-;;;;;;;;;;-1:-1:-1;21359:185:0;;;;;:::i;:::-;;:::i;34189:233::-;;;;;;;;;;-1:-1:-1;34189:233:0;;;;;:::i;:::-;;:::i;39797:28::-;;;;;;;;;;-1:-1:-1;39797:28:0;;;;;;;;;;;40554:115;;;;;;;;;;-1:-1:-1;40554:115:0;;;;;:::i;:::-;;:::i;42734:102::-;;;;;;;;;;-1:-1:-1;42734:102:0;;;;;:::i;:::-;;:::i;42545:88::-;;;;;;;;;;-1:-1:-1;42545:88:0;;;;;:::i;:::-;;:::i;18334:239::-;;;;;;;;;;-1:-1:-1;18334:239:0;;;;;:::i;:::-;;:::i;41962:415::-;;;;;;;;;;-1:-1:-1;41962:415:0;;;;;:::i;:::-;;:::i;39838:33::-;;;;;;;;;;;;;;;;18064:208;;;;;;;;;;-1:-1:-1;18064:208:0;;;;;:::i;:::-;;:::i;31198:103::-;;;;;;;;;;;;;:::i;30547:87::-;;;;;;;;;;-1:-1:-1;30620:6:0;;-1:-1:-1;;;;;30620:6:0;30547:87;;18809:104;;;;;;;;;;;;;:::i;43842:247::-;;;;;;;;;;-1:-1:-1;43842:247:0;;;;;:::i;:::-;;:::i;41188:762::-;;;;;;:::i;:::-;;:::i;20492:155::-;;;;;;;;;;-1:-1:-1;20492:155:0;;;;;:::i;:::-;;:::i;44097:827::-;;;;;;;;;;-1:-1:-1;44097:827:0;;;;;:::i;:::-;;:::i;:::-;;;;7680:25:1;;;7736:2;7721:18;;7714:34;;;;7796:4;7784:17;7764:18;;;7757:45;7668:2;7653:18;44097:827:0;7482:326:1;43091:342:0;;;;;;;;;;-1:-1:-1;43091:342:0;;;;;:::i;:::-;;:::i;21615:328::-;;;;;;;;;;-1:-1:-1;21615:328:0;;;;;:::i;:::-;;:::i;39726:22::-;;;;;;;;;;-1:-1:-1;39726:22:0;;;;;;;;;;;42385:152;;;;;;;;;;-1:-1:-1;42385:152:0;;;;;:::i;:::-;;:::i;39652:30::-;;;;;;;;;;-1:-1:-1;39652:30:0;;;;;;;;;;;;;;9185:6:1;9173:19;;;9155:38;;9143:2;9128:18;39652:30:0;9011:188:1;20718:164:0;;;;;;;;;;-1:-1:-1;20718:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20839:25:0;;;20815:4;20839:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20718:164;39944:41;;;;;;;;;;-1:-1:-1;39944:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31456:201;;;;;;;;;;-1:-1:-1;31456:201:0;;;;;:::i;:::-;;:::i;43445:389::-;;;;;;;;;;-1:-1:-1;43445:389:0;;;;;:::i;:::-;43749:66;;20915::1;43749::0;;;20903:79:1;20998:12;;;20991:28;;;43521:7:0;;21035:12:1;;43749:66:0;;;;;;;;;;;;43725:101;;;;;;43709:117;;43445:389;;;;42845:126;;;;;;;;;;-1:-1:-1;42845:126:0;;;;;:::i;:::-;;:::i;39691:26::-;;;;;;;;;;-1:-1:-1;39691:26:0;;;;;;;;;;;40334:212;40473:4;40502:36;40526:11;40502:23;:36::i;:::-;40495:43;40334:212;-1:-1:-1;;40334:212:0:o;18640:100::-;18694:13;18727:5;18720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18640:100;:::o;20199:221::-;20275:7;23542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23542:16:0;20295:73;;;;-1:-1:-1;;;20295:73:0;;10608:2:1;20295:73:0;;;10590:21:1;10647:2;10627:18;;;10620:30;10686:34;10666:18;;;10659:62;10757:14;10737:18;;;10730:42;10789:19;;20295:73:0;;;;;;;;;-1:-1:-1;20388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20388:24:0;;20199:221::o;19722:411::-;19803:13;19819:23;19834:7;19819:14;:23::i;:::-;19803:39;;19867:5;-1:-1:-1;;;;;19861:11:0;:2;-1:-1:-1;;;;;19861:11:0;;;19853:57;;;;-1:-1:-1;;;19853:57:0;;11021:2:1;19853:57:0;;;11003:21:1;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;11170:3;11150:18;;;11143:31;11191:19;;19853:57:0;10819:397:1;19853:57:0;14635:10;-1:-1:-1;;;;;19945:21:0;;;;:62;;-1:-1:-1;19970:37:0;19987:5;14635:10;20718:164;:::i;19970:37::-;19923:168;;;;-1:-1:-1;;;19923:168:0;;11423:2:1;19923:168:0;;;11405:21:1;11462:2;11442:18;;;11435:30;11501:34;11481:18;;;11474:62;11572:26;11552:18;;;11545:54;11616:19;;19923:168:0;11221:420:1;19923:168:0;20104:21;20113:2;20117:7;20104:8;:21::i;:::-;19792:341;19722:411;;:::o;40677:503::-;40746:5;;;;;;;40755:1;40746:10;40738:57;;;;-1:-1:-1;;;40738:57:0;;11848:2:1;40738:57:0;;;11830:21:1;11887:2;11867:18;;;11860:30;11926:34;11906:18;;;11899:62;11997:4;11977:18;;;11970:32;12019:19;;40738:57:0;11646:398:1;40738:57:0;40824:40;40839:10;40851:1;40854:9;40824:14;:40::i;:::-;40816:157;;;;-1:-1:-1;;;40816:157:0;;12251:2:1;40816:157:0;;;12233:21:1;12290:3;12270:18;;;12263:31;12330:34;12310:18;;;12303:62;12401:34;12381:18;;;12374:62;12473:34;12452:19;;;12445:63;12545:10;12524:19;;;12517:39;12573:19;;40816:157:0;12049:549:1;40816:157:0;41012:10;41003:20;;;;:8;:20;;;;;;;;41002:21;40994:72;;;;-1:-1:-1;;;40994:72:0;;12805:2:1;40994:72:0;;;12787:21:1;12844:2;12824:18;;;12817:30;12883:34;12863:18;;;12856:62;12954:8;12934:18;;;12927:36;12980:19;;40994:72:0;12603:402:1;40994:72:0;41087:37;41093:10;41105:14;34087:10;:17;;33999:113;41105:14;:18;;41122:1;41105:18;:::i;:::-;41087:5;:37::i;:::-;-1:-1:-1;41154:10:0;41145:20;;;;:8;:20;;;;;:27;;-1:-1:-1;;41145:27:0;41168:4;41145:27;;;40677:503::o;20949:339::-;21144:41;14635:10;21177:7;21144:18;:41::i;:::-;21136:103;;;;-1:-1:-1;;;21136:103:0;;13534:2:1;21136:103:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;13683:19;13663:18;;;13656:47;13720:19;;21136:103:0;13332:413:1;21136:103:0;21252:28;21262:4;21268:2;21272:7;21252:9;:28::i;33667:256::-;33764:7;33800:23;33817:5;33800:16;:23::i;:::-;33792:5;:31;33784:87;;;;-1:-1:-1;;;33784:87:0;;13952:2:1;33784:87:0;;;13934:21:1;13991:2;13971:18;;;13964:30;14030:34;14010:18;;;14003:62;14101:13;14081:18;;;14074:41;14132:19;;33784:87:0;13750:407:1;33784:87:0;-1:-1:-1;;;;;;33889:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33667:256::o;42645:81::-;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;42710:8:::1;::::0;;42698:20;;::::1;42710:8:::0;;;;::::1;;;42709:9;42698:20:::0;;::::1;;::::0;;42645:81::o;21359:185::-;21497:39;21514:4;21520:2;21524:7;21497:39;;;;;;;;;;;;:16;:39::i;34189:233::-;34264:7;34300:30;34087:10;:17;;33999:113;34300:30;34292:5;:38;34284:95;;;;-1:-1:-1;;;34284:95:0;;14725:2:1;34284:95:0;;;14707:21:1;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;14874:14;14854:18;;;14847:42;14906:19;;34284:95:0;14523:408:1;34284:95:0;34397:10;34408:5;34397:17;;;;;;;;:::i;:::-;;;;;;;;;34390:24;;34189:233;;;:::o;40554:115::-;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;40640:21:::1;::::0;-1:-1:-1;;;;;40640:12:0;::::1;::::0;:21;::::1;;;::::0;40653:7;;40640:21:::1;::::0;;;40653:7;40640:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;42734:102:::0;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;42810:18:::1;:7;42820:8:::0;;42810:18:::1;:::i;42545:88::-:0;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;42609:5:::1;:16:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;42545:88::o;18334:239::-;18406:7;18442:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18442:16:0;18477:19;18469:73;;;;-1:-1:-1;;;18469:73:0;;15327:2:1;18469:73:0;;;15309:21:1;15366:2;15346:18;;;15339:30;15405:34;15385:18;;;15378:62;15476:11;15456:18;;;15449:39;15505:19;;18469:73:0;15125:405:1;41962:415:0;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;42065:9:::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;42037:24;::::1;:13;34087:10:::0;:17;;33999:113;42037:13:::1;:24;;;;:::i;:::-;:37;;42029:78;;;::::0;-1:-1:-1;;;42029:78:0;;15737:2:1;42029:78:0::1;::::0;::::1;15719:21:1::0;15776:2;15756:18;;;15749:30;15815;15795:18;;;15788:58;15863:18;;42029:78:0::1;15535:352:1::0;42029:78:0::1;42203:9;42199:171;42222:8;42218:12;;:1;:12;42199:171;;;42252:17;42272:14;34087:10:::0;:17;;33999:113;42272:14:::1;:18;::::0;42289:1:::1;42272:18;:::i;:::-;42252:38;;42305:28;42311:10;42323:9;42305:5;:28::i;:::-;42348:8;:10:::0;;;;::::1;;;::::0;:8:::1;:10;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;42237:133;42232:3;;;;;:::i;:::-;;;;42199:171;;;;41962:415:::0;:::o;18064:208::-;18136:7;-1:-1:-1;;;;;18164:19:0;;18156:74;;;;-1:-1:-1;;;18156:74:0;;16537:2:1;18156:74:0;;;16519:21:1;16576:2;16556:18;;;16549:30;16615:34;16595:18;;;16588:62;16686:12;16666:18;;;16659:40;16716:19;;18156:74:0;16335:406:1;18156:74:0;-1:-1:-1;;;;;;18248:16:0;;;;;:9;:16;;;;;;;18064:208::o;31198:103::-;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;31263:30:::1;31290:1;31263:18;:30::i;:::-;31198:103::o:0;18809:104::-;18865:13;18898:7;18891:14;;;;;:::i;43842:247::-;43942:7;43963:9;43974;43985:7;43996:26;44011:10;43996:14;:26::i;:::-;44040:41;;;;;;;;;;;;16973:25:1;;;17046:4;17034:17;;17014:18;;;17007:45;;;;17068:18;;;17061:34;;;17111:18;;;17104:34;;;43962:60:0;;-1:-1:-1;43962:60:0;;-1:-1:-1;43962:60:0;-1:-1:-1;44040:41:0;;16945:19:1;;44040:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44040:41:0;;-1:-1:-1;;44040:41:0;;;43842:247;-1:-1:-1;;;;;;;43842:247:0:o;41188:762::-;41278:5;;;;;;;41287:1;41278:10;:66;;41334:5;;;;;;;41343:1;41334:10;41278:66;;;41291:40;41306:10;41318:1;41321:9;41291:14;:40::i;:::-;41270:150;;;;-1:-1:-1;;;41270:150:0;;17351:2:1;41270:150:0;;;17333:21:1;17390:2;17370:18;;;17363:30;17429:34;17409:18;;;17402:62;17500:34;17480:18;;;17473:62;17572:9;17551:19;;;17544:38;17599:19;;41270:150:0;17149:475:1;41270:150:0;41473:9;;41462:20;;;;;;:::i;:::-;41449:9;:33;;41441:68;;;;-1:-1:-1;;;41441:68:0;;18064:2:1;41441:68:0;;;18046:21:1;18103:2;18083:18;;;18076:30;18142:24;18122:18;;;18115:52;18184:18;;41441:68:0;17862:346:1;41441:68:0;41545:10;41538:18;;;;:6;:18;;;;;;41571:1;;41538:29;;41559:8;;41538:18;;:29;:::i;:::-;:34;;;;41530:85;;;;-1:-1:-1;;;41530:85:0;;18624:2:1;41530:85:0;;;18606:21:1;18663:2;18643:18;;;18636:30;18702:34;18682:18;;;18675:62;18773:8;18753:18;;;18746:36;18799:19;;41530:85:0;18422:402:1;41530:85:0;41684:8;;41672:20;;41684:8;;;;;;41672:9;;;;;:20;:::i;:::-;41644:48;;41660:8;41644:24;;:13;34087:10;:17;;33999:113;41644:13;:24;;;;:::i;:::-;:48;;41636:90;;;;-1:-1:-1;;;41636:90:0;;19253:2:1;41636:90:0;;;19235:21:1;19292:2;19272:18;;;19265:30;19331:31;19311:18;;;19304:59;19380:18;;41636:90:0;19051:353:1;41636:90:0;41751:8;41747:145;41769:8;41765:12;;:1;:12;;;41747:145;;;41799:17;41819:14;34087:10;:17;;33999:113;41819:14;:18;;41836:1;41819:18;:::i;:::-;41799:38;;41852:28;41858:10;41870:9;41852:5;:28::i;:::-;-1:-1:-1;41779:3:0;;;;:::i;:::-;;;;41747:145;;;-1:-1:-1;41919:10:0;41912:18;;;;:6;:18;;;;;:30;;41934:8;;41912:18;:30;;41934:8;;41912:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41188:762;;:::o;20492:155::-;20587:52;14635:10;20620:8;20630;20587:18;:52::i;44097:827::-;44185:9;44205;44225:7;44264:3;:10;44278:2;44264:16;44256:53;;;;-1:-1:-1;;;44256:53:0;;19813:2:1;44256:53:0;;;19795:21:1;19852:2;19832:18;;;19825:30;19891:26;19871:18;;;19864:54;19935:18;;44256:53:0;19611:348:1;44256:53:0;-1:-1:-1;;;44690:2:0;44681:12;;44675:19;44756:2;44747:12;;44741:19;44859:2;44850:12;;;44844:19;44675;;44841:1;44836:28;;;;;44097:827::o;43091:342::-;43239:24;;;-1:-1:-1;;;;;20156:55:1;;;43239:24:0;;;;20138:74:1;;;;20228:18;;;20221:34;;;43239:24:0;;;;;;;;;20111:18:1;;;43239:24:0;;43229:35;;;;;;20915:66:1;43749::0;;;20903:79:1;20998:12;;;;20991:28;;;43749:66:0;;;;;;;;;;21035:12:1;;;;43749:66:0;;;43725:101;;;;;;;;43412:13;;-1:-1:-1;;43229:35:0;43412:13;43362:46;43725:101;43398:9;43362:13;:46::i;:::-;-1:-1:-1;;;;;43362:63:0;;;43091:342;-1:-1:-1;;;;;;43091:342:0:o;21615:328::-;21790:41;14635:10;21823:7;21790:18;:41::i;:::-;21782:103;;;;-1:-1:-1;;;21782:103:0;;13534:2:1;21782:103:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;13683:19;13663:18;;;13656:47;13720:19;;21782:103:0;13332:413:1;21782:103:0;21896:39;21910:4;21916:2;21920:7;21929:5;21896:13;:39::i;:::-;21615:328;;;;:::o;42385:152::-;42479:8;;42446:13;;42479:8;;;;;:50;;42516:13;42479:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42490:23;42505:7;42490:14;:23::i;31456:201::-;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;-1:-1:-1;;;;;31545:22:0;::::1;31537:73;;;::::0;-1:-1:-1;;;31537:73:0;;20468:2:1;31537:73:0::1;::::0;::::1;20450:21:1::0;20507:2;20487:18;;;20480:30;20546:34;20526:18;;;20519:62;20617:8;20597:18;;;20590:36;20643:19;;31537:73:0::1;20266:402:1::0;31537:73:0::1;31621:28;31640:8;31621:18;:28::i;:::-;31456:201:::0;:::o;42845:126::-;30620:6;;-1:-1:-1;;;;;30620:6:0;14635:10;30767:23;30759:68;;;;-1:-1:-1;;;30759:68:0;;14364:2:1;30759:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;30759:68:0;14162:356:1;30759:68:0;42933:30:::1;:13;42949:14:::0;;42933:30:::1;:::i;33359:224::-:0;33461:4;33485:50;;;33500:35;33485:50;;:90;;;33539:36;33563:11;33539:23;:36::i;27435:174::-;27510:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;27510:29:0;;;;;;;;:24;;27564:23;27510:24;27564:14;:23::i;:::-;-1:-1:-1;;;;;27555:46:0;;;;;;;;;;;27435:174;;:::o;25431:382::-;-1:-1:-1;;;;;25511:16:0;;25503:61;;;;-1:-1:-1;;;25503:61:0;;21260:2:1;25503:61:0;;;21242:21:1;;;21279:18;;;21272:30;21338:34;21318:18;;;21311:62;21390:18;;25503:61:0;21058:356:1;25503:61:0;23518:4;23542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23542:16:0;:30;25575:58;;;;-1:-1:-1;;;25575:58:0;;21621:2:1;25575:58:0;;;21603:21:1;21660:2;21640:18;;;21633:30;21699;21679:18;;;21672:58;21747:18;;25575:58:0;21419:352:1;25575:58:0;25646:45;25675:1;25679:2;25683:7;25646:20;:45::i;:::-;-1:-1:-1;;;;;25704:13:0;;;;;;:9;:13;;;;;:18;;25721:1;;25704:13;:18;;25721:1;;25704:18;:::i;:::-;;;;-1:-1:-1;;25733:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;25733:21:0;;;;;;;;25772:33;;25733:16;;;25772:33;;25733:16;;25772:33;25431:382;;:::o;23747:348::-;23840:4;23542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23542:16:0;23857:73;;;;-1:-1:-1;;;23857:73:0;;21978:2:1;23857:73:0;;;21960:21:1;22017:2;21997:18;;;21990:30;22056:34;22036:18;;;22029:62;22127:14;22107:18;;;22100:42;22159:19;;23857:73:0;21776:408:1;23857:73:0;23941:13;23957:23;23972:7;23957:14;:23::i;:::-;23941:39;;24010:5;-1:-1:-1;;;;;23999:16:0;:7;-1:-1:-1;;;;;23999:16:0;;:51;;;;24043:7;-1:-1:-1;;;;;24019:31:0;:20;24031:7;24019:11;:20::i;:::-;-1:-1:-1;;;;;24019:31:0;;23999:51;:87;;;-1:-1:-1;;;;;;20839:25:0;;;20815:4;20839:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;24054:32;23991:96;23747:348;-1:-1:-1;;;;23747:348:0:o;26739:578::-;26898:4;-1:-1:-1;;;;;26871:31:0;:23;26886:7;26871:14;:23::i;:::-;-1:-1:-1;;;;;26871:31:0;;26863:85;;;;-1:-1:-1;;;26863:85:0;;22391:2:1;26863:85:0;;;22373:21:1;22430:2;22410:18;;;22403:30;22469:34;22449:18;;;22442:62;22540:11;22520:18;;;22513:39;22569:19;;26863:85:0;22189:405:1;26863:85:0;-1:-1:-1;;;;;26967:16:0;;26959:65;;;;-1:-1:-1;;;26959:65:0;;22801:2:1;26959:65:0;;;22783:21:1;22840:2;22820:18;;;22813:30;22879:34;22859:18;;;22852:62;22950:6;22930:18;;;22923:34;22974:19;;26959:65:0;22599:400:1;26959:65:0;27037:39;27058:4;27064:2;27068:7;27037:20;:39::i;:::-;27141:29;27158:1;27162:7;27141:8;:29::i;:::-;-1:-1:-1;;;;;27183:15:0;;;;;;:9;:15;;;;;:20;;27202:1;;27183:15;:20;;27202:1;;27183:20;:::i;:::-;;;;-1:-1:-1;;;;;;;27214:13:0;;;;;;:9;:13;;;;;:18;;27231:1;;27214:13;:18;;27231:1;;27214:18;:::i;:::-;;;;-1:-1:-1;;27243:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;27243:21:0;;;;;;;;;27282:27;;27243:16;;27282:27;;;;;;;26739:578;;;:::o;31817:191::-;31910:6;;;-1:-1:-1;;;;;31927:17:0;;;;;;;;;;;31960:40;;31910:6;;;31927:17;31910:6;;31960:40;;31891:16;;31960:40;31880:128;31817:191;:::o;27751:315::-;27906:8;-1:-1:-1;;;;;27897:17:0;:5;-1:-1:-1;;;;;27897:17:0;;;27889:55;;;;-1:-1:-1;;;27889:55:0;;23336:2:1;27889:55:0;;;23318:21:1;23375:2;23355:18;;;23348:30;23414:27;23394:18;;;23387:55;23459:18;;27889:55:0;23134:349:1;27889:55:0;-1:-1:-1;;;;;27955:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;27955:46:0;;;;;;;;;;28017:41;;586::1;;;28017::0;;559:18:1;28017:41:0;;;;;;;27751:315;;;:::o;22825:::-;22982:28;22992:4;22998:2;23002:7;22982:9;:28::i;:::-;23029:48;23052:4;23058:2;23062:7;23071:5;23029:22;:48::i;:::-;23021:111;;;;-1:-1:-1;;;23021:111:0;;23690:2:1;23021:111:0;;;23672:21:1;23729:2;23709:18;;;23702:30;23768:34;23748:18;;;23741:62;23839:20;23819:18;;;23812:48;23877:19;;23021:111:0;23488:414:1;18984:334:0;23518:4;23542:16;;;:7;:16;;;;;;19057:13;;-1:-1:-1;;;;;23542:16:0;19083:76;;;;-1:-1:-1;;;19083:76:0;;24109:2:1;19083:76:0;;;24091:21:1;24148:2;24128:18;;;24121:30;24187:34;24167:18;;;24160:62;24258:17;24238:18;;;24231:45;24293:19;;19083:76:0;23907:411:1;19083:76:0;19172:21;19196:10;:8;:10::i;:::-;19172:34;;19248:1;19230:7;19224:21;:25;:86;;;;;;;;;;;;;;;;;19276:7;19285:18;:7;:16;:18::i;:::-;19259:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19224:86;19217:93;18984:334;-1:-1:-1;;;18984:334:0:o;17695:305::-;17797:4;17834:40;;;17849:25;17834:40;;:105;;-1:-1:-1;17891:48:0;;;17906:33;17891:48;17834:105;:158;;;-1:-1:-1;5355:25:0;5340:40;;;;17956:36;5231:157;40122:204;40273:45;40300:4;40306:2;40310:7;40273:26;:45::i;28631:799::-;28786:4;-1:-1:-1;;;;;28807:13:0;;7514:20;7562:8;28803:620;;28843:72;;;;;-1:-1:-1;;;;;28843:36:0;;;;;:72;;14635:10;;28894:4;;28900:7;;28909:5;;28843:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28843:72:0;;;;;;;;-1:-1:-1;;28843:72:0;;;;;;;;;;;;:::i;:::-;;;28839:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29085:13:0;;29081:272;;29128:60;;-1:-1:-1;;;29128:60:0;;23690:2:1;29128:60:0;;;23672:21:1;23729:2;23709:18;;;23702:30;23768:34;23748:18;;;23741:62;23839:20;23819:18;;;23812:48;23877:19;;29128:60:0;23488:414:1;29081:272:0;29303:6;29297:13;29288:6;29284:2;29280:15;29273:38;28839:529;28966:51;;28976:41;28966:51;;-1:-1:-1;28959:58:0;;28803:620;-1:-1:-1;29407:4:0;28631:799;;;;;;:::o;42979:100::-;43031:13;43064:7;43057:14;;;;;:::i;14957:723::-;15013:13;15234:10;15230:53;;-1:-1:-1;;15261:10:0;;;;;;;;;;;;;;;;;;14957:723::o;15230:53::-;15308:5;15293:12;15349:78;15356:9;;15349:78;;15382:8;;;;:::i;:::-;;-1:-1:-1;15405:10:0;;-1:-1:-1;15413:2:0;15405:10;;:::i;:::-;;;15349:78;;;15437:19;15469:6;15459:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15459:17:0;;15437:39;;15487:154;15494:10;;15487:154;;15521:11;15531:1;15521:11;;:::i;:::-;;-1:-1:-1;15590:10:0;15598:2;15590:5;:10;:::i;:::-;15577:24;;:2;:24;:::i;:::-;15564:39;;15547:6;15554;15547:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;15618:11:0;15627:2;15618:11;;:::i;:::-;;;15487:154;;35035:589;-1:-1:-1;;;;;35241:18:0;;35237:187;;35276:40;35308:7;36451:10;:17;;36424:24;;;;:15;:24;;;;;:44;;;36479:24;;;;;;;;;;;;36347:164;35276:40;35237:187;;;35346:2;-1:-1:-1;;;;;35338:10:0;:4;-1:-1:-1;;;;;35338:10:0;;35334:90;;35365:47;35398:4;35404:7;35365:32;:47::i;:::-;-1:-1:-1;;;;;35438:16:0;;35434:183;;35471:45;35508:7;35471:36;:45::i;35434:183::-;35544:4;-1:-1:-1;;;;;35538:10:0;:2;-1:-1:-1;;;;;35538:10:0;;35534:83;;35565:40;35593:2;35597:7;35565:27;:40::i;37138:988::-;37404:22;37454:1;37429:22;37446:4;37429:16;:22::i;:::-;:26;;;;:::i;:::-;37466:18;37487:26;;;:17;:26;;;;;;37404:51;;-1:-1:-1;37620:28:0;;;37616:328;;-1:-1:-1;;;;;37687:18:0;;37665:19;37687:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37738:30;;;;;;:44;;;37855:30;;:17;:30;;;;;:43;;;37616:328;-1:-1:-1;38040:26:0;;;;:17;:26;;;;;;;;38033:33;;;-1:-1:-1;;;;;38084:18:0;;;;;:12;:18;;;;;:34;;;;;;;38077:41;37138:988::o;38421:1079::-;38699:10;:17;38674:22;;38699:21;;38719:1;;38699:21;:::i;:::-;38731:18;38752:24;;;:15;:24;;;;;;39125:10;:26;;38674:46;;-1:-1:-1;38752:24:0;;38674:46;;39125:26;;;;;;:::i;:::-;;;;;;;;;39103:48;;39189:11;39164:10;39175;39164:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39269:28;;;:15;:28;;;;;;;:41;;;39441:24;;;;;39434:31;39476:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38492:1008;;;38421:1079;:::o;35925:221::-;36010:14;36027:20;36044:2;36027:16;:20::i;:::-;-1:-1:-1;;;;;36058:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36103:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;35925:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:1;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:154::-;-1:-1:-1;;;;;1943:5:1;1939:54;1932:5;1929:65;1919:93;;2008:1;2005;1998:12;2023:315;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;2328:2;2313:18;;;;2300:32;;-1:-1:-1;;;2023:315:1:o;2343:184::-;2395:77;2392:1;2385:88;2492:4;2489:1;2482:15;2516:4;2513:1;2506:15;2532:777;2574:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:55;;2645:1;2642;2635:12;2594:55;2681:6;2668:20;2707:18;2744:2;2740;2737:10;2734:36;;;2750:18;;:::i;:::-;2884:2;2878:9;2946:4;2938:13;;-1:-1:-1;;2934:22:1;;;2958:2;2930:31;2926:40;2914:53;;;2982:18;;;3002:22;;;2979:46;2976:72;;;3028:18;;:::i;:::-;3068:10;3064:2;3057:22;3103:2;3095:6;3088:18;3149:3;3142:4;3137:2;3129:6;3125:15;3121:26;3118:35;3115:55;;;3166:1;3163;3156:12;3115:55;3230:2;3223:4;3215:6;3211:17;3204:4;3196:6;3192:17;3179:54;3277:1;3270:4;3265:2;3257:6;3253:15;3249:26;3242:37;3297:6;3288:15;;;;;;2532:777;;;;:::o;3314:320::-;3382:6;3435:2;3423:9;3414:7;3410:23;3406:32;3403:52;;;3451:1;3448;3441:12;3403:52;3491:9;3478:23;3524:18;3516:6;3513:30;3510:50;;;3556:1;3553;3546:12;3510:50;3579:49;3620:7;3611:6;3600:9;3596:22;3579:49;:::i;3821:247::-;3880:6;3933:2;3921:9;3912:7;3908:23;3904:32;3901:52;;;3949:1;3946;3939:12;3901:52;3988:9;3975:23;4007:31;4032:5;4007:31;:::i;4262:456::-;4339:6;4347;4355;4408:2;4396:9;4387:7;4383:23;4379:32;4376:52;;;4424:1;4421;4414:12;4376:52;4463:9;4450:23;4482:31;4507:5;4482:31;:::i;:::-;4532:5;-1:-1:-1;4589:2:1;4574:18;;4561:32;4602:33;4561:32;4602:33;:::i;:::-;4262:456;;4654:7;;-1:-1:-1;;;4708:2:1;4693:18;;;;4680:32;;4262:456::o;5051:592::-;5122:6;5130;5183:2;5171:9;5162:7;5158:23;5154:32;5151:52;;;5199:1;5196;5189:12;5151:52;5239:9;5226:23;5268:18;5309:2;5301:6;5298:14;5295:34;;;5325:1;5322;5315:12;5295:34;5363:6;5352:9;5348:22;5338:32;;5408:7;5401:4;5397:2;5393:13;5389:27;5379:55;;5430:1;5427;5420:12;5379:55;5470:2;5457:16;5496:2;5488:6;5485:14;5482:34;;;5512:1;5509;5502:12;5482:34;5557:7;5552:2;5543:6;5539:2;5535:15;5531:24;5528:37;5525:57;;;5578:1;5575;5568:12;5525:57;5609:2;5601:11;;;;;5631:6;;-1:-1:-1;5051:592:1;;-1:-1:-1;;;;5051:592:1:o;5648:156::-;5714:20;;5774:4;5763:16;;5753:27;;5743:55;;5794:1;5791;5784:12;5743:55;5648:156;;;:::o;5809:182::-;5866:6;5919:2;5907:9;5898:7;5894:23;5890:32;5887:52;;;5935:1;5932;5925:12;5887:52;5958:27;5975:9;5958:27;:::i;5996:272::-;6054:6;6107:2;6095:9;6086:7;6082:23;6078:32;6075:52;;;6123:1;6120;6113:12;6075:52;6162:9;6149:23;6212:6;6205:5;6201:18;6194:5;6191:29;6181:57;;6234:1;6231;6224:12;6273:388;6350:6;6358;6411:2;6399:9;6390:7;6386:23;6382:32;6379:52;;;6427:1;6424;6417:12;6379:52;6463:9;6450:23;6440:33;;6524:2;6513:9;6509:18;6496:32;6551:18;6543:6;6540:30;6537:50;;;6583:1;6580;6573:12;6537:50;6606:49;6647:7;6638:6;6627:9;6623:22;6606:49;:::i;:::-;6596:59;;;6273:388;;;;;:::o;6666:390::-;6741:6;6749;6802:2;6790:9;6781:7;6777:23;6773:32;6770:52;;;6818:1;6815;6808:12;6770:52;6841:27;6858:9;6841:27;:::i;:::-;6831:37;;6919:2;6908:9;6904:18;6891:32;6946:18;6938:6;6935:30;6932:50;;;6978:1;6975;6968:12;7061:416;7126:6;7134;7187:2;7175:9;7166:7;7162:23;7158:32;7155:52;;;7203:1;7200;7193:12;7155:52;7242:9;7229:23;7261:31;7286:5;7261:31;:::i;:::-;7311:5;-1:-1:-1;7368:2:1;7353:18;;7340:32;7410:15;;7403:23;7391:36;;7381:64;;7441:1;7438;7431:12;7381:64;7464:7;7454:17;;;7061:416;;;;;:::o;7813:523::-;7899:6;7907;7915;7968:2;7956:9;7947:7;7943:23;7939:32;7936:52;;;7984:1;7981;7974:12;7936:52;8023:9;8010:23;8042:31;8067:5;8042:31;:::i;:::-;8092:5;-1:-1:-1;8144:2:1;8129:18;;8116:32;;-1:-1:-1;8199:2:1;8184:18;;8171:32;8226:18;8215:30;;8212:50;;;8258:1;8255;8248:12;8212:50;8281:49;8322:7;8313:6;8302:9;8298:22;8281:49;:::i;:::-;8271:59;;;7813:523;;;;;:::o;8341:665::-;8436:6;8444;8452;8460;8513:3;8501:9;8492:7;8488:23;8484:33;8481:53;;;8530:1;8527;8520:12;8481:53;8569:9;8556:23;8588:31;8613:5;8588:31;:::i;:::-;8638:5;-1:-1:-1;8695:2:1;8680:18;;8667:32;8708:33;8667:32;8708:33;:::i;:::-;8760:7;-1:-1:-1;8814:2:1;8799:18;;8786:32;;-1:-1:-1;8869:2:1;8854:18;;8841:32;8896:18;8885:30;;8882:50;;;8928:1;8925;8918:12;8882:50;8951:49;8992:7;8983:6;8972:9;8968:22;8951:49;:::i;:::-;8941:59;;;8341:665;;;;;;;:::o;9204:388::-;9272:6;9280;9333:2;9321:9;9312:7;9308:23;9304:32;9301:52;;;9349:1;9346;9339:12;9301:52;9388:9;9375:23;9407:31;9432:5;9407:31;:::i;:::-;9457:5;-1:-1:-1;9514:2:1;9499:18;;9486:32;9527:33;9486:32;9527:33;:::i;9964:437::-;10043:1;10039:12;;;;10086;;;10107:61;;10161:4;10153:6;10149:17;10139:27;;10107:61;10214:2;10206:6;10203:14;10183:18;10180:38;10177:218;;;10251:77;10248:1;10241:88;10352:4;10349:1;10342:15;10380:4;10377:1;10370:15;10177:218;;9964:437;;;:::o;13010:184::-;13062:77;13059:1;13052:88;13159:4;13156:1;13149:15;13183:4;13180:1;13173:15;13199:128;13239:3;13270:1;13266:6;13263:1;13260:13;13257:39;;;13276:18;;:::i;:::-;-1:-1:-1;13312:9:1;;13199:128::o;14936:184::-;14988:77;14985:1;14978:88;15085:4;15082:1;15075:15;15109:4;15106:1;15099:15;15892:238;15929:3;15973:4;15966:5;15962:16;15997:7;15987:41;;16008:18;;:::i;:::-;-1:-1:-1;;16044:80:1;;15892:238;-1:-1:-1;;15892:238:1:o;16135:195::-;16174:3;-1:-1:-1;;16198:5:1;16195:77;16192:103;;;16275:18;;:::i;:::-;-1:-1:-1;16322:1:1;16311:13;;16135:195::o;17629:228::-;17669:7;17795:1;-1:-1:-1;;17723:74:1;17720:1;17717:81;17712:1;17705:9;17698:17;17694:105;17691:131;;;17802:18;;:::i;:::-;-1:-1:-1;17842:9:1;;17629:228::o;18213:204::-;18251:3;18287:4;18284:1;18280:12;18319:4;18316:1;18312:12;18354:3;18348:4;18344:14;18339:3;18336:23;18333:49;;;18362:18;;:::i;:::-;18398:13;;18213:204;-1:-1:-1;;;18213:204:1:o;18829:217::-;18868:4;18897:6;18953:10;;;;18923;;18975:12;;;18972:38;;;18990:18;;:::i;:::-;19027:13;;18829:217;-1:-1:-1;;;18829:217:1:o;19409:197::-;19447:3;19475:6;19516:2;19509:5;19505:14;19543:2;19534:7;19531:15;19528:41;;;19549:18;;:::i;:::-;19598:1;19585:15;;19409:197;-1:-1:-1;;;19409:197:1:o;23004:125::-;23044:4;23072:1;23069;23066:8;23063:34;;;23077:18;;:::i;:::-;-1:-1:-1;23114:9:1;;23004:125::o;24323:470::-;24502:3;24540:6;24534:13;24556:53;24602:6;24597:3;24590:4;24582:6;24578:17;24556:53;:::i;:::-;24672:13;;24631:16;;;;24694:57;24672:13;24631:16;24728:4;24716:17;;24694:57;:::i;:::-;24767:20;;24323:470;-1:-1:-1;;;;24323:470:1:o;24798:512::-;24992:4;-1:-1:-1;;;;;25102:2:1;25094:6;25090:15;25079:9;25072:34;25154:2;25146:6;25142:15;25137:2;25126:9;25122:18;25115:43;;25194:6;25189:2;25178:9;25174:18;25167:34;25237:3;25232:2;25221:9;25217:18;25210:31;25258:46;25299:3;25288:9;25284:19;25276:6;25258:46;:::i;:::-;25250:54;24798:512;-1:-1:-1;;;;;;24798:512:1:o;25315:249::-;25384:6;25437:2;25425:9;25416:7;25412:23;25408:32;25405:52;;;25453:1;25450;25443:12;25405:52;25485:9;25479:16;25504:30;25528:5;25504:30;:::i;25569:184::-;25621:77;25618:1;25611:88;25718:4;25715:1;25708:15;25742:4;25739:1;25732:15;25758:120;25798:1;25824;25814:35;;25829:18;;:::i;:::-;-1:-1:-1;25863:9:1;;25758:120::o;25883:112::-;25915:1;25941;25931:35;;25946:18;;:::i;:::-;-1:-1:-1;25980:9:1;;25883:112::o;26000:184::-;26052:77;26049:1;26042:88;26149:4;26146:1;26139:15;26173:4;26170:1;26163:15

Swarm Source

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