ETH Price: $2,690.23 (-2.09%)

Token

Legends Of The Metaverse (LOTM)
 

Overview

Max Total Supply

411 LOTM

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LOTM
0x518aD44e077A113f5ed27E79De91426b125B6869
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:
LOTM

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 13 of 17: LOTM.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./ERC721Pausable.sol";

contract LOTM is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;

    uint256 public constant MAX_NFT = 5555;
    uint256 public constant PRICE = 5 * 10**16;
    uint256 private _tokenIdTracker;

    address public creatorAddress;
    string public baseTokenURI;
    uint256 public MAX_BY_MINT;
    
    event CreateLegends(uint256 indexed id);

    constructor(string memory baseURI, address payable creator, uint256 max_mint, uint256 token_start) ERC721("Legends Of The Metaverse", "LOTM") {
        setBaseURI(baseURI);
		creatorAddress = creator;
		MAX_BY_MINT = max_mint;
		_tokenIdTracker = token_start;
        pause(true);
    }

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }

    function _totalSupply() public view returns (uint256) {
        return _tokenIdTracker;
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
		uint256 tokenCount = balanceOf(_to);
        require(total + _count <= MAX_NFT, "Max limit");
        require(total <= MAX_NFT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
		require(tokenCount + _count <= MAX_BY_MINT, "Max limit per address");
        require(msg.value >= price(_count), "Value below price");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

	function __mint(address _to, uint256 _count) public saleIsOpen onlyOwner{
        uint256 total = _totalSupply();
        require(total <= MAX_NFT, "Sale end");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker += 1;
        _safeMint(_to, id);
        emit CreateLegends(id);
    }
	
    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }

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

    function _maxMint() internal view virtual returns (uint256) {
        return MAX_NFT;
    }

    function maxByMint() external view returns (uint256) {
        return MAX_BY_MINT;
    }
    
    function setMaxMint(uint256 _max) public onlyOwner {
        MAX_BY_MINT = _max;
    }

    function setTokenId(uint256 _tokenId) public onlyOwner {
        _tokenIdTracker = _tokenId;
    }
    
    function setCreatorAddress(address payable creator) public onlyOwner {
        creatorAddress = creator;
    }

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

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

    
}

File 1 of 17: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

File 2 of 17: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 3 of 17: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 17: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

File 5 of 17: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 6 of 17: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 17: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 8 of 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 17: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 17: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 11 of 17: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 12 of 17: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 14 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 15 of 17: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 16 of 17: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 17 of 17: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
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 Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"creator","type":"address"},{"internalType":"uint256","name":"max_mint","type":"uint256"},{"internalType":"uint256","name":"token_start","type":"uint256"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateLegends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"__mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxByMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"creator","type":"address"}],"name":"setCreatorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005a1938038062005a198339818101604052810190620000379190620006da565b6040518060400160405280601881526020017f4c6567656e6473204f6620546865204d657461766572736500000000000000008152506040518060400160405280600481526020017f4c4f544d000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200057e565b508060019080519060200190620000d49291906200057e565b505050620000f7620000eb6200018e60201b60201c565b6200019660201b60201c565b6000600a60146101000a81548160ff02191690831515021790555062000123846200025c60201b60201c565b82600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e8190555080600b819055506200018460016200030760201b60201c565b5050505062000b0a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026c6200018e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000292620003ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e29062000852565b60405180910390fd5b80600d9080519060200190620003039291906200057e565b5050565b620003176200018e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033d620003ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000396576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038d9062000852565b60405180910390fd5b600115158115151415620003ba57620003b4620003f860201b60201c565b620003cb565b620003ca620004b060201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004086200056760201b60201c565b156200044b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004429062000830565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004976200018e60201b60201c565b604051620004a69190620007f1565b60405180910390a1565b620004c06200056760201b60201c565b62000502576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f9906200080e565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200054e6200018e60201b60201c565b6040516200055d9190620007f1565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b8280546200058c906200096c565b90600052602060002090601f016020900481019282620005b05760008555620005fc565b82601f10620005cb57805160ff1916838001178555620005fc565b82800160010185558215620005fc579182015b82811115620005fb578251825591602001919060010190620005de565b5b5090506200060b91906200060f565b5090565b5b808211156200062a57600081600090555060010162000610565b5090565b6000620006456200063f846200089d565b62000874565b90508281526020810184848401111562000664576200066362000a3b565b5b6200067184828562000936565b509392505050565b6000815190506200068a8162000ad6565b92915050565b600082601f830112620006a857620006a762000a36565b5b8151620006ba8482602086016200062e565b91505092915050565b600081519050620006d48162000af0565b92915050565b60008060008060808587031215620006f757620006f662000a45565b5b600085015167ffffffffffffffff81111562000718576200071762000a40565b5b620007268782880162000690565b9450506020620007398782880162000679565b93505060406200074c87828801620006c3565b92505060606200075f87828801620006c3565b91505092959194509250565b6200077681620008e4565b82525050565b60006200078b601483620008d3565b9150620007988262000a5b565b602082019050919050565b6000620007b2601083620008d3565b9150620007bf8262000a84565b602082019050919050565b6000620007d9602083620008d3565b9150620007e68262000aad565b602082019050919050565b60006020820190506200080860008301846200076b565b92915050565b6000602082019050818103600083015262000829816200077c565b9050919050565b600060208201905081810360008301526200084b81620007a3565b9050919050565b600060208201905081810360008301526200086d81620007ca565b9050919050565b60006200088062000893565b90506200088e8282620009a2565b919050565b6000604051905090565b600067ffffffffffffffff821115620008bb57620008ba62000a07565b5b620008c68262000a4a565b9050602081019050919050565b600082825260208201905092915050565b6000620008f1826200090c565b9050919050565b600062000905826200090c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200095657808201518184015260208101905062000939565b8381111562000966576000848401525b50505050565b600060028204905060018216806200098557607f821691505b602082108114156200099c576200099b620009d8565b5b50919050565b620009ad8262000a4a565b810181811067ffffffffffffffff82111715620009cf57620009ce62000a07565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000ae181620008f8565b811462000aed57600080fd5b50565b62000afb816200092c565b811462000b0757600080fd5b50565b614eff8062000b1a6000396000f3fe6080604052600436106102305760003560e01c806359a7715a1161012e5780639127cc69116100ab578063c929ccf31161006f578063c929ccf314610840578063d547cfb714610869578063e927fc5c14610894578063e985e9c5146108bf578063f2fde38b146108fc57610230565b80639127cc691461075d57806395d89b4114610786578063a22cb465146107b1578063b88d4fde146107da578063c87b56dd1461080357610230565b8063715018a6116100f2578063715018a6146106ae578063853828b6146106c55780638ad5de28146106dc5780638d859f3e146107075780638da5cb5b1461073257610230565b806359a7715a146105b35780635c975abb146105de5780636352211e146106095780636fdaddf11461064657806370a082311461067157610230565b80632f745c59116101bc57806342966c681161018057806342966c68146104be578063438b6300146104e75780634f6ccce714610524578063547520fe1461056157806355f804b31461058a57610230565b80632f745c59146103e85780633dc8ded7146104255780633eaaf86b1461044e57806340c10f191461047957806342842e0e1461049557610230565b8063095ea7b311610203578063095ea7b314610303578063138a4e011461032c57806318160ddd1461035757806323b872dd1461038257806326a49e37146103ab57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137ba565b610925565b6040516102699190613e98565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061378d565b610937565b005b3480156102a757600080fd5b506102b06109d9565b6040516102bd9190613eb3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061385d565b610a6b565b6040516102fa9190613e0f565b60405180910390f35b34801561030f57600080fd5b5061032a6004803603810190610325919061374d565b610af0565b005b34801561033857600080fd5b50610341610c08565b60405161034e9190614255565b60405180910390f35b34801561036357600080fd5b5061036c610c12565b6040516103799190614255565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190613637565b610c1f565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061385d565b610c7f565b6040516103df9190614255565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061374d565b610ca2565b60405161041c9190614255565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061374d565b610d47565b005b34801561045a57600080fd5b50610463610f17565b6040516104709190614255565b60405180910390f35b610493600480360381019061048e919061374d565b610f21565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613637565b6111b3565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061385d565b6111d3565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061359d565b61122f565b60405161051b9190613e76565b60405180910390f35b34801561053057600080fd5b5061054b6004803603810190610546919061385d565b6112dd565b6040516105589190614255565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061385d565b61134e565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613814565b6113d4565b005b3480156105bf57600080fd5b506105c861146a565b6040516105d59190614255565b60405180910390f35b3480156105ea57600080fd5b506105f3611479565b6040516106009190613e98565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061385d565b611490565b60405161063d9190613e0f565b60405180910390f35b34801561065257600080fd5b5061065b611542565b6040516106689190614255565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061359d565b611548565b6040516106a59190614255565b60405180910390f35b3480156106ba57600080fd5b506106c3611600565b005b3480156106d157600080fd5b506106da611688565b005b3480156106e857600080fd5b506106f1611745565b6040516106fe9190614255565b60405180910390f35b34801561071357600080fd5b5061071c61174b565b6040516107299190614255565b60405180910390f35b34801561073e57600080fd5b50610747611756565b6040516107549190613e0f565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906135ca565b611780565b005b34801561079257600080fd5b5061079b611840565b6040516107a89190613eb3565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d3919061370d565b6118d2565b005b3480156107e657600080fd5b5061080160048036038101906107fc919061368a565b611a53565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061385d565b611ab5565b6040516108379190613eb3565b60405180910390f35b34801561084c57600080fd5b506108676004803603810190610862919061385d565b611b5c565b005b34801561087557600080fd5b5061087e611be2565b60405161088b9190613eb3565b60405180910390f35b3480156108a057600080fd5b506108a9611c70565b6040516108b69190613e0f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906135f7565b611c96565b6040516108f39190613e98565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e919061359d565b611d2a565b005b600061093082611e22565b9050919050565b61093f611e9c565b73ffffffffffffffffffffffffffffffffffffffff1661095d611756565b73ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90614115565b60405180910390fd5b6001151581151514156109cd576109c8611ea4565b6109d6565b6109d5611f47565b5b50565b6060600080546109e89061455b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a149061455b565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611fe9565b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac906140f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afb82611490565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906141b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8b611e9c565b73ffffffffffffffffffffffffffffffffffffffff161480610bba5750610bb981610bb4611e9c565b611c96565b5b610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090614055565b60405180910390fd5b610c038383612055565b505050565b6000600e54905090565b6000600880549050905090565b610c30610c2a611e9c565b8261210e565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c66906141f5565b60405180910390fd5b610c7a8383836121ec565b505050565b6000610c9b8266b1a2bc2ec5000061244890919063ffffffff16565b9050919050565b6000610cad83611548565b8210610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613f35565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b3610d52610f17565b1115610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a906140d5565b60405180910390fd5b610d9b611756565b73ffffffffffffffffffffffffffffffffffffffff16610db9611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d57610ddc611479565b15610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390614035565b60405180910390fd5b5b610e25611e9c565b73ffffffffffffffffffffffffffffffffffffffff16610e43611756565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614115565b60405180910390fd5b6000610ea3610f17565b90506115b3811115610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906140d5565b60405180910390fd5b60005b82811015610f1157610efe8461245e565b8080610f09906145be565b915050610eed565b50505050565b6000600b54905090565b6115b3610f2c610f17565b1115610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906140d5565b60405180910390fd5b610f75611756565b73ffffffffffffffffffffffffffffffffffffffff16610f93611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614610ff757610fb6611479565b15610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90614035565b60405180910390fd5b5b6000611001610f17565b9050600061100e84611548565b90506115b3838361101f919061437e565b1115611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790613ff5565b60405180910390fd5b6115b38211156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906140d5565b60405180910390fd5b600e548311156110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190613f15565b60405180910390fd5b600e5483826110f9919061437e565b111561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614195565b60405180910390fd5b61114383610c7f565b341015611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90614175565b60405180910390fd5b60005b838110156111ac576111998561245e565b80806111a4906145be565b915050611188565b5050505050565b6111ce83838360405180602001604052806000815250611a53565b505050565b6111e46111de611e9c565b8261210e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90614235565b60405180910390fd5b61122c816124bf565b50565b6060600061123c83611548565b905060008167ffffffffffffffff81111561125a57611259614723565b5b6040519080825280602002602001820160405280156112885781602001602082028036833780820191505090505b50905060005b828110156112d2576112a08582610ca2565b8282815181106112b3576112b26146f4565b5b60200260200101818152505080806112ca906145be565b91505061128e565b508092505050919050565b60006112e7610c12565b8210611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614215565b60405180910390fd5b6008828154811061133c5761133b6146f4565b5b90600052602060002001549050919050565b611356611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611374611756565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614115565b60405180910390fd5b80600e8190555050565b6113dc611e9c565b73ffffffffffffffffffffffffffffffffffffffff166113fa611756565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614115565b60405180910390fd5b80600d908051906020019061146692919061339c565b5050565b6000611474610f17565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090614095565b60405180910390fd5b80915050919050565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614075565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611608611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611626611756565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614115565b60405180910390fd5b61168660006125d0565b565b611690611e9c565b73ffffffffffffffffffffffffffffffffffffffff166116ae611756565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614115565b60405180910390fd5b60004790506000811161171657600080fd5b611742600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612696565b50565b600e5481565b66b1a2bc2ec5000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611788611e9c565b73ffffffffffffffffffffffffffffffffffffffff166117a6611756565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390614115565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461184f9061455b565b80601f016020809104026020016040519081016040528092919081815260200182805461187b9061455b565b80156118c85780601f1061189d576101008083540402835291602001916118c8565b820191906000526020600020905b8154815290600101906020018083116118ab57829003601f168201915b5050505050905090565b6118da611e9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613fd5565b60405180910390fd5b8060056000611955611e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a02611e9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a479190613e98565b60405180910390a35050565b611a64611a5e611e9c565b8361210e565b611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a906141f5565b60405180910390fd5b611aaf84848484612747565b50505050565b6060611ac082611fe9565b611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614155565b60405180910390fd5b6000611b096127a3565b90506000815111611b295760405180602001604052806000815250611b54565b80611b3384612835565b604051602001611b44929190613dd6565b6040516020818303038152906040525b915050919050565b611b64611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611b82611756565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90614115565b60405180910390fd5b80600b8190555050565b600d8054611bef9061455b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1b9061455b565b8015611c685780601f10611c3d57610100808354040283529160200191611c68565b820191906000526020600020905b815481529060010190602001808311611c4b57829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d32611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611d50611756565b73ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90613f75565b60405180910390fd5b611e1f816125d0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e955750611e9482612996565b5b9050919050565b600033905090565b611eac611479565b15611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee390614035565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f30611e9c565b604051611f3d9190613e0f565b60405180910390a1565b611f4f611479565b611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613ef5565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd2611e9c565b604051611fdf9190613e0f565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120c883611490565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061211982611fe9565b612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614015565b60405180910390fd5b600061216383611490565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121d257508373ffffffffffffffffffffffffffffffffffffffff166121ba84610a6b565b73ffffffffffffffffffffffffffffffffffffffff16145b806121e357506121e28185611c96565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661220c82611490565b73ffffffffffffffffffffffffffffffffffffffff1614612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613fb5565b60405180910390fd5b6122dd838383612a78565b6122e8600082612055565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612338919061445f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238f919061437e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836124569190614405565b905092915050565b6000612468610f17565b90506001600b600082825461247d919061437e565b9250508190555061248e8282612a88565b807f1cc33b40fc92a50725bf9e83051b7ecbd67782398dd270114070d4a546e02c1860405160405180910390a25050565b60006124ca82611490565b90506124d881600084612a78565b6124e3600083612055565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612533919061445f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126bc90613dfa565b60006040518083038185875af1925050503d80600081146126f9576040519150601f19603f3d011682016040523d82523d6000602084013e6126fe565b606091505b5050905080612742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612739906141d5565b60405180910390fd5b505050565b6127528484846121ec565b61275e84848484612aa6565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613f55565b60405180910390fd5b50505050565b6060600d80546127b29061455b565b80601f01602080910402602001604051908101604052809291908181526020018280546127de9061455b565b801561282b5780601f106128005761010080835404028352916020019161282b565b820191906000526020600020905b81548152906001019060200180831161280e57829003601f168201915b5050505050905090565b6060600082141561287d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612991565b600082905060005b600082146128af578080612898906145be565b915050600a826128a891906143d4565b9150612885565b60008167ffffffffffffffff8111156128cb576128ca614723565b5b6040519080825280601f01601f1916602001820160405280156128fd5781602001600182028036833780820191505090505b5090505b6000851461298a57600182612916919061445f565b9150600a856129259190614607565b6030612931919061437e565b60f81b818381518110612947576129466146f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561298391906143d4565b9450612901565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a6157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a715750612a7082612c3d565b5b9050919050565b612a83838383612ca7565b505050565b612aa2828260405180602001604052806000815250612d41565b5050565b6000612ac78473ffffffffffffffffffffffffffffffffffffffff16612d9c565b15612c30578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612af0611e9c565b8786866040518563ffffffff1660e01b8152600401612b129493929190613e2a565b602060405180830381600087803b158015612b2c57600080fd5b505af1925050508015612b5d57506040513d601f19601f82011682018060405250810190612b5a91906137e7565b60015b612be0573d8060008114612b8d576040519150601f19603f3d011682016040523d82523d6000602084013e612b92565b606091505b50600081511415612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf90613f55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c35565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cb2838383612daf565b612cba611756565b73ffffffffffffffffffffffffffffffffffffffff16612cd8611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614612d3c57612cfb611479565b15612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290613ed5565b60405180910390fd5b5b505050565b612d4b8383612ec3565b612d586000848484612aa6565b612d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8e90613f55565b60405180910390fd5b505050565b600080823b905060008111915050919050565b612dba838383613091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfd57612df881613096565b612e3c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e3b57612e3a83826130df565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7f57612e7a8161324c565b612ebe565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ebd57612ebc828261331d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2a906140b5565b60405180910390fd5b612f3c81611fe9565b15612f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7390613f95565b60405180910390fd5b612f8860008383612a78565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd8919061437e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130ec84611548565b6130f6919061445f565b90506000600760008481526020019081526020016000205490508181146131db576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613260919061445f565b90506000600960008481526020019081526020016000205490506000600883815481106132905761328f6146f4565b5b9060005260206000200154905080600883815481106132b2576132b16146f4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613301576133006146c5565b5b6001900381819060005260206000200160009055905550505050565b600061332883611548565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546133a89061455b565b90600052602060002090601f0160209004810192826133ca5760008555613411565b82601f106133e357805160ff1916838001178555613411565b82800160010185558215613411579182015b828111156134105782518255916020019190600101906133f5565b5b50905061341e9190613422565b5090565b5b8082111561343b576000816000905550600101613423565b5090565b600061345261344d84614295565b614270565b90508281526020810184848401111561346e5761346d614757565b5b613479848285614519565b509392505050565b600061349461348f846142c6565b614270565b9050828152602081018484840111156134b0576134af614757565b5b6134bb848285614519565b509392505050565b6000813590506134d281614e56565b92915050565b6000813590506134e781614e6d565b92915050565b6000813590506134fc81614e84565b92915050565b60008135905061351181614e9b565b92915050565b60008151905061352681614e9b565b92915050565b600082601f83011261354157613540614752565b5b813561355184826020860161343f565b91505092915050565b600082601f83011261356f5761356e614752565b5b813561357f848260208601613481565b91505092915050565b60008135905061359781614eb2565b92915050565b6000602082840312156135b3576135b2614761565b5b60006135c1848285016134c3565b91505092915050565b6000602082840312156135e0576135df614761565b5b60006135ee848285016134d8565b91505092915050565b6000806040838503121561360e5761360d614761565b5b600061361c858286016134c3565b925050602061362d858286016134c3565b9150509250929050565b6000806000606084860312156136505761364f614761565b5b600061365e868287016134c3565b935050602061366f868287016134c3565b925050604061368086828701613588565b9150509250925092565b600080600080608085870312156136a4576136a3614761565b5b60006136b2878288016134c3565b94505060206136c3878288016134c3565b93505060406136d487828801613588565b925050606085013567ffffffffffffffff8111156136f5576136f461475c565b5b6137018782880161352c565b91505092959194509250565b6000806040838503121561372457613723614761565b5b6000613732858286016134c3565b9250506020613743858286016134ed565b9150509250929050565b6000806040838503121561376457613763614761565b5b6000613772858286016134c3565b925050602061378385828601613588565b9150509250929050565b6000602082840312156137a3576137a2614761565b5b60006137b1848285016134ed565b91505092915050565b6000602082840312156137d0576137cf614761565b5b60006137de84828501613502565b91505092915050565b6000602082840312156137fd576137fc614761565b5b600061380b84828501613517565b91505092915050565b60006020828403121561382a57613829614761565b5b600082013567ffffffffffffffff8111156138485761384761475c565b5b6138548482850161355a565b91505092915050565b60006020828403121561387357613872614761565b5b600061388184828501613588565b91505092915050565b60006138968383613db8565b60208301905092915050565b6138ab81614493565b82525050565b60006138bc82614307565b6138c68185614335565b93506138d1836142f7565b8060005b838110156139025781516138e9888261388a565b97506138f483614328565b9250506001810190506138d5565b5085935050505092915050565b613918816144b7565b82525050565b600061392982614312565b6139338185614346565b9350613943818560208601614528565b61394c81614766565b840191505092915050565b60006139628261431d565b61396c8185614362565b935061397c818560208601614528565b61398581614766565b840191505092915050565b600061399b8261431d565b6139a58185614373565b93506139b5818560208601614528565b80840191505092915050565b60006139ce602b83614362565b91506139d982614777565b604082019050919050565b60006139f1601483614362565b91506139fc826147c6565b602082019050919050565b6000613a14600e83614362565b9150613a1f826147ef565b602082019050919050565b6000613a37602b83614362565b9150613a4282614818565b604082019050919050565b6000613a5a603283614362565b9150613a6582614867565b604082019050919050565b6000613a7d602683614362565b9150613a88826148b6565b604082019050919050565b6000613aa0601c83614362565b9150613aab82614905565b602082019050919050565b6000613ac3602483614362565b9150613ace8261492e565b604082019050919050565b6000613ae6601983614362565b9150613af18261497d565b602082019050919050565b6000613b09600983614362565b9150613b14826149a6565b602082019050919050565b6000613b2c602c83614362565b9150613b37826149cf565b604082019050919050565b6000613b4f601083614362565b9150613b5a82614a1e565b602082019050919050565b6000613b72603883614362565b9150613b7d82614a47565b604082019050919050565b6000613b95602a83614362565b9150613ba082614a96565b604082019050919050565b6000613bb8602983614362565b9150613bc382614ae5565b604082019050919050565b6000613bdb602083614362565b9150613be682614b34565b602082019050919050565b6000613bfe600883614362565b9150613c0982614b5d565b602082019050919050565b6000613c21602c83614362565b9150613c2c82614b86565b604082019050919050565b6000613c44602083614362565b9150613c4f82614bd5565b602082019050919050565b6000613c67602983614362565b9150613c7282614bfe565b604082019050919050565b6000613c8a602f83614362565b9150613c9582614c4d565b604082019050919050565b6000613cad601183614362565b9150613cb882614c9c565b602082019050919050565b6000613cd0601583614362565b9150613cdb82614cc5565b602082019050919050565b6000613cf3602183614362565b9150613cfe82614cee565b604082019050919050565b6000613d16600083614357565b9150613d2182614d3d565b600082019050919050565b6000613d39601083614362565b9150613d4482614d40565b602082019050919050565b6000613d5c603183614362565b9150613d6782614d69565b604082019050919050565b6000613d7f602c83614362565b9150613d8a82614db8565b604082019050919050565b6000613da2603083614362565b9150613dad82614e07565b604082019050919050565b613dc18161450f565b82525050565b613dd08161450f565b82525050565b6000613de28285613990565b9150613dee8284613990565b91508190509392505050565b6000613e0582613d09565b9150819050919050565b6000602082019050613e2460008301846138a2565b92915050565b6000608082019050613e3f60008301876138a2565b613e4c60208301866138a2565b613e596040830185613dc7565b8181036060830152613e6b818461391e565b905095945050505050565b60006020820190508181036000830152613e9081846138b1565b905092915050565b6000602082019050613ead600083018461390f565b92915050565b60006020820190508181036000830152613ecd8184613957565b905092915050565b60006020820190508181036000830152613eee816139c1565b9050919050565b60006020820190508181036000830152613f0e816139e4565b9050919050565b60006020820190508181036000830152613f2e81613a07565b9050919050565b60006020820190508181036000830152613f4e81613a2a565b9050919050565b60006020820190508181036000830152613f6e81613a4d565b9050919050565b60006020820190508181036000830152613f8e81613a70565b9050919050565b60006020820190508181036000830152613fae81613a93565b9050919050565b60006020820190508181036000830152613fce81613ab6565b9050919050565b60006020820190508181036000830152613fee81613ad9565b9050919050565b6000602082019050818103600083015261400e81613afc565b9050919050565b6000602082019050818103600083015261402e81613b1f565b9050919050565b6000602082019050818103600083015261404e81613b42565b9050919050565b6000602082019050818103600083015261406e81613b65565b9050919050565b6000602082019050818103600083015261408e81613b88565b9050919050565b600060208201905081810360008301526140ae81613bab565b9050919050565b600060208201905081810360008301526140ce81613bce565b9050919050565b600060208201905081810360008301526140ee81613bf1565b9050919050565b6000602082019050818103600083015261410e81613c14565b9050919050565b6000602082019050818103600083015261412e81613c37565b9050919050565b6000602082019050818103600083015261414e81613c5a565b9050919050565b6000602082019050818103600083015261416e81613c7d565b9050919050565b6000602082019050818103600083015261418e81613ca0565b9050919050565b600060208201905081810360008301526141ae81613cc3565b9050919050565b600060208201905081810360008301526141ce81613ce6565b9050919050565b600060208201905081810360008301526141ee81613d2c565b9050919050565b6000602082019050818103600083015261420e81613d4f565b9050919050565b6000602082019050818103600083015261422e81613d72565b9050919050565b6000602082019050818103600083015261424e81613d95565b9050919050565b600060208201905061426a6000830184613dc7565b92915050565b600061427a61428b565b9050614286828261458d565b919050565b6000604051905090565b600067ffffffffffffffff8211156142b0576142af614723565b5b6142b982614766565b9050602081019050919050565b600067ffffffffffffffff8211156142e1576142e0614723565b5b6142ea82614766565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143898261450f565b91506143948361450f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143c9576143c8614638565b5b828201905092915050565b60006143df8261450f565b91506143ea8361450f565b9250826143fa576143f9614667565b5b828204905092915050565b60006144108261450f565b915061441b8361450f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561445457614453614638565b5b828202905092915050565b600061446a8261450f565b91506144758361450f565b92508282101561448857614487614638565b5b828203905092915050565b600061449e826144ef565b9050919050565b60006144b0826144ef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561454657808201518184015260208101905061452b565b83811115614555576000848401525b50505050565b6000600282049050600182168061457357607f821691505b6020821081141561458757614586614696565b5b50919050565b61459682614766565b810181811067ffffffffffffffff821117156145b5576145b4614723565b5b80604052505050565b60006145c98261450f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145fc576145fb614638565b5b600182019050919050565b60006146128261450f565b915061461d8361450f565b92508261462d5761462c614667565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4d6178206c696d69742070657220616464726573730000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614e5f81614493565b8114614e6a57600080fd5b50565b614e76816144a5565b8114614e8157600080fd5b50565b614e8d816144b7565b8114614e9857600080fd5b50565b614ea4816144c3565b8114614eaf57600080fd5b50565b614ebb8161450f565b8114614ec657600080fd5b5056fea2646970667358221220c90ba35082b20f15db974b98a5a6058d2b9314b23a9225206c7208570ee8c90964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc200000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176657273652e636f6d2f6170692f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806359a7715a1161012e5780639127cc69116100ab578063c929ccf31161006f578063c929ccf314610840578063d547cfb714610869578063e927fc5c14610894578063e985e9c5146108bf578063f2fde38b146108fc57610230565b80639127cc691461075d57806395d89b4114610786578063a22cb465146107b1578063b88d4fde146107da578063c87b56dd1461080357610230565b8063715018a6116100f2578063715018a6146106ae578063853828b6146106c55780638ad5de28146106dc5780638d859f3e146107075780638da5cb5b1461073257610230565b806359a7715a146105b35780635c975abb146105de5780636352211e146106095780636fdaddf11461064657806370a082311461067157610230565b80632f745c59116101bc57806342966c681161018057806342966c68146104be578063438b6300146104e75780634f6ccce714610524578063547520fe1461056157806355f804b31461058a57610230565b80632f745c59146103e85780633dc8ded7146104255780633eaaf86b1461044e57806340c10f191461047957806342842e0e1461049557610230565b8063095ea7b311610203578063095ea7b314610303578063138a4e011461032c57806318160ddd1461035757806323b872dd1461038257806326a49e37146103ab57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137ba565b610925565b6040516102699190613e98565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061378d565b610937565b005b3480156102a757600080fd5b506102b06109d9565b6040516102bd9190613eb3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061385d565b610a6b565b6040516102fa9190613e0f565b60405180910390f35b34801561030f57600080fd5b5061032a6004803603810190610325919061374d565b610af0565b005b34801561033857600080fd5b50610341610c08565b60405161034e9190614255565b60405180910390f35b34801561036357600080fd5b5061036c610c12565b6040516103799190614255565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190613637565b610c1f565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061385d565b610c7f565b6040516103df9190614255565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061374d565b610ca2565b60405161041c9190614255565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061374d565b610d47565b005b34801561045a57600080fd5b50610463610f17565b6040516104709190614255565b60405180910390f35b610493600480360381019061048e919061374d565b610f21565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613637565b6111b3565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061385d565b6111d3565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061359d565b61122f565b60405161051b9190613e76565b60405180910390f35b34801561053057600080fd5b5061054b6004803603810190610546919061385d565b6112dd565b6040516105589190614255565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061385d565b61134e565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613814565b6113d4565b005b3480156105bf57600080fd5b506105c861146a565b6040516105d59190614255565b60405180910390f35b3480156105ea57600080fd5b506105f3611479565b6040516106009190613e98565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061385d565b611490565b60405161063d9190613e0f565b60405180910390f35b34801561065257600080fd5b5061065b611542565b6040516106689190614255565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061359d565b611548565b6040516106a59190614255565b60405180910390f35b3480156106ba57600080fd5b506106c3611600565b005b3480156106d157600080fd5b506106da611688565b005b3480156106e857600080fd5b506106f1611745565b6040516106fe9190614255565b60405180910390f35b34801561071357600080fd5b5061071c61174b565b6040516107299190614255565b60405180910390f35b34801561073e57600080fd5b50610747611756565b6040516107549190613e0f565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906135ca565b611780565b005b34801561079257600080fd5b5061079b611840565b6040516107a89190613eb3565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d3919061370d565b6118d2565b005b3480156107e657600080fd5b5061080160048036038101906107fc919061368a565b611a53565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061385d565b611ab5565b6040516108379190613eb3565b60405180910390f35b34801561084c57600080fd5b506108676004803603810190610862919061385d565b611b5c565b005b34801561087557600080fd5b5061087e611be2565b60405161088b9190613eb3565b60405180910390f35b3480156108a057600080fd5b506108a9611c70565b6040516108b69190613e0f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906135f7565b611c96565b6040516108f39190613e98565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e919061359d565b611d2a565b005b600061093082611e22565b9050919050565b61093f611e9c565b73ffffffffffffffffffffffffffffffffffffffff1661095d611756565b73ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90614115565b60405180910390fd5b6001151581151514156109cd576109c8611ea4565b6109d6565b6109d5611f47565b5b50565b6060600080546109e89061455b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a149061455b565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611fe9565b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac906140f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afb82611490565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906141b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8b611e9c565b73ffffffffffffffffffffffffffffffffffffffff161480610bba5750610bb981610bb4611e9c565b611c96565b5b610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090614055565b60405180910390fd5b610c038383612055565b505050565b6000600e54905090565b6000600880549050905090565b610c30610c2a611e9c565b8261210e565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c66906141f5565b60405180910390fd5b610c7a8383836121ec565b505050565b6000610c9b8266b1a2bc2ec5000061244890919063ffffffff16565b9050919050565b6000610cad83611548565b8210610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613f35565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b3610d52610f17565b1115610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a906140d5565b60405180910390fd5b610d9b611756565b73ffffffffffffffffffffffffffffffffffffffff16610db9611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d57610ddc611479565b15610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390614035565b60405180910390fd5b5b610e25611e9c565b73ffffffffffffffffffffffffffffffffffffffff16610e43611756565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614115565b60405180910390fd5b6000610ea3610f17565b90506115b3811115610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906140d5565b60405180910390fd5b60005b82811015610f1157610efe8461245e565b8080610f09906145be565b915050610eed565b50505050565b6000600b54905090565b6115b3610f2c610f17565b1115610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906140d5565b60405180910390fd5b610f75611756565b73ffffffffffffffffffffffffffffffffffffffff16610f93611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614610ff757610fb6611479565b15610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90614035565b60405180910390fd5b5b6000611001610f17565b9050600061100e84611548565b90506115b3838361101f919061437e565b1115611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790613ff5565b60405180910390fd5b6115b38211156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906140d5565b60405180910390fd5b600e548311156110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190613f15565b60405180910390fd5b600e5483826110f9919061437e565b111561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614195565b60405180910390fd5b61114383610c7f565b341015611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90614175565b60405180910390fd5b60005b838110156111ac576111998561245e565b80806111a4906145be565b915050611188565b5050505050565b6111ce83838360405180602001604052806000815250611a53565b505050565b6111e46111de611e9c565b8261210e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90614235565b60405180910390fd5b61122c816124bf565b50565b6060600061123c83611548565b905060008167ffffffffffffffff81111561125a57611259614723565b5b6040519080825280602002602001820160405280156112885781602001602082028036833780820191505090505b50905060005b828110156112d2576112a08582610ca2565b8282815181106112b3576112b26146f4565b5b60200260200101818152505080806112ca906145be565b91505061128e565b508092505050919050565b60006112e7610c12565b8210611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614215565b60405180910390fd5b6008828154811061133c5761133b6146f4565b5b90600052602060002001549050919050565b611356611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611374611756565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614115565b60405180910390fd5b80600e8190555050565b6113dc611e9c565b73ffffffffffffffffffffffffffffffffffffffff166113fa611756565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614115565b60405180910390fd5b80600d908051906020019061146692919061339c565b5050565b6000611474610f17565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090614095565b60405180910390fd5b80915050919050565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614075565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611608611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611626611756565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614115565b60405180910390fd5b61168660006125d0565b565b611690611e9c565b73ffffffffffffffffffffffffffffffffffffffff166116ae611756565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614115565b60405180910390fd5b60004790506000811161171657600080fd5b611742600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612696565b50565b600e5481565b66b1a2bc2ec5000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611788611e9c565b73ffffffffffffffffffffffffffffffffffffffff166117a6611756565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390614115565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461184f9061455b565b80601f016020809104026020016040519081016040528092919081815260200182805461187b9061455b565b80156118c85780601f1061189d576101008083540402835291602001916118c8565b820191906000526020600020905b8154815290600101906020018083116118ab57829003601f168201915b5050505050905090565b6118da611e9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613fd5565b60405180910390fd5b8060056000611955611e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a02611e9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a479190613e98565b60405180910390a35050565b611a64611a5e611e9c565b8361210e565b611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a906141f5565b60405180910390fd5b611aaf84848484612747565b50505050565b6060611ac082611fe9565b611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614155565b60405180910390fd5b6000611b096127a3565b90506000815111611b295760405180602001604052806000815250611b54565b80611b3384612835565b604051602001611b44929190613dd6565b6040516020818303038152906040525b915050919050565b611b64611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611b82611756565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90614115565b60405180910390fd5b80600b8190555050565b600d8054611bef9061455b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1b9061455b565b8015611c685780601f10611c3d57610100808354040283529160200191611c68565b820191906000526020600020905b815481529060010190602001808311611c4b57829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d32611e9c565b73ffffffffffffffffffffffffffffffffffffffff16611d50611756565b73ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90613f75565b60405180910390fd5b611e1f816125d0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e955750611e9482612996565b5b9050919050565b600033905090565b611eac611479565b15611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee390614035565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f30611e9c565b604051611f3d9190613e0f565b60405180910390a1565b611f4f611479565b611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613ef5565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd2611e9c565b604051611fdf9190613e0f565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120c883611490565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061211982611fe9565b612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614015565b60405180910390fd5b600061216383611490565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121d257508373ffffffffffffffffffffffffffffffffffffffff166121ba84610a6b565b73ffffffffffffffffffffffffffffffffffffffff16145b806121e357506121e28185611c96565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661220c82611490565b73ffffffffffffffffffffffffffffffffffffffff1614612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613fb5565b60405180910390fd5b6122dd838383612a78565b6122e8600082612055565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612338919061445f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238f919061437e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836124569190614405565b905092915050565b6000612468610f17565b90506001600b600082825461247d919061437e565b9250508190555061248e8282612a88565b807f1cc33b40fc92a50725bf9e83051b7ecbd67782398dd270114070d4a546e02c1860405160405180910390a25050565b60006124ca82611490565b90506124d881600084612a78565b6124e3600083612055565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612533919061445f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126bc90613dfa565b60006040518083038185875af1925050503d80600081146126f9576040519150601f19603f3d011682016040523d82523d6000602084013e6126fe565b606091505b5050905080612742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612739906141d5565b60405180910390fd5b505050565b6127528484846121ec565b61275e84848484612aa6565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613f55565b60405180910390fd5b50505050565b6060600d80546127b29061455b565b80601f01602080910402602001604051908101604052809291908181526020018280546127de9061455b565b801561282b5780601f106128005761010080835404028352916020019161282b565b820191906000526020600020905b81548152906001019060200180831161280e57829003601f168201915b5050505050905090565b6060600082141561287d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612991565b600082905060005b600082146128af578080612898906145be565b915050600a826128a891906143d4565b9150612885565b60008167ffffffffffffffff8111156128cb576128ca614723565b5b6040519080825280601f01601f1916602001820160405280156128fd5781602001600182028036833780820191505090505b5090505b6000851461298a57600182612916919061445f565b9150600a856129259190614607565b6030612931919061437e565b60f81b818381518110612947576129466146f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561298391906143d4565b9450612901565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a6157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a715750612a7082612c3d565b5b9050919050565b612a83838383612ca7565b505050565b612aa2828260405180602001604052806000815250612d41565b5050565b6000612ac78473ffffffffffffffffffffffffffffffffffffffff16612d9c565b15612c30578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612af0611e9c565b8786866040518563ffffffff1660e01b8152600401612b129493929190613e2a565b602060405180830381600087803b158015612b2c57600080fd5b505af1925050508015612b5d57506040513d601f19601f82011682018060405250810190612b5a91906137e7565b60015b612be0573d8060008114612b8d576040519150601f19603f3d011682016040523d82523d6000602084013e612b92565b606091505b50600081511415612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf90613f55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c35565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cb2838383612daf565b612cba611756565b73ffffffffffffffffffffffffffffffffffffffff16612cd8611e9c565b73ffffffffffffffffffffffffffffffffffffffff1614612d3c57612cfb611479565b15612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290613ed5565b60405180910390fd5b5b505050565b612d4b8383612ec3565b612d586000848484612aa6565b612d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8e90613f55565b60405180910390fd5b505050565b600080823b905060008111915050919050565b612dba838383613091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfd57612df881613096565b612e3c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e3b57612e3a83826130df565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7f57612e7a8161324c565b612ebe565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ebd57612ebc828261331d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2a906140b5565b60405180910390fd5b612f3c81611fe9565b15612f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7390613f95565b60405180910390fd5b612f8860008383612a78565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd8919061437e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130ec84611548565b6130f6919061445f565b90506000600760008481526020019081526020016000205490508181146131db576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613260919061445f565b90506000600960008481526020019081526020016000205490506000600883815481106132905761328f6146f4565b5b9060005260206000200154905080600883815481106132b2576132b16146f4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613301576133006146c5565b5b6001900381819060005260206000200160009055905550505050565b600061332883611548565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546133a89061455b565b90600052602060002090601f0160209004810192826133ca5760008555613411565b82601f106133e357805160ff1916838001178555613411565b82800160010185558215613411579182015b828111156134105782518255916020019190600101906133f5565b5b50905061341e9190613422565b5090565b5b8082111561343b576000816000905550600101613423565b5090565b600061345261344d84614295565b614270565b90508281526020810184848401111561346e5761346d614757565b5b613479848285614519565b509392505050565b600061349461348f846142c6565b614270565b9050828152602081018484840111156134b0576134af614757565b5b6134bb848285614519565b509392505050565b6000813590506134d281614e56565b92915050565b6000813590506134e781614e6d565b92915050565b6000813590506134fc81614e84565b92915050565b60008135905061351181614e9b565b92915050565b60008151905061352681614e9b565b92915050565b600082601f83011261354157613540614752565b5b813561355184826020860161343f565b91505092915050565b600082601f83011261356f5761356e614752565b5b813561357f848260208601613481565b91505092915050565b60008135905061359781614eb2565b92915050565b6000602082840312156135b3576135b2614761565b5b60006135c1848285016134c3565b91505092915050565b6000602082840312156135e0576135df614761565b5b60006135ee848285016134d8565b91505092915050565b6000806040838503121561360e5761360d614761565b5b600061361c858286016134c3565b925050602061362d858286016134c3565b9150509250929050565b6000806000606084860312156136505761364f614761565b5b600061365e868287016134c3565b935050602061366f868287016134c3565b925050604061368086828701613588565b9150509250925092565b600080600080608085870312156136a4576136a3614761565b5b60006136b2878288016134c3565b94505060206136c3878288016134c3565b93505060406136d487828801613588565b925050606085013567ffffffffffffffff8111156136f5576136f461475c565b5b6137018782880161352c565b91505092959194509250565b6000806040838503121561372457613723614761565b5b6000613732858286016134c3565b9250506020613743858286016134ed565b9150509250929050565b6000806040838503121561376457613763614761565b5b6000613772858286016134c3565b925050602061378385828601613588565b9150509250929050565b6000602082840312156137a3576137a2614761565b5b60006137b1848285016134ed565b91505092915050565b6000602082840312156137d0576137cf614761565b5b60006137de84828501613502565b91505092915050565b6000602082840312156137fd576137fc614761565b5b600061380b84828501613517565b91505092915050565b60006020828403121561382a57613829614761565b5b600082013567ffffffffffffffff8111156138485761384761475c565b5b6138548482850161355a565b91505092915050565b60006020828403121561387357613872614761565b5b600061388184828501613588565b91505092915050565b60006138968383613db8565b60208301905092915050565b6138ab81614493565b82525050565b60006138bc82614307565b6138c68185614335565b93506138d1836142f7565b8060005b838110156139025781516138e9888261388a565b97506138f483614328565b9250506001810190506138d5565b5085935050505092915050565b613918816144b7565b82525050565b600061392982614312565b6139338185614346565b9350613943818560208601614528565b61394c81614766565b840191505092915050565b60006139628261431d565b61396c8185614362565b935061397c818560208601614528565b61398581614766565b840191505092915050565b600061399b8261431d565b6139a58185614373565b93506139b5818560208601614528565b80840191505092915050565b60006139ce602b83614362565b91506139d982614777565b604082019050919050565b60006139f1601483614362565b91506139fc826147c6565b602082019050919050565b6000613a14600e83614362565b9150613a1f826147ef565b602082019050919050565b6000613a37602b83614362565b9150613a4282614818565b604082019050919050565b6000613a5a603283614362565b9150613a6582614867565b604082019050919050565b6000613a7d602683614362565b9150613a88826148b6565b604082019050919050565b6000613aa0601c83614362565b9150613aab82614905565b602082019050919050565b6000613ac3602483614362565b9150613ace8261492e565b604082019050919050565b6000613ae6601983614362565b9150613af18261497d565b602082019050919050565b6000613b09600983614362565b9150613b14826149a6565b602082019050919050565b6000613b2c602c83614362565b9150613b37826149cf565b604082019050919050565b6000613b4f601083614362565b9150613b5a82614a1e565b602082019050919050565b6000613b72603883614362565b9150613b7d82614a47565b604082019050919050565b6000613b95602a83614362565b9150613ba082614a96565b604082019050919050565b6000613bb8602983614362565b9150613bc382614ae5565b604082019050919050565b6000613bdb602083614362565b9150613be682614b34565b602082019050919050565b6000613bfe600883614362565b9150613c0982614b5d565b602082019050919050565b6000613c21602c83614362565b9150613c2c82614b86565b604082019050919050565b6000613c44602083614362565b9150613c4f82614bd5565b602082019050919050565b6000613c67602983614362565b9150613c7282614bfe565b604082019050919050565b6000613c8a602f83614362565b9150613c9582614c4d565b604082019050919050565b6000613cad601183614362565b9150613cb882614c9c565b602082019050919050565b6000613cd0601583614362565b9150613cdb82614cc5565b602082019050919050565b6000613cf3602183614362565b9150613cfe82614cee565b604082019050919050565b6000613d16600083614357565b9150613d2182614d3d565b600082019050919050565b6000613d39601083614362565b9150613d4482614d40565b602082019050919050565b6000613d5c603183614362565b9150613d6782614d69565b604082019050919050565b6000613d7f602c83614362565b9150613d8a82614db8565b604082019050919050565b6000613da2603083614362565b9150613dad82614e07565b604082019050919050565b613dc18161450f565b82525050565b613dd08161450f565b82525050565b6000613de28285613990565b9150613dee8284613990565b91508190509392505050565b6000613e0582613d09565b9150819050919050565b6000602082019050613e2460008301846138a2565b92915050565b6000608082019050613e3f60008301876138a2565b613e4c60208301866138a2565b613e596040830185613dc7565b8181036060830152613e6b818461391e565b905095945050505050565b60006020820190508181036000830152613e9081846138b1565b905092915050565b6000602082019050613ead600083018461390f565b92915050565b60006020820190508181036000830152613ecd8184613957565b905092915050565b60006020820190508181036000830152613eee816139c1565b9050919050565b60006020820190508181036000830152613f0e816139e4565b9050919050565b60006020820190508181036000830152613f2e81613a07565b9050919050565b60006020820190508181036000830152613f4e81613a2a565b9050919050565b60006020820190508181036000830152613f6e81613a4d565b9050919050565b60006020820190508181036000830152613f8e81613a70565b9050919050565b60006020820190508181036000830152613fae81613a93565b9050919050565b60006020820190508181036000830152613fce81613ab6565b9050919050565b60006020820190508181036000830152613fee81613ad9565b9050919050565b6000602082019050818103600083015261400e81613afc565b9050919050565b6000602082019050818103600083015261402e81613b1f565b9050919050565b6000602082019050818103600083015261404e81613b42565b9050919050565b6000602082019050818103600083015261406e81613b65565b9050919050565b6000602082019050818103600083015261408e81613b88565b9050919050565b600060208201905081810360008301526140ae81613bab565b9050919050565b600060208201905081810360008301526140ce81613bce565b9050919050565b600060208201905081810360008301526140ee81613bf1565b9050919050565b6000602082019050818103600083015261410e81613c14565b9050919050565b6000602082019050818103600083015261412e81613c37565b9050919050565b6000602082019050818103600083015261414e81613c5a565b9050919050565b6000602082019050818103600083015261416e81613c7d565b9050919050565b6000602082019050818103600083015261418e81613ca0565b9050919050565b600060208201905081810360008301526141ae81613cc3565b9050919050565b600060208201905081810360008301526141ce81613ce6565b9050919050565b600060208201905081810360008301526141ee81613d2c565b9050919050565b6000602082019050818103600083015261420e81613d4f565b9050919050565b6000602082019050818103600083015261422e81613d72565b9050919050565b6000602082019050818103600083015261424e81613d95565b9050919050565b600060208201905061426a6000830184613dc7565b92915050565b600061427a61428b565b9050614286828261458d565b919050565b6000604051905090565b600067ffffffffffffffff8211156142b0576142af614723565b5b6142b982614766565b9050602081019050919050565b600067ffffffffffffffff8211156142e1576142e0614723565b5b6142ea82614766565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143898261450f565b91506143948361450f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143c9576143c8614638565b5b828201905092915050565b60006143df8261450f565b91506143ea8361450f565b9250826143fa576143f9614667565b5b828204905092915050565b60006144108261450f565b915061441b8361450f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561445457614453614638565b5b828202905092915050565b600061446a8261450f565b91506144758361450f565b92508282101561448857614487614638565b5b828203905092915050565b600061449e826144ef565b9050919050565b60006144b0826144ef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561454657808201518184015260208101905061452b565b83811115614555576000848401525b50505050565b6000600282049050600182168061457357607f821691505b6020821081141561458757614586614696565b5b50919050565b61459682614766565b810181811067ffffffffffffffff821117156145b5576145b4614723565b5b80604052505050565b60006145c98261450f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145fc576145fb614638565b5b600182019050919050565b60006146128261450f565b915061461d8361450f565b92508261462d5761462c614667565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4d6178206c696d69742070657220616464726573730000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614e5f81614493565b8114614e6a57600080fd5b50565b614e76816144a5565b8114614e8157600080fd5b50565b614e8d816144b7565b8114614e9857600080fd5b50565b614ea4816144c3565b8114614eaf57600080fd5b50565b614ebb8161450f565b8114614ec657600080fd5b5056fea2646970667358221220c90ba35082b20f15db974b98a5a6058d2b9314b23a9225206c7208570ee8c90964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc200000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176657273652e636f6d2f6170692f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://secure.legendsofthemetaverse.com/api/
Arg [1] : creator (address): 0x0EB0c44C8F4D8b1f5EA773C50D79055350a70dC2
Arg [2] : max_mint (uint256): 2000
Arg [3] : token_start (uint256): 1040

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc2
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000410
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [5] : 68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176
Arg [6] : 657273652e636f6d2f6170692f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

235:4352:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4397:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3602:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2709:90:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1577:113:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2375:104:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1245:256:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1914:262:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1151:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1353:556;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5285:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;456:245:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3245:349:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1767:233:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2811:88:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3136:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1254:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1072:86:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;352:38:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1850:208:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:13;;;;;;;;;;;;;:::i;:::-;;3764:189:12;;;;;;;;;;;;;:::i;:::-;;555:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;397:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;999:87:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3019:112:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2595:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4278:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2770:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2907:100:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;522:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;486:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4397:179:12;4508:4;4532:36;4556:11;4532:23;:36::i;:::-;4525:43;;4397:179;;;:::o;3602:154::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3666:4:12::1;3659:11;;:3;:11;;;3655:73;;;3687:8;:6;:8::i;:::-;3710:7;;3655:73;3738:10;:8;:10::i;:::-;1290:1:13;3602:154:12::0;:::o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;2709:90:12:-;2753:7;2780:11;;2773:18;;2709:90;:::o;1577:113:5:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:3:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;2375:104:12:-;2427:7;2454:17;2464:6;429:10;2454:9;;:17;;;;:::i;:::-;2447:24;;2375:104;;;:::o;1245:256:5:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;1914:262:12:-;386:4;981:14;:12;:14::i;:::-;:25;;973:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1050:7;:5;:7::i;:::-;1034:23;;:12;:10;:12::i;:::-;:23;;;1030:94;;1083:8;:6;:8::i;:::-;1082:9;1074:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1030:94;1230:12:13::1;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1997:13:12::2;2013:14;:12;:14::i;:::-;1997:30;;386:4;2046:5;:16;;2038:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2091:9;2086:83;2110:6;2106:1;:10;2086:83;;;2138:19;2153:3;2138:14;:19::i;:::-;2118:3;;;;;:::i;:::-;;;;2086:83;;;;1986:190;1914:262:::0;;:::o;1151:95::-;1196:7;1223:15;;1216:22;;1151:95;:::o;1353:556::-;386:4;981:14;:12;:14::i;:::-;:25;;973:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1050:7;:5;:7::i;:::-;1034:23;;:12;:10;:12::i;:::-;:23;;;1030:94;;1083:8;:6;:8::i;:::-;1082:9;1074:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1030:94;1433:13:::1;1449:14;:12;:14::i;:::-;1433:30;;1468:18;1489:14;1499:3;1489:9;:14::i;:::-;1468:35;;386:4;1530:6;1522:5;:14;;;;:::i;:::-;:25;;1514:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;386:4;1580:5;:16;;1572:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;1638:11;;1628:6;:21;;1620:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1704:11;;1694:6;1681:10;:19;;;;:::i;:::-;:34;;1673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1773:13;1779:6;1773:5;:13::i;:::-;1760:9;:26;;1752:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1824:9;1819:83;1843:6;1839:1;:10;1819:83;;;1871:19;1886:3;1871:14;:19::i;:::-;1851:3;;;;;:::i;:::-;;;;1819:83;;;;1422:487;;1353:556:::0;;:::o;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;456:245:4:-;574:41;593:12;:10;:12::i;:::-;607:7;574:18;:41::i;:::-;566:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;679:14;685:7;679:5;:14::i;:::-;456:245;:::o;3245:349:12:-;3307:16;3336:18;3357:17;3367:6;3357:9;:17::i;:::-;3336:38;;3385:25;3427:10;3413:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3385:53;;3454:9;3449:112;3473:10;3469:1;:14;3449:112;;;3519:30;3539:6;3547:1;3519:19;:30::i;:::-;3505:8;3514:1;3505:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;3485:3;;;;;:::i;:::-;;;;3449:112;;;;3578:8;3571:15;;;;3245:349;;;:::o;1767:233:5:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;2811:88:12:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2887:4:12::1;2873:11;:18;;;;2811:88:::0;:::o;3136:101::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3222:7:12::1;3207:12;:22;;;;;;;;;;;;:::i;:::-;;3136:101:::0;:::o;1254:91::-;1296:7;1323:14;:12;:14::i;:::-;1316:21;;1254:91;:::o;1072:86:14:-;1119:4;1143:7;;;;;;;;;;;1136:14;;1072:86;:::o;2120:239:3:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;352:38:12:-;386:4;352:38;:::o;1850:208:3:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3764:189:12:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3815:15:12::1;3833:21;3815:39;;3883:1;3873:7;:11;3865:20;;;::::0;::::1;;3896:49;3907:14;;;;;;;;;;;3923:21;3896:10;:49::i;:::-;3804:149;3764:189::o:0;555:26::-;;;;:::o;397:42::-;429:10;397:42;:::o;999:87:13:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;3019:112:12:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3116:7:12::1;3099:14;;:24;;;;;;;;;;;;;;;;;;3019:112:::0;:::o;2595:104:3:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;4278:295::-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;5541:328::-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;;;2770:334;;;:::o;2907:100:12:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2991:8:12::1;2973:15;:26;;;;2907:100:::0;:::o;522:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;486:29::-;;;;;;;;;;;;;:::o;4644:164:3:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;937:224:5:-;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;1872:118:14:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1942:4:::1;1932:7;;:14;;;;;;;;;;;;;;;;;;1962:20;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2200:5:::1;2190:7;;:15;;;;;;;;;;;;;;;;;;2221:22;2230:12;:10;:12::i;:::-;2221:22;;;;;;:::i;:::-;;;;;;;;2131:120::o:0;7379:127:3:-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;11361:174::-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;3501:98:15:-;3559:7;3590:1;3586;:5;;;;:::i;:::-;3579:12;;3501:98;;;;:::o;2185:181:12:-;2241:7;2251:14;:12;:14::i;:::-;2241:24;;2295:1;2276:15;;:20;;;;;;;:::i;:::-;;;;;;;;2307:18;2317:3;2322:2;2307:9;:18::i;:::-;2355:2;2341:17;;;;;;;;;;2230:136;2185:181;:::o;9968:360:3:-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;10231:1;10211:9;:16;10221:5;10211:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;10250:7;:16;10258:7;10250:16;;;;;;;;;;;;10243:23;;;;;;;;;;;10312:7;10308:1;10284:36;;10293:5;10284:36;;;;;;;;;;;;10017:311;9968:360;:::o;2099:173:13:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;3961:181:12:-;4036:12;4054:8;:13;;4075:7;4054:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4035:52;;;4106:7;4098:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4024:118;3961:181;;:::o;6751:315:3:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;2487:113:12:-;2547:13;2580:12;2573:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2487:113;:::o;288:723:16:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;1481:305:3:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;4150:239:12:-;4336:45;4363:4;4369:2;4373:7;4336:26;:45::i;:::-;4150:239;;;:::o;8363:110:3:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;12100:803::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;787:157:2:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;633:328:6:-;777:45;804:4;810:2;814:7;777:26;:45::i;:::-;853:7;:5;:7::i;:::-;837:23;;:12;:10;:12::i;:::-;:23;;;833:121;;886:8;:6;:8::i;:::-;885:9;877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;833:121;633:328;;;:::o;8700:321:3:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;2613:589:5:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;9357:382:3:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;13475:126::-;;;;:::o;3925:164:5:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:17:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1331:5;1369:6;1356:20;1347:29;;1385:32;1411:5;1385:32;:::i;:::-;1286:137;;;;:::o;1429:141::-;1485:5;1516:6;1510:13;1501:22;;1532:32;1558:5;1532:32;:::i;:::-;1429:141;;;;:::o;1589:338::-;1644:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:122;;1701:79;;:::i;:::-;1660:122;1818:6;1805:20;1843:78;1917:3;1909:6;1902:4;1894:6;1890:17;1843:78;:::i;:::-;1834:87;;1650:277;1589:338;;;;:::o;1947:340::-;2003:5;2052:3;2045:4;2037:6;2033:17;2029:27;2019:122;;2060:79;;:::i;:::-;2019:122;2177:6;2164:20;2202:79;2277:3;2269:6;2262:4;2254:6;2250:17;2202:79;:::i;:::-;2193:88;;2009:278;1947:340;;;;:::o;2293:139::-;2339:5;2377:6;2364:20;2355:29;;2393:33;2420:5;2393:33;:::i;:::-;2293:139;;;;:::o;2438:329::-;2497:6;2546:2;2534:9;2525:7;2521:23;2517:32;2514:119;;;2552:79;;:::i;:::-;2514:119;2672:1;2697:53;2742:7;2733:6;2722:9;2718:22;2697:53;:::i;:::-;2687:63;;2643:117;2438:329;;;;:::o;2773:345::-;2840:6;2889:2;2877:9;2868:7;2864:23;2860:32;2857:119;;;2895:79;;:::i;:::-;2857:119;3015:1;3040:61;3093:7;3084:6;3073:9;3069:22;3040:61;:::i;:::-;3030:71;;2986:125;2773:345;;;;:::o;3124:474::-;3192:6;3200;3249:2;3237:9;3228:7;3224:23;3220:32;3217:119;;;3255:79;;:::i;:::-;3217:119;3375:1;3400:53;3445:7;3436:6;3425:9;3421:22;3400:53;:::i;:::-;3390:63;;3346:117;3502:2;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3473:118;3124:474;;;;;:::o;3604:619::-;3681:6;3689;3697;3746:2;3734:9;3725:7;3721:23;3717:32;3714:119;;;3752:79;;:::i;:::-;3714:119;3872:1;3897:53;3942:7;3933:6;3922:9;3918:22;3897:53;:::i;:::-;3887:63;;3843:117;3999:2;4025:53;4070:7;4061:6;4050:9;4046:22;4025:53;:::i;:::-;4015:63;;3970:118;4127:2;4153:53;4198:7;4189:6;4178:9;4174:22;4153:53;:::i;:::-;4143:63;;4098:118;3604:619;;;;;:::o;4229:943::-;4324:6;4332;4340;4348;4397:3;4385:9;4376:7;4372:23;4368:33;4365:120;;;4404:79;;:::i;:::-;4365:120;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4622:118;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4935:2;4924:9;4920:18;4907:32;4966:18;4958:6;4955:30;4952:117;;;4988:79;;:::i;:::-;4952:117;5093:62;5147:7;5138:6;5127:9;5123:22;5093:62;:::i;:::-;5083:72;;4878:287;4229:943;;;;;;;:::o;5178:468::-;5243:6;5251;5300:2;5288:9;5279:7;5275:23;5271:32;5268:119;;;5306:79;;:::i;:::-;5268:119;5426:1;5451:53;5496:7;5487:6;5476:9;5472:22;5451:53;:::i;:::-;5441:63;;5397:117;5553:2;5579:50;5621:7;5612:6;5601:9;5597:22;5579:50;:::i;:::-;5569:60;;5524:115;5178:468;;;;;:::o;5652:474::-;5720:6;5728;5777:2;5765:9;5756:7;5752:23;5748:32;5745:119;;;5783:79;;:::i;:::-;5745:119;5903:1;5928:53;5973:7;5964:6;5953:9;5949:22;5928:53;:::i;:::-;5918:63;;5874:117;6030:2;6056:53;6101:7;6092:6;6081:9;6077:22;6056:53;:::i;:::-;6046:63;;6001:118;5652:474;;;;;:::o;6132:323::-;6188:6;6237:2;6225:9;6216:7;6212:23;6208:32;6205:119;;;6243:79;;:::i;:::-;6205:119;6363:1;6388:50;6430:7;6421:6;6410:9;6406:22;6388:50;:::i;:::-;6378:60;;6334:114;6132:323;;;;:::o;6461:327::-;6519:6;6568:2;6556:9;6547:7;6543:23;6539:32;6536:119;;;6574:79;;:::i;:::-;6536:119;6694:1;6719:52;6763:7;6754:6;6743:9;6739:22;6719:52;:::i;:::-;6709:62;;6665:116;6461:327;;;;:::o;6794:349::-;6863:6;6912:2;6900:9;6891:7;6887:23;6883:32;6880:119;;;6918:79;;:::i;:::-;6880:119;7038:1;7063:63;7118:7;7109:6;7098:9;7094:22;7063:63;:::i;:::-;7053:73;;7009:127;6794:349;;;;:::o;7149:509::-;7218:6;7267:2;7255:9;7246:7;7242:23;7238:32;7235:119;;;7273:79;;:::i;:::-;7235:119;7421:1;7410:9;7406:17;7393:31;7451:18;7443:6;7440:30;7437:117;;;7473:79;;:::i;:::-;7437:117;7578:63;7633:7;7624:6;7613:9;7609:22;7578:63;:::i;:::-;7568:73;;7364:287;7149:509;;;;:::o;7664:329::-;7723:6;7772:2;7760:9;7751:7;7747:23;7743:32;7740:119;;;7778:79;;:::i;:::-;7740:119;7898:1;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7869:117;7664:329;;;;:::o;7999:179::-;8068:10;8089:46;8131:3;8123:6;8089:46;:::i;:::-;8167:4;8162:3;8158:14;8144:28;;7999:179;;;;:::o;8184:118::-;8271:24;8289:5;8271:24;:::i;:::-;8266:3;8259:37;8184:118;;:::o;8338:732::-;8457:3;8486:54;8534:5;8486:54;:::i;:::-;8556:86;8635:6;8630:3;8556:86;:::i;:::-;8549:93;;8666:56;8716:5;8666:56;:::i;:::-;8745:7;8776:1;8761:284;8786:6;8783:1;8780:13;8761:284;;;8862:6;8856:13;8889:63;8948:3;8933:13;8889:63;:::i;:::-;8882:70;;8975:60;9028:6;8975:60;:::i;:::-;8965:70;;8821:224;8808:1;8805;8801:9;8796:14;;8761:284;;;8765:14;9061:3;9054:10;;8462:608;;;8338:732;;;;:::o;9076:109::-;9157:21;9172:5;9157:21;:::i;:::-;9152:3;9145:34;9076:109;;:::o;9191:360::-;9277:3;9305:38;9337:5;9305:38;:::i;:::-;9359:70;9422:6;9417:3;9359:70;:::i;:::-;9352:77;;9438:52;9483:6;9478:3;9471:4;9464:5;9460:16;9438:52;:::i;:::-;9515:29;9537:6;9515:29;:::i;:::-;9510:3;9506:39;9499:46;;9281:270;9191:360;;;;:::o;9557:364::-;9645:3;9673:39;9706:5;9673:39;:::i;:::-;9728:71;9792:6;9787:3;9728:71;:::i;:::-;9721:78;;9808:52;9853:6;9848:3;9841:4;9834:5;9830:16;9808:52;:::i;:::-;9885:29;9907:6;9885:29;:::i;:::-;9880:3;9876:39;9869:46;;9649:272;9557:364;;;;:::o;9927:377::-;10033:3;10061:39;10094:5;10061:39;:::i;:::-;10116:89;10198:6;10193:3;10116:89;:::i;:::-;10109:96;;10214:52;10259:6;10254:3;10247:4;10240:5;10236:16;10214:52;:::i;:::-;10291:6;10286:3;10282:16;10275:23;;10037:267;9927:377;;;;:::o;10310:366::-;10452:3;10473:67;10537:2;10532:3;10473:67;:::i;:::-;10466:74;;10549:93;10638:3;10549:93;:::i;:::-;10667:2;10662:3;10658:12;10651:19;;10310:366;;;:::o;10682:::-;10824:3;10845:67;10909:2;10904:3;10845:67;:::i;:::-;10838:74;;10921:93;11010:3;10921:93;:::i;:::-;11039:2;11034:3;11030:12;11023:19;;10682:366;;;:::o;11054:::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11054:366;;;:::o;11426:::-;11568:3;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11426:366;;;:::o;11798:::-;11940:3;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11798:366;;;:::o;12170:::-;12312:3;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12170:366;;;:::o;12542:::-;12684:3;12705:67;12769:2;12764:3;12705:67;:::i;:::-;12698:74;;12781:93;12870:3;12781:93;:::i;:::-;12899:2;12894:3;12890:12;12883:19;;12542:366;;;:::o;12914:::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;12914:366;;;:::o;13286:::-;13428:3;13449:67;13513:2;13508:3;13449:67;:::i;:::-;13442:74;;13525:93;13614:3;13525:93;:::i;:::-;13643:2;13638:3;13634:12;13627:19;;13286:366;;;:::o;13658:365::-;13800:3;13821:66;13885:1;13880:3;13821:66;:::i;:::-;13814:73;;13896:93;13985:3;13896:93;:::i;:::-;14014:2;14009:3;14005:12;13998:19;;13658:365;;;:::o;14029:366::-;14171:3;14192:67;14256:2;14251:3;14192:67;:::i;:::-;14185:74;;14268:93;14357:3;14268:93;:::i;:::-;14386:2;14381:3;14377:12;14370:19;;14029:366;;;:::o;14401:::-;14543:3;14564:67;14628:2;14623:3;14564:67;:::i;:::-;14557:74;;14640:93;14729:3;14640:93;:::i;:::-;14758:2;14753:3;14749:12;14742:19;;14401:366;;;:::o;14773:::-;14915:3;14936:67;15000:2;14995:3;14936:67;:::i;:::-;14929:74;;15012:93;15101:3;15012:93;:::i;:::-;15130:2;15125:3;15121:12;15114:19;;14773:366;;;:::o;15145:::-;15287:3;15308:67;15372:2;15367:3;15308:67;:::i;:::-;15301:74;;15384:93;15473:3;15384:93;:::i;:::-;15502:2;15497:3;15493:12;15486:19;;15145:366;;;:::o;15517:::-;15659:3;15680:67;15744:2;15739:3;15680:67;:::i;:::-;15673:74;;15756:93;15845:3;15756:93;:::i;:::-;15874:2;15869:3;15865:12;15858:19;;15517:366;;;:::o;15889:::-;16031:3;16052:67;16116:2;16111:3;16052:67;:::i;:::-;16045:74;;16128:93;16217:3;16128:93;:::i;:::-;16246:2;16241:3;16237:12;16230:19;;15889:366;;;:::o;16261:365::-;16403:3;16424:66;16488:1;16483:3;16424:66;:::i;:::-;16417:73;;16499:93;16588:3;16499:93;:::i;:::-;16617:2;16612:3;16608:12;16601:19;;16261:365;;;:::o;16632:366::-;16774:3;16795:67;16859:2;16854:3;16795:67;:::i;:::-;16788:74;;16871:93;16960:3;16871:93;:::i;:::-;16989:2;16984:3;16980:12;16973:19;;16632:366;;;:::o;17004:::-;17146:3;17167:67;17231:2;17226:3;17167:67;:::i;:::-;17160:74;;17243:93;17332:3;17243:93;:::i;:::-;17361:2;17356:3;17352:12;17345:19;;17004:366;;;:::o;17376:::-;17518:3;17539:67;17603:2;17598:3;17539:67;:::i;:::-;17532:74;;17615:93;17704:3;17615:93;:::i;:::-;17733:2;17728:3;17724:12;17717:19;;17376:366;;;:::o;17748:::-;17890:3;17911:67;17975:2;17970:3;17911:67;:::i;:::-;17904:74;;17987:93;18076:3;17987:93;:::i;:::-;18105:2;18100:3;18096:12;18089:19;;17748:366;;;:::o;18120:::-;18262:3;18283:67;18347:2;18342:3;18283:67;:::i;:::-;18276:74;;18359:93;18448:3;18359:93;:::i;:::-;18477:2;18472:3;18468:12;18461:19;;18120:366;;;:::o;18492:::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:::-;19006:3;19027:67;19091:2;19086:3;19027:67;:::i;:::-;19020:74;;19103:93;19192:3;19103:93;:::i;:::-;19221:2;19216:3;19212:12;19205:19;;18864:366;;;:::o;19236:398::-;19395:3;19416:83;19497:1;19492:3;19416:83;:::i;:::-;19409:90;;19508:93;19597:3;19508:93;:::i;:::-;19626:1;19621:3;19617:11;19610:18;;19236:398;;;:::o;19640:366::-;19782:3;19803:67;19867:2;19862:3;19803:67;:::i;:::-;19796:74;;19879:93;19968:3;19879:93;:::i;:::-;19997:2;19992:3;19988:12;19981:19;;19640:366;;;:::o;20012:::-;20154:3;20175:67;20239:2;20234:3;20175:67;:::i;:::-;20168:74;;20251:93;20340:3;20251:93;:::i;:::-;20369:2;20364:3;20360:12;20353:19;;20012:366;;;:::o;20384:::-;20526:3;20547:67;20611:2;20606:3;20547:67;:::i;:::-;20540:74;;20623:93;20712:3;20623:93;:::i;:::-;20741:2;20736:3;20732:12;20725:19;;20384:366;;;:::o;20756:::-;20898:3;20919:67;20983:2;20978:3;20919:67;:::i;:::-;20912:74;;20995:93;21084:3;20995:93;:::i;:::-;21113:2;21108:3;21104:12;21097:19;;20756:366;;;:::o;21128:108::-;21205:24;21223:5;21205:24;:::i;:::-;21200:3;21193:37;21128:108;;:::o;21242:118::-;21329:24;21347:5;21329:24;:::i;:::-;21324:3;21317:37;21242:118;;:::o;21366:435::-;21546:3;21568:95;21659:3;21650:6;21568:95;:::i;:::-;21561:102;;21680:95;21771:3;21762:6;21680:95;:::i;:::-;21673:102;;21792:3;21785:10;;21366:435;;;;;:::o;21807:379::-;21991:3;22013:147;22156:3;22013:147;:::i;:::-;22006:154;;22177:3;22170:10;;21807:379;;;:::o;22192:222::-;22285:4;22323:2;22312:9;22308:18;22300:26;;22336:71;22404:1;22393:9;22389:17;22380:6;22336:71;:::i;:::-;22192:222;;;;:::o;22420:640::-;22615:4;22653:3;22642:9;22638:19;22630:27;;22667:71;22735:1;22724:9;22720:17;22711:6;22667:71;:::i;:::-;22748:72;22816:2;22805:9;22801:18;22792:6;22748:72;:::i;:::-;22830;22898:2;22887:9;22883:18;22874:6;22830:72;:::i;:::-;22949:9;22943:4;22939:20;22934:2;22923:9;22919:18;22912:48;22977:76;23048:4;23039:6;22977:76;:::i;:::-;22969:84;;22420:640;;;;;;;:::o;23066:373::-;23209:4;23247:2;23236:9;23232:18;23224:26;;23296:9;23290:4;23286:20;23282:1;23271:9;23267:17;23260:47;23324:108;23427:4;23418:6;23324:108;:::i;:::-;23316:116;;23066:373;;;;:::o;23445:210::-;23532:4;23570:2;23559:9;23555:18;23547:26;;23583:65;23645:1;23634:9;23630:17;23621:6;23583:65;:::i;:::-;23445:210;;;;:::o;23661:313::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:78;23962:4;23953:6;23889:78;:::i;:::-;23881:86;;23661:313;;;;:::o;23980:419::-;24146:4;24184:2;24173:9;24169:18;24161:26;;24233:9;24227:4;24223:20;24219:1;24208:9;24204:17;24197:47;24261:131;24387:4;24261:131;:::i;:::-;24253:139;;23980:419;;;:::o;24405:::-;24571:4;24609:2;24598:9;24594:18;24586:26;;24658:9;24652:4;24648:20;24644:1;24633:9;24629:17;24622:47;24686:131;24812:4;24686:131;:::i;:::-;24678:139;;24405:419;;;:::o;24830:::-;24996:4;25034:2;25023:9;25019:18;25011:26;;25083:9;25077:4;25073:20;25069:1;25058:9;25054:17;25047:47;25111:131;25237:4;25111:131;:::i;:::-;25103:139;;24830:419;;;:::o;25255:::-;25421:4;25459:2;25448:9;25444:18;25436:26;;25508:9;25502:4;25498:20;25494:1;25483:9;25479:17;25472:47;25536:131;25662:4;25536:131;:::i;:::-;25528:139;;25255:419;;;:::o;25680:::-;25846:4;25884:2;25873:9;25869:18;25861:26;;25933:9;25927:4;25923:20;25919:1;25908:9;25904:17;25897:47;25961:131;26087:4;25961:131;:::i;:::-;25953:139;;25680:419;;;:::o;26105:::-;26271:4;26309:2;26298:9;26294:18;26286:26;;26358:9;26352:4;26348:20;26344:1;26333:9;26329:17;26322:47;26386:131;26512:4;26386:131;:::i;:::-;26378:139;;26105:419;;;:::o;26530:::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:131;26937:4;26811:131;:::i;:::-;26803:139;;26530:419;;;:::o;26955:::-;27121:4;27159:2;27148:9;27144:18;27136:26;;27208:9;27202:4;27198:20;27194:1;27183:9;27179:17;27172:47;27236:131;27362:4;27236:131;:::i;:::-;27228:139;;26955:419;;;:::o;27380:::-;27546:4;27584:2;27573:9;27569:18;27561:26;;27633:9;27627:4;27623:20;27619:1;27608:9;27604:17;27597:47;27661:131;27787:4;27661:131;:::i;:::-;27653:139;;27380:419;;;:::o;27805:::-;27971:4;28009:2;27998:9;27994:18;27986:26;;28058:9;28052:4;28048:20;28044:1;28033:9;28029:17;28022:47;28086:131;28212:4;28086:131;:::i;:::-;28078:139;;27805:419;;;:::o;28230:::-;28396:4;28434:2;28423:9;28419:18;28411:26;;28483:9;28477:4;28473:20;28469:1;28458:9;28454:17;28447:47;28511:131;28637:4;28511:131;:::i;:::-;28503:139;;28230:419;;;:::o;28655:::-;28821:4;28859:2;28848:9;28844:18;28836:26;;28908:9;28902:4;28898:20;28894:1;28883:9;28879:17;28872:47;28936:131;29062:4;28936:131;:::i;:::-;28928:139;;28655:419;;;:::o;29080:::-;29246:4;29284:2;29273:9;29269:18;29261:26;;29333:9;29327:4;29323:20;29319:1;29308:9;29304:17;29297:47;29361:131;29487:4;29361:131;:::i;:::-;29353:139;;29080:419;;;:::o;29505:::-;29671:4;29709:2;29698:9;29694:18;29686:26;;29758:9;29752:4;29748:20;29744:1;29733:9;29729:17;29722:47;29786:131;29912:4;29786:131;:::i;:::-;29778:139;;29505:419;;;:::o;29930:::-;30096:4;30134:2;30123:9;30119:18;30111:26;;30183:9;30177:4;30173:20;30169:1;30158:9;30154:17;30147:47;30211:131;30337:4;30211:131;:::i;:::-;30203:139;;29930:419;;;:::o;30355:::-;30521:4;30559:2;30548:9;30544:18;30536:26;;30608:9;30602:4;30598:20;30594:1;30583:9;30579:17;30572:47;30636:131;30762:4;30636:131;:::i;:::-;30628:139;;30355:419;;;:::o;30780:::-;30946:4;30984:2;30973:9;30969:18;30961:26;;31033:9;31027:4;31023:20;31019:1;31008:9;31004:17;30997:47;31061:131;31187:4;31061:131;:::i;:::-;31053:139;;30780:419;;;:::o;31205:::-;31371:4;31409:2;31398:9;31394:18;31386:26;;31458:9;31452:4;31448:20;31444:1;31433:9;31429:17;31422:47;31486:131;31612:4;31486:131;:::i;:::-;31478:139;;31205:419;;;:::o;31630:::-;31796:4;31834:2;31823:9;31819:18;31811:26;;31883:9;31877:4;31873:20;31869:1;31858:9;31854:17;31847:47;31911:131;32037:4;31911:131;:::i;:::-;31903:139;;31630:419;;;:::o;32055:::-;32221:4;32259:2;32248:9;32244:18;32236:26;;32308:9;32302:4;32298:20;32294:1;32283:9;32279:17;32272:47;32336:131;32462:4;32336:131;:::i;:::-;32328:139;;32055:419;;;:::o;32480:::-;32646:4;32684:2;32673:9;32669:18;32661:26;;32733:9;32727:4;32723:20;32719:1;32708:9;32704:17;32697:47;32761:131;32887:4;32761:131;:::i;:::-;32753:139;;32480:419;;;:::o;32905:::-;33071:4;33109:2;33098:9;33094:18;33086:26;;33158:9;33152:4;33148:20;33144:1;33133:9;33129:17;33122:47;33186:131;33312:4;33186:131;:::i;:::-;33178:139;;32905:419;;;:::o;33330:::-;33496:4;33534:2;33523:9;33519:18;33511:26;;33583:9;33577:4;33573:20;33569:1;33558:9;33554:17;33547:47;33611:131;33737:4;33611:131;:::i;:::-;33603:139;;33330:419;;;:::o;33755:::-;33921:4;33959:2;33948:9;33944:18;33936:26;;34008:9;34002:4;33998:20;33994:1;33983:9;33979:17;33972:47;34036:131;34162:4;34036:131;:::i;:::-;34028:139;;33755:419;;;:::o;34180:::-;34346:4;34384:2;34373:9;34369:18;34361:26;;34433:9;34427:4;34423:20;34419:1;34408:9;34404:17;34397:47;34461:131;34587:4;34461:131;:::i;:::-;34453:139;;34180:419;;;:::o;34605:::-;34771:4;34809:2;34798:9;34794:18;34786:26;;34858:9;34852:4;34848:20;34844:1;34833:9;34829:17;34822:47;34886:131;35012:4;34886:131;:::i;:::-;34878:139;;34605:419;;;:::o;35030:::-;35196:4;35234:2;35223:9;35219:18;35211:26;;35283:9;35277:4;35273:20;35269:1;35258:9;35254:17;35247:47;35311:131;35437:4;35311:131;:::i;:::-;35303:139;;35030:419;;;:::o;35455:::-;35621:4;35659:2;35648:9;35644:18;35636:26;;35708:9;35702:4;35698:20;35694:1;35683:9;35679:17;35672:47;35736:131;35862:4;35736:131;:::i;:::-;35728:139;;35455:419;;;:::o;35880:222::-;35973:4;36011:2;36000:9;35996:18;35988:26;;36024:71;36092:1;36081:9;36077:17;36068:6;36024:71;:::i;:::-;35880:222;;;;:::o;36108:129::-;36142:6;36169:20;;:::i;:::-;36159:30;;36198:33;36226:4;36218:6;36198:33;:::i;:::-;36108:129;;;:::o;36243:75::-;36276:6;36309:2;36303:9;36293:19;;36243:75;:::o;36324:307::-;36385:4;36475:18;36467:6;36464:30;36461:56;;;36497:18;;:::i;:::-;36461:56;36535:29;36557:6;36535:29;:::i;:::-;36527:37;;36619:4;36613;36609:15;36601:23;;36324:307;;;:::o;36637:308::-;36699:4;36789:18;36781:6;36778:30;36775:56;;;36811:18;;:::i;:::-;36775:56;36849:29;36871:6;36849:29;:::i;:::-;36841:37;;36933:4;36927;36923:15;36915:23;;36637:308;;;:::o;36951:132::-;37018:4;37041:3;37033:11;;37071:4;37066:3;37062:14;37054:22;;36951:132;;;:::o;37089:114::-;37156:6;37190:5;37184:12;37174:22;;37089:114;;;:::o;37209:98::-;37260:6;37294:5;37288:12;37278:22;;37209:98;;;:::o;37313:99::-;37365:6;37399:5;37393:12;37383:22;;37313:99;;;:::o;37418:113::-;37488:4;37520;37515:3;37511:14;37503:22;;37418:113;;;:::o;37537:184::-;37636:11;37670:6;37665:3;37658:19;37710:4;37705:3;37701:14;37686:29;;37537:184;;;;:::o;37727:168::-;37810:11;37844:6;37839:3;37832:19;37884:4;37879:3;37875:14;37860:29;;37727:168;;;;:::o;37901:147::-;38002:11;38039:3;38024:18;;37901:147;;;;:::o;38054:169::-;38138:11;38172:6;38167:3;38160:19;38212:4;38207:3;38203:14;38188:29;;38054:169;;;;:::o;38229:148::-;38331:11;38368:3;38353:18;;38229:148;;;;:::o;38383:305::-;38423:3;38442:20;38460:1;38442:20;:::i;:::-;38437:25;;38476:20;38494:1;38476:20;:::i;:::-;38471:25;;38630:1;38562:66;38558:74;38555:1;38552:81;38549:107;;;38636:18;;:::i;:::-;38549:107;38680:1;38677;38673:9;38666:16;;38383:305;;;;:::o;38694:185::-;38734:1;38751:20;38769:1;38751:20;:::i;:::-;38746:25;;38785:20;38803:1;38785:20;:::i;:::-;38780:25;;38824:1;38814:35;;38829:18;;:::i;:::-;38814:35;38871:1;38868;38864:9;38859:14;;38694:185;;;;:::o;38885:348::-;38925:7;38948:20;38966:1;38948:20;:::i;:::-;38943:25;;38982:20;39000:1;38982:20;:::i;:::-;38977:25;;39170:1;39102:66;39098:74;39095:1;39092:81;39087:1;39080:9;39073:17;39069:105;39066:131;;;39177:18;;:::i;:::-;39066:131;39225:1;39222;39218:9;39207:20;;38885:348;;;;:::o;39239:191::-;39279:4;39299:20;39317:1;39299:20;:::i;:::-;39294:25;;39333:20;39351:1;39333:20;:::i;:::-;39328:25;;39372:1;39369;39366:8;39363:34;;;39377:18;;:::i;:::-;39363:34;39422:1;39419;39415:9;39407:17;;39239:191;;;;:::o;39436:96::-;39473:7;39502:24;39520:5;39502:24;:::i;:::-;39491:35;;39436:96;;;:::o;39538:104::-;39583:7;39612:24;39630:5;39612:24;:::i;:::-;39601:35;;39538:104;;;:::o;39648:90::-;39682:7;39725:5;39718:13;39711:21;39700:32;;39648:90;;;:::o;39744:149::-;39780:7;39820:66;39813:5;39809:78;39798:89;;39744:149;;;:::o;39899:126::-;39936:7;39976:42;39969:5;39965:54;39954:65;;39899:126;;;:::o;40031:77::-;40068:7;40097:5;40086:16;;40031:77;;;:::o;40114:154::-;40198:6;40193:3;40188;40175:30;40260:1;40251:6;40246:3;40242:16;40235:27;40114:154;;;:::o;40274:307::-;40342:1;40352:113;40366:6;40363:1;40360:13;40352:113;;;40451:1;40446:3;40442:11;40436:18;40432:1;40427:3;40423:11;40416:39;40388:2;40385:1;40381:10;40376:15;;40352:113;;;40483:6;40480:1;40477:13;40474:101;;;40563:1;40554:6;40549:3;40545:16;40538:27;40474:101;40323:258;40274:307;;;:::o;40587:320::-;40631:6;40668:1;40662:4;40658:12;40648:22;;40715:1;40709:4;40705:12;40736:18;40726:81;;40792:4;40784:6;40780:17;40770:27;;40726:81;40854:2;40846:6;40843:14;40823:18;40820:38;40817:84;;;40873:18;;:::i;:::-;40817:84;40638:269;40587:320;;;:::o;40913:281::-;40996:27;41018:4;40996:27;:::i;:::-;40988:6;40984:40;41126:6;41114:10;41111:22;41090:18;41078:10;41075:34;41072:62;41069:88;;;41137:18;;:::i;:::-;41069:88;41177:10;41173:2;41166:22;40956:238;40913:281;;:::o;41200:233::-;41239:3;41262:24;41280:5;41262:24;:::i;:::-;41253:33;;41308:66;41301:5;41298:77;41295:103;;;41378:18;;:::i;:::-;41295:103;41425:1;41418:5;41414:13;41407:20;;41200:233;;;:::o;41439:176::-;41471:1;41488:20;41506:1;41488:20;:::i;:::-;41483:25;;41522:20;41540:1;41522:20;:::i;:::-;41517:25;;41561:1;41551:35;;41566:18;;:::i;:::-;41551:35;41607:1;41604;41600:9;41595:14;;41439:176;;;;:::o;41621:180::-;41669:77;41666:1;41659:88;41766:4;41763:1;41756:15;41790:4;41787:1;41780:15;41807:180;41855:77;41852:1;41845:88;41952:4;41949:1;41942:15;41976:4;41973:1;41966:15;41993:180;42041:77;42038:1;42031:88;42138:4;42135:1;42128:15;42162:4;42159:1;42152:15;42179:180;42227:77;42224:1;42217:88;42324:4;42321:1;42314:15;42348:4;42345:1;42338:15;42365:180;42413:77;42410:1;42403:88;42510:4;42507:1;42500:15;42534:4;42531:1;42524:15;42551:180;42599:77;42596:1;42589:88;42696:4;42693:1;42686:15;42720:4;42717:1;42710:15;42737:117;42846:1;42843;42836:12;42860:117;42969:1;42966;42959:12;42983:117;43092:1;43089;43082:12;43106:117;43215:1;43212;43205:12;43229:102;43270:6;43321:2;43317:7;43312:2;43305:5;43301:14;43297:28;43287:38;;43229:102;;;:::o;43337:230::-;43477:34;43473:1;43465:6;43461:14;43454:58;43546:13;43541:2;43533:6;43529:15;43522:38;43337:230;:::o;43573:170::-;43713:22;43709:1;43701:6;43697:14;43690:46;43573:170;:::o;43749:164::-;43889:16;43885:1;43877:6;43873:14;43866:40;43749:164;:::o;43919:230::-;44059:34;44055:1;44047:6;44043:14;44036:58;44128:13;44123:2;44115:6;44111:15;44104:38;43919:230;:::o;44155:237::-;44295:34;44291:1;44283:6;44279:14;44272:58;44364:20;44359:2;44351:6;44347:15;44340:45;44155:237;:::o;44398:225::-;44538:34;44534:1;44526:6;44522:14;44515:58;44607:8;44602:2;44594:6;44590:15;44583:33;44398:225;:::o;44629:178::-;44769:30;44765:1;44757:6;44753:14;44746:54;44629:178;:::o;44813:223::-;44953:34;44949:1;44941:6;44937:14;44930:58;45022:6;45017:2;45009:6;45005:15;44998:31;44813:223;:::o;45042:175::-;45182:27;45178:1;45170:6;45166:14;45159:51;45042:175;:::o;45223:159::-;45363:11;45359:1;45351:6;45347:14;45340:35;45223:159;:::o;45388:231::-;45528:34;45524:1;45516:6;45512:14;45505:58;45597:14;45592:2;45584:6;45580:15;45573:39;45388:231;:::o;45625:166::-;45765:18;45761:1;45753:6;45749:14;45742:42;45625:166;:::o;45797:243::-;45937:34;45933:1;45925:6;45921:14;45914:58;46006:26;46001:2;45993:6;45989:15;45982:51;45797:243;:::o;46046:229::-;46186:34;46182:1;46174:6;46170:14;46163:58;46255:12;46250:2;46242:6;46238:15;46231:37;46046:229;:::o;46281:228::-;46421:34;46417:1;46409:6;46405:14;46398:58;46490:11;46485:2;46477:6;46473:15;46466:36;46281:228;:::o;46515:182::-;46655:34;46651:1;46643:6;46639:14;46632:58;46515:182;:::o;46703:158::-;46843:10;46839:1;46831:6;46827:14;46820:34;46703:158;:::o;46867:231::-;47007:34;47003:1;46995:6;46991:14;46984:58;47076:14;47071:2;47063:6;47059:15;47052:39;46867:231;:::o;47104:182::-;47244:34;47240:1;47232:6;47228:14;47221:58;47104:182;:::o;47292:228::-;47432:34;47428:1;47420:6;47416:14;47409:58;47501:11;47496:2;47488:6;47484:15;47477:36;47292:228;:::o;47526:234::-;47666:34;47662:1;47654:6;47650:14;47643:58;47735:17;47730:2;47722:6;47718:15;47711:42;47526:234;:::o;47766:167::-;47906:19;47902:1;47894:6;47890:14;47883:43;47766:167;:::o;47939:171::-;48079:23;48075:1;48067:6;48063:14;48056:47;47939:171;:::o;48116:220::-;48256:34;48252:1;48244:6;48240:14;48233:58;48325:3;48320:2;48312:6;48308:15;48301:28;48116:220;:::o;48342:114::-;;:::o;48462:166::-;48602:18;48598:1;48590:6;48586:14;48579:42;48462:166;:::o;48634:236::-;48774:34;48770:1;48762:6;48758:14;48751:58;48843:19;48838:2;48830:6;48826:15;48819:44;48634:236;:::o;48876:231::-;49016:34;49012:1;49004:6;49000:14;48993:58;49085:14;49080:2;49072:6;49068:15;49061:39;48876:231;:::o;49113:235::-;49253:34;49249:1;49241:6;49237:14;49230:58;49322:18;49317:2;49309:6;49305:15;49298:43;49113:235;:::o;49354:122::-;49427:24;49445:5;49427:24;:::i;:::-;49420:5;49417:35;49407:63;;49466:1;49463;49456:12;49407:63;49354:122;:::o;49482:138::-;49563:32;49589:5;49563:32;:::i;:::-;49556:5;49553:43;49543:71;;49610:1;49607;49600:12;49543:71;49482:138;:::o;49626:116::-;49696:21;49711:5;49696:21;:::i;:::-;49689:5;49686:32;49676:60;;49732:1;49729;49722:12;49676:60;49626:116;:::o;49748:120::-;49820:23;49837:5;49820:23;:::i;:::-;49813:5;49810:34;49800:62;;49858:1;49855;49848:12;49800:62;49748:120;:::o;49874:122::-;49947:24;49965:5;49947:24;:::i;:::-;49940:5;49937:35;49927:63;;49986:1;49983;49976:12;49927:63;49874:122;:::o

Swarm Source

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