ETH Price: $3,360.58 (-1.62%)
Gas: 8 Gwei

Token

DeepSeaJelly (DSJ)
 

Overview

Max Total Supply

9,970 DSJ

Holders

6,844

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DSJ
0xB9a39fFE656011276b93fDD87F827Ea1A74bDdB8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Deepsea Jelly is a collective of 10,000 Jellyfish NFT’s who have explored the unknown regions of the deep sea and have now found their way into the metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract NFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant COST_ONE = 0.05 ether;
    uint256 public constant COST_FIVE = 0.045 ether;
    uint256 public constant COST_TEN = 0.04 ether;

    uint256 public constant MAX_MINT = 10;
    uint256 public constant MAX_PRIVATE_SUPPLY = 30;
    uint256 public constant MAX_PUBLIC_SUPPLY = 9970;
    uint256 public constant MAX_SUPPLY = MAX_PRIVATE_SUPPLY + MAX_PUBLIC_SUPPLY;

    uint256 public whitelistCost = 0.0 ether;
    uint256 public whitelistMaxMint = 1;

    bool public isActive = false;
    bool public isFreeActive = false;
    bool public isWhitelistActive = false;

    uint256 public totalPrivateSupply;
    uint256 public totalPublicSupply;

    string private _baseTokenURI = "";
    mapping(address => uint256) private _claimed;
    mapping(address => bool) private _whitelist;
    mapping(address => uint256) private _whitelistClaimed;

   constructor(string memory name, string memory symbol, string memory baseURI) ERC721(name, symbol) {
        setBaseURI(baseURI);
    }

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

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelist[addresses[i]] = true;
        }
    }

    function claimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Zero address not claimable");

        return _claimed[owner];
    }

    function freeMint() external payable {
        require(isFreeActive, "Free minting is not active");
        require(_claimed[msg.sender] == 0, "Free token already claimed");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");

        uint mintIndex = totalSupply();
        totalPublicSupply += 1;
        _claimed[msg.sender] += 1;
        _safeMint(msg.sender, mintIndex);
    }

    function getCost(uint256 num) public pure returns (uint256) {
        if (num < 5) {
            return COST_ONE * num;
        } else if (num > 4 && num < 10) {
            return COST_FIVE * num;
        }
        return COST_TEN * num;
    }

    function gift(address to, uint256 num) external onlyOwner {
        require(totalSupply() < MAX_SUPPLY + 1, "All tokens minted");
        require(
            totalPrivateSupply + num < MAX_PRIVATE_SUPPLY + 1,
            "Exceeds private supply"
        );

        for (uint256 i; i < num; i++) {
            totalPrivateSupply += 1;
            _safeMint(to, totalPrivateSupply);
        }
    }

    function mint(uint256 num) external payable {
        require(isActive, "Contract is inactive");
        require(num < MAX_MINT + 1, "Over max limit");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");
        require(msg.value >= getCost(num), "ETH sent is not correct");

        for (uint256 i; i < num; i++) {
            uint mintIndex = totalSupply();
            if (totalPublicSupply < MAX_PUBLIC_SUPPLY) {
                totalPublicSupply += 1;
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function isOnWhitelist(address addr) external view returns (bool) {
        return _whitelist[addr];
    }

    function removeFromWhitelist(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(
                addresses[i] != address(0),
                "Can't remove the null address"
            );

            _whitelist[addresses[i]] = false;
        }
    }

    function setActive(bool val) external onlyOwner {
        require(
            bytes(_baseTokenURI).length != 0,
            "Set Base URI before activating"
        );
        isActive = val;
    }

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

    function setFreeActive(bool val) external onlyOwner {
        isFreeActive = val;
    }

    function setWhitelistActive(bool val) external onlyOwner {
        isWhitelistActive = val;
    }

    function setWhitelistMaxMint(uint256 val) external onlyOwner {
        whitelistMaxMint = val;
    }

    function setWhitelistPrice(uint256 val) external onlyOwner {
        whitelistCost = val;
    }

    function whitelistClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Zero address not claimable");

        return _whitelistClaimed[owner];
    }

    function whitelistFreeMint(uint256 num) external payable {
        require(isWhitelistActive, "Whitelist is not active");
        require(_whitelist[msg.sender], "You are not on the Whitelist");
        require(num < whitelistMaxMint + 1, "Over max limit");
        require(
            _whitelistClaimed[msg.sender] + num < whitelistMaxMint + 1,
            " Free whitelist tokens already claimed"
        );
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");
        require(whitelistCost * num <= msg.value, "ETH amount is not correct");

        for (uint256 i = 0; i < num; i++) {
            uint mintIndex = totalSupply();
            totalPublicSupply += 1;
            if (whitelistCost == 0) {
                _claimed[msg.sender] += 1;
            }
            _whitelistClaimed[msg.sender] += 1;
            _safeMint(msg.sender, mintIndex);
        }
    }
    function presaleMint(uint256 num) external payable {
        require(isWhitelistActive, "Whitelist is not active");
        require(_whitelist[msg.sender], "You are not on the Whitelist");
        require(num < MAX_MINT + 1, "Over max limit");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");
        require(msg.value >= getCost(num), "ETH sent is not correct");

        for (uint256 i; i < num; i++) {
            uint mintIndex = totalSupply();
            if (totalPublicSupply < MAX_PUBLIC_SUPPLY) {
                totalPublicSupply += 1;
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 1 of 13: 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 13: 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 13: 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 13: 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.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 13: 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 6 of 13: 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 7 of 13: 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 8 of 13: 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 9 of 13: 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 10 of 13: 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 12 of 13: 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 13 of 13: 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":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST_FIVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST_ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST_TEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"claimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isFreeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOnWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","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":"uint256","name":"num","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","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":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setFreeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setWhitelistMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setWhitelistPrice","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":"totalPrivateSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","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":"whitelistClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"whitelistFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b556001600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff021916908315150217905550604051806020016040528060008152506010908051906020019062000086929190620002cd565b503480156200009457600080fd5b5060405162006098380380620060988339818101604052810190620000ba9190620003fb565b82828160009080519060200190620000d4929190620002cd565b508060019080519060200190620000ed929190620002cd565b50505062000110620001046200012a60201b60201c565b6200013260201b60201c565b6200012181620001f860201b60201c565b505050620006bb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002086200012a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022e620002a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027e90620004db565b60405180910390fd5b80601090805190602001906200029f929190620002cd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002db90620005a3565b90600052602060002090601f016020900481019282620002ff57600085556200034b565b82601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b6000620003946200038e8462000526565b620004fd565b905082815260208101848484011115620003b357620003b262000672565b5b620003c08482856200056d565b509392505050565b600082601f830112620003e057620003df6200066d565b5b8151620003f28482602086016200037d565b91505092915050565b6000806000606084860312156200041757620004166200067c565b5b600084015167ffffffffffffffff81111562000438576200043762000677565b5b6200044686828701620003c8565b935050602084015167ffffffffffffffff8111156200046a576200046962000677565b5b6200047886828701620003c8565b925050604084015167ffffffffffffffff8111156200049c576200049b62000677565b5b620004aa86828701620003c8565b9150509250925092565b6000620004c36020836200055c565b9150620004d08262000692565b602082019050919050565b60006020820190508181036000830152620004f681620004b4565b9050919050565b6000620005096200051c565b9050620005178282620005d9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054457620005436200063e565b5b6200054f8262000681565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058d57808201518184015260208101905062000570565b838111156200059d576000848401525b50505050565b60006002820490506001821680620005bc57607f821691505b60208210811415620005d357620005d26200060f565b5b50919050565b620005e48262000681565b810181811067ffffffffffffffff821117156200060657620006056200063e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6159cd80620006cb6000396000f3fe6080604052600436106102e45760003560e01c80636352211e11610190578063c0be9046116100dc578063e214696311610095578063e985e9c51161006f578063e985e9c514610b04578063f0292a0314610b41578063f2fde38b14610b6c578063f7bef31c14610b95576102e4565b8063e214696314610a85578063e6a5931e14610aae578063e7b99ec714610ad9576102e4565b8063c0be904614610984578063c3b754dc146109af578063c87b56dd146109d8578063c9b298f114610a15578063cbce4c9714610a31578063cc7eee1e14610a5a576102e4565b80638aa9090a11610149578063a0712d6811610123578063a0712d68146108ed578063a22cb46514610909578063acec338a14610932578063b88d4fde1461095b576102e4565b80638aa9090a1461086e5780638da5cb5b1461089757806395d89b41146108c2576102e4565b80636352211e1461076057806370a082311461079d578063715018a6146107da578063717d57d3146107f1578063722e141d1461081a5780637f64978314610845576102e4565b8063340ee37c1161024f578063524513d61161020857806355f804b3116101e257806355f804b3146106c55780635a4dd47d146106ee5780635b4c0a251461072b5780635b70ea9f14610756576102e4565b8063524513d614610646578063546f4a0414610671578063548db1741461069c576102e4565b8063340ee37c14610531578063352567a21461056e5780633a3ab672146105995780633ccfd60b146105d657806342842e0e146105e05780634f6ccce714610609576102e4565b806322f3e2d4116102a157806322f3e2d41461040d57806323b872dd1461043857806329998d4b146104615780632a47f7991461049e5780632f745c59146104c957806332cb6b0c14610506576102e4565b806301ffc9a7146102e9578063053d67661461032657806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b957806318160ddd146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b91906141d7565b610bb1565b60405161031d9190614885565b60405180910390f35b34801561033257600080fd5b5061033b610c2b565b6040516103489190614ce2565b60405180910390f35b34801561035d57600080fd5b50610366610c31565b60405161037391906148a0565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061427a565b610cc3565b6040516103b0919061481e565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061411d565b610d48565b005b3480156103ee57600080fd5b506103f7610e60565b6040516104049190614ce2565b60405180910390f35b34801561041957600080fd5b50610422610e6d565b60405161042f9190614885565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190614007565b610e80565b005b34801561046d57600080fd5b5061048860048036038101906104839190613f9a565b610ee0565b6040516104959190614ce2565b60405180910390f35b3480156104aa57600080fd5b506104b3610f98565b6040516104c09190614ce2565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061411d565b610f9e565b6040516104fd9190614ce2565b60405180910390f35b34801561051257600080fd5b5061051b611043565b6040516105289190614ce2565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613f9a565b611055565b6040516105659190614ce2565b60405180910390f35b34801561057a57600080fd5b5061058361110d565b6040516105909190614ce2565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613f9a565b611112565b6040516105cd9190614885565b60405180910390f35b6105de611168565b005b3480156105ec57600080fd5b5061060760048036038101906106029190614007565b611233565b005b34801561061557600080fd5b50610630600480360381019061062b919061427a565b611253565b60405161063d9190614ce2565b60405180910390f35b34801561065257600080fd5b5061065b6112c4565b6040516106689190614885565b60405180910390f35b34801561067d57600080fd5b506106866112d7565b6040516106939190614ce2565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be919061415d565b6112e2565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190614231565b61149a565b005b3480156106fa57600080fd5b506107156004803603810190610710919061427a565b611530565b6040516107229190614ce2565b60405180910390f35b34801561073757600080fd5b5061074061159f565b60405161074d9190614ce2565b60405180910390f35b61075e6115aa565b005b34801561076c57600080fd5b506107876004803603810190610782919061427a565b6117a2565b604051610794919061481e565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613f9a565b611854565b6040516107d19190614ce2565b60405180910390f35b3480156107e657600080fd5b506107ef61190c565b005b3480156107fd57600080fd5b506108186004803603810190610813919061427a565b611994565b005b34801561082657600080fd5b5061082f611a1a565b60405161083c9190614ce2565b60405180910390f35b34801561085157600080fd5b5061086c6004803603810190610867919061415d565b611a20565b005b34801561087a57600080fd5b50610895600480360381019061089091906141aa565b611b41565b005b3480156108a357600080fd5b506108ac611bda565b6040516108b9919061481e565b60405180910390f35b3480156108ce57600080fd5b506108d7611c04565b6040516108e491906148a0565b60405180910390f35b6109076004803603810190610902919061427a565b611c96565b005b34801561091557600080fd5b50610930600480360381019061092b91906140dd565b611e7c565b005b34801561093e57600080fd5b50610959600480360381019061095491906141aa565b611ffd565b005b34801561096757600080fd5b50610982600480360381019061097d919061405a565b6120e8565b005b34801561099057600080fd5b5061099961214a565b6040516109a69190614ce2565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906141aa565b612155565b005b3480156109e457600080fd5b506109ff60048036038101906109fa919061427a565b6121ee565b604051610a0c91906148a0565b60405180910390f35b610a2f6004803603810190610a2a919061427a565b612295565b005b348015610a3d57600080fd5b50610a586004803603810190610a53919061411d565b612507565b005b348015610a6657600080fd5b50610a6f61268b565b604051610a7c9190614885565b60405180910390f35b348015610a9157600080fd5b50610aac6004803603810190610aa7919061427a565b61269e565b005b348015610aba57600080fd5b50610ac3612724565b604051610ad09190614ce2565b60405180910390f35b348015610ae557600080fd5b50610aee61272a565b604051610afb9190614ce2565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b269190613fc7565b612730565b604051610b389190614885565b60405180910390f35b348015610b4d57600080fd5b50610b566127c4565b604051610b639190614ce2565b60405180910390f35b348015610b7857600080fd5b50610b936004803603810190610b8e9190613f9a565b6127c9565b005b610baf6004803603810190610baa919061427a565b6128c1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c245750610c2382612c80565b5b9050919050565b600e5481565b606060008054610c4090614f92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c90614f92565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce82612d62565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490614ba2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d53826117a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614c42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de3612dce565b73ffffffffffffffffffffffffffffffffffffffff161480610e125750610e1181610e0c612dce565b612730565b5b610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890614aa2565b60405180910390fd5b610e5b8383612dd6565b505050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610e91610e8b612dce565b82612e8f565b610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614c62565b60405180910390fd5b610edb838383612f6d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906148c2565b60405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6126f281565b6000610fa983611854565b8210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614942565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6126f2601e6110529190614dc7565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd906148c2565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601e81565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611170612dce565b73ffffffffffffffffffffffffffffffffffffffff1661118e611bda565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614bc2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b5050565b61124e838383604051806020016040528060008152506120e8565b505050565b600061125d610e60565b821061129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590614c82565b60405180910390fd5b600882815481106112b2576112b161512b565b5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b668e1bc9bf04000081565b6112ea612dce565b73ffffffffffffffffffffffffffffffffffffffff16611308611bda565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590614bc2565b60405180910390fd5b60005b8282905081101561149557600073ffffffffffffffffffffffffffffffffffffffff168383838181106113975761139661512b565b5b90506020020160208101906113ac9190613f9a565b73ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906148e2565b60405180910390fd5b60006012600085858581811061141c5761141b61512b565b5b90506020020160208101906114319190613f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148d90614ff5565b915050611361565b505050565b6114a2612dce565b73ffffffffffffffffffffffffffffffffffffffff166114c0611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614bc2565b60405180910390fd5b806010908051906020019061152c929190613d58565b5050565b60006005821015611555578166b1a2bc2ec5000061154e9190614e4e565b905061159a565b6004821180156115655750600a82105b156115845781669fdf42f6e4800061157d9190614e4e565b905061159a565b81668e1bc9bf0400006115979190614e4e565b90505b919050565b66b1a2bc2ec5000081565b600d60019054906101000a900460ff166115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614c22565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614ca2565b60405180910390fd5b6126f2601e61168a9190614dc7565b611692610e60565b106116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906149c2565b60405180910390fd5b6126f2600f5410611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90614a42565b60405180910390fd5b6000611722610e60565b90506001600f60008282546117379190614dc7565b925050819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461178e9190614dc7565b9250508190555061179f33826131c9565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290614ae2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614ac2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611914612dce565b73ffffffffffffffffffffffffffffffffffffffff16611932611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90614bc2565b60405180910390fd5b61199260006131e7565b565b61199c612dce565b73ffffffffffffffffffffffffffffffffffffffff166119ba611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614bc2565b60405180910390fd5b80600b8190555050565b600c5481565b611a28612dce565b73ffffffffffffffffffffffffffffffffffffffff16611a46611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390614bc2565b60405180910390fd5b60005b82829050811015611b3c57600160126000858585818110611ac357611ac261512b565b5b9050602002016020810190611ad89190613f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b3490614ff5565b915050611a9f565b505050565b611b49612dce565b73ffffffffffffffffffffffffffffffffffffffff16611b67611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614bc2565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611c1390614f92565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3f90614f92565b8015611c8c5780601f10611c6157610100808354040283529160200191611c8c565b820191906000526020600020905b815481529060010190602001808311611c6f57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614a82565b60405180910390fd5b6001600a611cf39190614dc7565b8110611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614962565b60405180910390fd5b6126f2601e611d439190614dc7565b611d4b610e60565b10611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d82906149c2565b60405180910390fd5b6126f2600f5410611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc890614a42565b60405180910390fd5b611dda81611530565b341015611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614cc2565b60405180910390fd5b60005b81811015611e78576000611e31610e60565b90506126f2600f541015611e64576001600f6000828254611e529190614dc7565b92505081905550611e6333826131c9565b5b508080611e7090614ff5565b915050611e1f565b5050565b611e84612dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990614a22565b60405180910390fd5b8060056000611eff612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fac612dce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff19190614885565b60405180910390a35050565b612005612dce565b73ffffffffffffffffffffffffffffffffffffffff16612023611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614bc2565b60405180910390fd5b60006010805461208890614f92565b905014156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290614902565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6120f96120f3612dce565b83612e8f565b612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614c62565b60405180910390fd5b612144848484846132ad565b50505050565b669fdf42f6e4800081565b61215d612dce565b73ffffffffffffffffffffffffffffffffffffffff1661217b611bda565b73ffffffffffffffffffffffffffffffffffffffff16146121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890614bc2565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606121f982612d62565b612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614c02565b60405180910390fd5b6000612242613309565b90506000815111612262576040518060200160405280600081525061228d565b8061226c8461339b565b60405160200161227d9291906147fa565b6040516020818303038152906040525b915050919050565b600d60029054906101000a900460ff166122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614922565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614b42565b60405180910390fd5b6001600a61237e9190614dc7565b81106123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614962565b60405180910390fd5b6126f2601e6123ce9190614dc7565b6123d6610e60565b10612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d906149c2565b60405180910390fd5b6126f2600f541061245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614a42565b60405180910390fd5b61246581611530565b3410156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614cc2565b60405180910390fd5b60005b818110156125035760006124bc610e60565b90506126f2600f5410156124ef576001600f60008282546124dd9190614dc7565b925050819055506124ee33826131c9565b5b5080806124fb90614ff5565b9150506124aa565b5050565b61250f612dce565b73ffffffffffffffffffffffffffffffffffffffff1661252d611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90614bc2565b60405180910390fd5b60016126f2601e6125949190614dc7565b61259e9190614dc7565b6125a6610e60565b106125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd906149c2565b60405180910390fd5b6001601e6125f49190614dc7565b81600e546126029190614dc7565b10612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990614b02565b60405180910390fd5b60005b81811015612686576001600e60008282546126609190614dc7565b9250508190555061267383600e546131c9565b808061267e90614ff5565b915050612645565b505050565b600d60019054906101000a900460ff1681565b6126a6612dce565b73ffffffffffffffffffffffffffffffffffffffff166126c4611bda565b73ffffffffffffffffffffffffffffffffffffffff161461271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614bc2565b60405180910390fd5b80600c8190555050565b600f5481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a81565b6127d1612dce565b73ffffffffffffffffffffffffffffffffffffffff166127ef611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614bc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac906149a2565b60405180910390fd5b6128be816131e7565b50565b600d60029054906101000a900460ff16612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614922565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390614b42565b60405180910390fd5b6001600c546129ab9190614dc7565b81106129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390614962565b60405180910390fd5b6001600c546129fb9190614dc7565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a469190614dc7565b10612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614b82565b60405180910390fd5b6126f2601e612a959190614dc7565b612a9d610e60565b10612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad4906149c2565b60405180910390fd5b6126f2600f5410612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614a42565b60405180910390fd5b3481600b54612b329190614e4e565b1115612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90614b22565b60405180910390fd5b60005b81811015612c7c576000612b88610e60565b90506001600f6000828254612b9d9190614dc7565b925050819055506000600b541415612c07576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bff9190614dc7565b925050819055505b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c579190614dc7565b92505081905550612c6833826131c9565b508080612c7490614ff5565b915050612b76565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d5b5750612d5a826134fc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e49836117a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e9a82612d62565b612ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed090614a62565b60405180910390fd5b6000612ee4836117a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f5357508373ffffffffffffffffffffffffffffffffffffffff16612f3b84610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f645750612f638185612730565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f8d826117a2565b73ffffffffffffffffffffffffffffffffffffffff1614612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda90614be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a90614a02565b60405180910390fd5b61305e838383613566565b613069600082612dd6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b99190614ea8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131109190614dc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131e382826040518060200160405280600081525061367a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132b8848484612f6d565b6132c4848484846136d5565b613303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa90614982565b60405180910390fd5b50505050565b60606010805461331890614f92565b80601f016020809104026020016040519081016040528092919081815260200182805461334490614f92565b80156133915780601f1061336657610100808354040283529160200191613391565b820191906000526020600020905b81548152906001019060200180831161337457829003601f168201915b5050505050905090565b606060008214156133e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134f7565b600082905060005b600082146134155780806133fe90614ff5565b915050600a8261340e9190614e1d565b91506133eb565b60008167ffffffffffffffff8111156134315761343061515a565b5b6040519080825280601f01601f1916602001820160405280156134635781602001600182028036833780820191505090505b5090505b600085146134f05760018261347c9190614ea8565b9150600a8561348b919061503e565b60306134979190614dc7565b60f81b8183815181106134ad576134ac61512b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134e99190614e1d565b9450613467565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61357183838361386c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135b4576135af81613871565b6135f3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135f2576135f183826138ba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136365761363181613a27565b613675565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613674576136738282613af8565b5b5b505050565b6136848383613b77565b61369160008484846136d5565b6136d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c790614982565b60405180910390fd5b505050565b60006136f68473ffffffffffffffffffffffffffffffffffffffff16613d45565b1561385f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261371f612dce565b8786866040518563ffffffff1660e01b81526004016137419493929190614839565b602060405180830381600087803b15801561375b57600080fd5b505af192505050801561378c57506040513d601f19601f820116820180604052508101906137899190614204565b60015b61380f573d80600081146137bc576040519150601f19603f3d011682016040523d82523d6000602084013e6137c1565b606091505b50600081511415613807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fe90614982565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613864565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138c784611854565b6138d19190614ea8565b90506000600760008481526020019081526020016000205490508181146139b6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3b9190614ea8565b9050600060096000848152602001908152602001600020549050600060088381548110613a6b57613a6a61512b565b5b906000526020600020015490508060088381548110613a8d57613a8c61512b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613adc57613adb6150fc565b5b6001900381819060005260206000200160009055905550505050565b6000613b0383611854565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bde90614b62565b60405180910390fd5b613bf081612d62565b15613c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c27906149e2565b60405180910390fd5b613c3c60008383613566565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c8c9190614dc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613d6490614f92565b90600052602060002090601f016020900481019282613d865760008555613dcd565b82601f10613d9f57805160ff1916838001178555613dcd565b82800160010185558215613dcd579182015b82811115613dcc578251825591602001919060010190613db1565b5b509050613dda9190613dde565b5090565b5b80821115613df7576000816000905550600101613ddf565b5090565b6000613e0e613e0984614d22565b614cfd565b905082815260208101848484011115613e2a57613e29615198565b5b613e35848285614f50565b509392505050565b6000613e50613e4b84614d53565b614cfd565b905082815260208101848484011115613e6c57613e6b615198565b5b613e77848285614f50565b509392505050565b600081359050613e8e8161593b565b92915050565b60008083601f840112613eaa57613ea961518e565b5b8235905067ffffffffffffffff811115613ec757613ec6615189565b5b602083019150836020820283011115613ee357613ee2615193565b5b9250929050565b600081359050613ef981615952565b92915050565b600081359050613f0e81615969565b92915050565b600081519050613f2381615969565b92915050565b600082601f830112613f3e57613f3d61518e565b5b8135613f4e848260208601613dfb565b91505092915050565b600082601f830112613f6c57613f6b61518e565b5b8135613f7c848260208601613e3d565b91505092915050565b600081359050613f9481615980565b92915050565b600060208284031215613fb057613faf6151a2565b5b6000613fbe84828501613e7f565b91505092915050565b60008060408385031215613fde57613fdd6151a2565b5b6000613fec85828601613e7f565b9250506020613ffd85828601613e7f565b9150509250929050565b6000806000606084860312156140205761401f6151a2565b5b600061402e86828701613e7f565b935050602061403f86828701613e7f565b925050604061405086828701613f85565b9150509250925092565b60008060008060808587031215614074576140736151a2565b5b600061408287828801613e7f565b945050602061409387828801613e7f565b93505060406140a487828801613f85565b925050606085013567ffffffffffffffff8111156140c5576140c461519d565b5b6140d187828801613f29565b91505092959194509250565b600080604083850312156140f4576140f36151a2565b5b600061410285828601613e7f565b925050602061411385828601613eea565b9150509250929050565b60008060408385031215614134576141336151a2565b5b600061414285828601613e7f565b925050602061415385828601613f85565b9150509250929050565b60008060208385031215614174576141736151a2565b5b600083013567ffffffffffffffff8111156141925761419161519d565b5b61419e85828601613e94565b92509250509250929050565b6000602082840312156141c0576141bf6151a2565b5b60006141ce84828501613eea565b91505092915050565b6000602082840312156141ed576141ec6151a2565b5b60006141fb84828501613eff565b91505092915050565b60006020828403121561421a576142196151a2565b5b600061422884828501613f14565b91505092915050565b600060208284031215614247576142466151a2565b5b600082013567ffffffffffffffff8111156142655761426461519d565b5b61427184828501613f57565b91505092915050565b6000602082840312156142905761428f6151a2565b5b600061429e84828501613f85565b91505092915050565b6142b081614edc565b82525050565b6142bf81614eee565b82525050565b60006142d082614d84565b6142da8185614d9a565b93506142ea818560208601614f5f565b6142f3816151a7565b840191505092915050565b600061430982614d8f565b6143138185614dab565b9350614323818560208601614f5f565b61432c816151a7565b840191505092915050565b600061434282614d8f565b61434c8185614dbc565b935061435c818560208601614f5f565b80840191505092915050565b6000614375601a83614dab565b9150614380826151b8565b602082019050919050565b6000614398601d83614dab565b91506143a3826151e1565b602082019050919050565b60006143bb601e83614dab565b91506143c68261520a565b602082019050919050565b60006143de601783614dab565b91506143e982615233565b602082019050919050565b6000614401602b83614dab565b915061440c8261525c565b604082019050919050565b6000614424600e83614dab565b915061442f826152ab565b602082019050919050565b6000614447603283614dab565b9150614452826152d4565b604082019050919050565b600061446a602683614dab565b915061447582615323565b604082019050919050565b600061448d601183614dab565b915061449882615372565b602082019050919050565b60006144b0601c83614dab565b91506144bb8261539b565b602082019050919050565b60006144d3602483614dab565b91506144de826153c4565b604082019050919050565b60006144f6601983614dab565b915061450182615413565b602082019050919050565b6000614519601583614dab565b91506145248261543c565b602082019050919050565b600061453c602c83614dab565b915061454782615465565b604082019050919050565b600061455f601483614dab565b915061456a826154b4565b602082019050919050565b6000614582603883614dab565b915061458d826154dd565b604082019050919050565b60006145a5602a83614dab565b91506145b08261552c565b604082019050919050565b60006145c8602983614dab565b91506145d38261557b565b604082019050919050565b60006145eb601683614dab565b91506145f6826155ca565b602082019050919050565b600061460e601983614dab565b9150614619826155f3565b602082019050919050565b6000614631601c83614dab565b915061463c8261561c565b602082019050919050565b6000614654602083614dab565b915061465f82615645565b602082019050919050565b6000614677602683614dab565b91506146828261566e565b604082019050919050565b600061469a602c83614dab565b91506146a5826156bd565b604082019050919050565b60006146bd602083614dab565b91506146c88261570c565b602082019050919050565b60006146e0602983614dab565b91506146eb82615735565b604082019050919050565b6000614703602f83614dab565b915061470e82615784565b604082019050919050565b6000614726601a83614dab565b9150614731826157d3565b602082019050919050565b6000614749602183614dab565b9150614754826157fc565b604082019050919050565b600061476c603183614dab565b91506147778261584b565b604082019050919050565b600061478f602c83614dab565b915061479a8261589a565b604082019050919050565b60006147b2601a83614dab565b91506147bd826158e9565b602082019050919050565b60006147d5601783614dab565b91506147e082615912565b602082019050919050565b6147f481614f46565b82525050565b60006148068285614337565b91506148128284614337565b91508190509392505050565b600060208201905061483360008301846142a7565b92915050565b600060808201905061484e60008301876142a7565b61485b60208301866142a7565b61486860408301856147eb565b818103606083015261487a81846142c5565b905095945050505050565b600060208201905061489a60008301846142b6565b92915050565b600060208201905081810360008301526148ba81846142fe565b905092915050565b600060208201905081810360008301526148db81614368565b9050919050565b600060208201905081810360008301526148fb8161438b565b9050919050565b6000602082019050818103600083015261491b816143ae565b9050919050565b6000602082019050818103600083015261493b816143d1565b9050919050565b6000602082019050818103600083015261495b816143f4565b9050919050565b6000602082019050818103600083015261497b81614417565b9050919050565b6000602082019050818103600083015261499b8161443a565b9050919050565b600060208201905081810360008301526149bb8161445d565b9050919050565b600060208201905081810360008301526149db81614480565b9050919050565b600060208201905081810360008301526149fb816144a3565b9050919050565b60006020820190508181036000830152614a1b816144c6565b9050919050565b60006020820190508181036000830152614a3b816144e9565b9050919050565b60006020820190508181036000830152614a5b8161450c565b9050919050565b60006020820190508181036000830152614a7b8161452f565b9050919050565b60006020820190508181036000830152614a9b81614552565b9050919050565b60006020820190508181036000830152614abb81614575565b9050919050565b60006020820190508181036000830152614adb81614598565b9050919050565b60006020820190508181036000830152614afb816145bb565b9050919050565b60006020820190508181036000830152614b1b816145de565b9050919050565b60006020820190508181036000830152614b3b81614601565b9050919050565b60006020820190508181036000830152614b5b81614624565b9050919050565b60006020820190508181036000830152614b7b81614647565b9050919050565b60006020820190508181036000830152614b9b8161466a565b9050919050565b60006020820190508181036000830152614bbb8161468d565b9050919050565b60006020820190508181036000830152614bdb816146b0565b9050919050565b60006020820190508181036000830152614bfb816146d3565b9050919050565b60006020820190508181036000830152614c1b816146f6565b9050919050565b60006020820190508181036000830152614c3b81614719565b9050919050565b60006020820190508181036000830152614c5b8161473c565b9050919050565b60006020820190508181036000830152614c7b8161475f565b9050919050565b60006020820190508181036000830152614c9b81614782565b9050919050565b60006020820190508181036000830152614cbb816147a5565b9050919050565b60006020820190508181036000830152614cdb816147c8565b9050919050565b6000602082019050614cf760008301846147eb565b92915050565b6000614d07614d18565b9050614d138282614fc4565b919050565b6000604051905090565b600067ffffffffffffffff821115614d3d57614d3c61515a565b5b614d46826151a7565b9050602081019050919050565b600067ffffffffffffffff821115614d6e57614d6d61515a565b5b614d77826151a7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dd282614f46565b9150614ddd83614f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1257614e1161506f565b5b828201905092915050565b6000614e2882614f46565b9150614e3383614f46565b925082614e4357614e4261509e565b5b828204905092915050565b6000614e5982614f46565b9150614e6483614f46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9d57614e9c61506f565b5b828202905092915050565b6000614eb382614f46565b9150614ebe83614f46565b925082821015614ed157614ed061506f565b5b828203905092915050565b6000614ee782614f26565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f7d578082015181840152602081019050614f62565b83811115614f8c576000848401525b50505050565b60006002820490506001821680614faa57607f821691505b60208210811415614fbe57614fbd6150cd565b5b50919050565b614fcd826151a7565b810181811067ffffffffffffffff82111715614fec57614feb61515a565b5b80604052505050565b600061500082614f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150335761503261506f565b5b600182019050919050565b600061504982614f46565b915061505483614f46565b9250826150645761506361509e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5a65726f2061646472657373206e6f7420636c61696d61626c65000000000000600082015250565b7f43616e27742072656d6f766520746865206e756c6c2061646472657373000000600082015250565b7f536574204261736520555249206265666f72652061637469766174696e670000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4f766572206d6178206c696d6974000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d6178207075626c6963206c696d69740000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420697320696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473207072697661746520737570706c7900000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f7520617265206e6f74206f6e207468652057686974656c69737400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f20467265652077686974656c69737420746f6b656e7320616c7265616479206360008201527f6c61696d65640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20616c726561647920636c61696d6564000000000000600082015250565b7f4554482073656e74206973206e6f7420636f7272656374000000000000000000600082015250565b61594481614edc565b811461594f57600080fd5b50565b61595b81614eee565b811461596657600080fd5b50565b61597281614efa565b811461597d57600080fd5b50565b61598981614f46565b811461599457600080fd5b5056fea26469706673582212203ddb74bd1b7bb2b6e7492afbc41da426548eab4e5806d632139accf0558bbb1464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c446565705365614a656c6c790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344534a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f7777772e646565707365616a656c6c792e696f2f61706900

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80636352211e11610190578063c0be9046116100dc578063e214696311610095578063e985e9c51161006f578063e985e9c514610b04578063f0292a0314610b41578063f2fde38b14610b6c578063f7bef31c14610b95576102e4565b8063e214696314610a85578063e6a5931e14610aae578063e7b99ec714610ad9576102e4565b8063c0be904614610984578063c3b754dc146109af578063c87b56dd146109d8578063c9b298f114610a15578063cbce4c9714610a31578063cc7eee1e14610a5a576102e4565b80638aa9090a11610149578063a0712d6811610123578063a0712d68146108ed578063a22cb46514610909578063acec338a14610932578063b88d4fde1461095b576102e4565b80638aa9090a1461086e5780638da5cb5b1461089757806395d89b41146108c2576102e4565b80636352211e1461076057806370a082311461079d578063715018a6146107da578063717d57d3146107f1578063722e141d1461081a5780637f64978314610845576102e4565b8063340ee37c1161024f578063524513d61161020857806355f804b3116101e257806355f804b3146106c55780635a4dd47d146106ee5780635b4c0a251461072b5780635b70ea9f14610756576102e4565b8063524513d614610646578063546f4a0414610671578063548db1741461069c576102e4565b8063340ee37c14610531578063352567a21461056e5780633a3ab672146105995780633ccfd60b146105d657806342842e0e146105e05780634f6ccce714610609576102e4565b806322f3e2d4116102a157806322f3e2d41461040d57806323b872dd1461043857806329998d4b146104615780632a47f7991461049e5780632f745c59146104c957806332cb6b0c14610506576102e4565b806301ffc9a7146102e9578063053d67661461032657806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b957806318160ddd146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b91906141d7565b610bb1565b60405161031d9190614885565b60405180910390f35b34801561033257600080fd5b5061033b610c2b565b6040516103489190614ce2565b60405180910390f35b34801561035d57600080fd5b50610366610c31565b60405161037391906148a0565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061427a565b610cc3565b6040516103b0919061481e565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061411d565b610d48565b005b3480156103ee57600080fd5b506103f7610e60565b6040516104049190614ce2565b60405180910390f35b34801561041957600080fd5b50610422610e6d565b60405161042f9190614885565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190614007565b610e80565b005b34801561046d57600080fd5b5061048860048036038101906104839190613f9a565b610ee0565b6040516104959190614ce2565b60405180910390f35b3480156104aa57600080fd5b506104b3610f98565b6040516104c09190614ce2565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061411d565b610f9e565b6040516104fd9190614ce2565b60405180910390f35b34801561051257600080fd5b5061051b611043565b6040516105289190614ce2565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613f9a565b611055565b6040516105659190614ce2565b60405180910390f35b34801561057a57600080fd5b5061058361110d565b6040516105909190614ce2565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613f9a565b611112565b6040516105cd9190614885565b60405180910390f35b6105de611168565b005b3480156105ec57600080fd5b5061060760048036038101906106029190614007565b611233565b005b34801561061557600080fd5b50610630600480360381019061062b919061427a565b611253565b60405161063d9190614ce2565b60405180910390f35b34801561065257600080fd5b5061065b6112c4565b6040516106689190614885565b60405180910390f35b34801561067d57600080fd5b506106866112d7565b6040516106939190614ce2565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be919061415d565b6112e2565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190614231565b61149a565b005b3480156106fa57600080fd5b506107156004803603810190610710919061427a565b611530565b6040516107229190614ce2565b60405180910390f35b34801561073757600080fd5b5061074061159f565b60405161074d9190614ce2565b60405180910390f35b61075e6115aa565b005b34801561076c57600080fd5b506107876004803603810190610782919061427a565b6117a2565b604051610794919061481e565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613f9a565b611854565b6040516107d19190614ce2565b60405180910390f35b3480156107e657600080fd5b506107ef61190c565b005b3480156107fd57600080fd5b506108186004803603810190610813919061427a565b611994565b005b34801561082657600080fd5b5061082f611a1a565b60405161083c9190614ce2565b60405180910390f35b34801561085157600080fd5b5061086c6004803603810190610867919061415d565b611a20565b005b34801561087a57600080fd5b50610895600480360381019061089091906141aa565b611b41565b005b3480156108a357600080fd5b506108ac611bda565b6040516108b9919061481e565b60405180910390f35b3480156108ce57600080fd5b506108d7611c04565b6040516108e491906148a0565b60405180910390f35b6109076004803603810190610902919061427a565b611c96565b005b34801561091557600080fd5b50610930600480360381019061092b91906140dd565b611e7c565b005b34801561093e57600080fd5b50610959600480360381019061095491906141aa565b611ffd565b005b34801561096757600080fd5b50610982600480360381019061097d919061405a565b6120e8565b005b34801561099057600080fd5b5061099961214a565b6040516109a69190614ce2565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906141aa565b612155565b005b3480156109e457600080fd5b506109ff60048036038101906109fa919061427a565b6121ee565b604051610a0c91906148a0565b60405180910390f35b610a2f6004803603810190610a2a919061427a565b612295565b005b348015610a3d57600080fd5b50610a586004803603810190610a53919061411d565b612507565b005b348015610a6657600080fd5b50610a6f61268b565b604051610a7c9190614885565b60405180910390f35b348015610a9157600080fd5b50610aac6004803603810190610aa7919061427a565b61269e565b005b348015610aba57600080fd5b50610ac3612724565b604051610ad09190614ce2565b60405180910390f35b348015610ae557600080fd5b50610aee61272a565b604051610afb9190614ce2565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b269190613fc7565b612730565b604051610b389190614885565b60405180910390f35b348015610b4d57600080fd5b50610b566127c4565b604051610b639190614ce2565b60405180910390f35b348015610b7857600080fd5b50610b936004803603810190610b8e9190613f9a565b6127c9565b005b610baf6004803603810190610baa919061427a565b6128c1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c245750610c2382612c80565b5b9050919050565b600e5481565b606060008054610c4090614f92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c90614f92565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce82612d62565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490614ba2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d53826117a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614c42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de3612dce565b73ffffffffffffffffffffffffffffffffffffffff161480610e125750610e1181610e0c612dce565b612730565b5b610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890614aa2565b60405180910390fd5b610e5b8383612dd6565b505050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610e91610e8b612dce565b82612e8f565b610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614c62565b60405180910390fd5b610edb838383612f6d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906148c2565b60405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6126f281565b6000610fa983611854565b8210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614942565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6126f2601e6110529190614dc7565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd906148c2565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601e81565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611170612dce565b73ffffffffffffffffffffffffffffffffffffffff1661118e611bda565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614bc2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b5050565b61124e838383604051806020016040528060008152506120e8565b505050565b600061125d610e60565b821061129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590614c82565b60405180910390fd5b600882815481106112b2576112b161512b565b5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b668e1bc9bf04000081565b6112ea612dce565b73ffffffffffffffffffffffffffffffffffffffff16611308611bda565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590614bc2565b60405180910390fd5b60005b8282905081101561149557600073ffffffffffffffffffffffffffffffffffffffff168383838181106113975761139661512b565b5b90506020020160208101906113ac9190613f9a565b73ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906148e2565b60405180910390fd5b60006012600085858581811061141c5761141b61512b565b5b90506020020160208101906114319190613f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148d90614ff5565b915050611361565b505050565b6114a2612dce565b73ffffffffffffffffffffffffffffffffffffffff166114c0611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614bc2565b60405180910390fd5b806010908051906020019061152c929190613d58565b5050565b60006005821015611555578166b1a2bc2ec5000061154e9190614e4e565b905061159a565b6004821180156115655750600a82105b156115845781669fdf42f6e4800061157d9190614e4e565b905061159a565b81668e1bc9bf0400006115979190614e4e565b90505b919050565b66b1a2bc2ec5000081565b600d60019054906101000a900460ff166115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614c22565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614ca2565b60405180910390fd5b6126f2601e61168a9190614dc7565b611692610e60565b106116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906149c2565b60405180910390fd5b6126f2600f5410611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90614a42565b60405180910390fd5b6000611722610e60565b90506001600f60008282546117379190614dc7565b925050819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461178e9190614dc7565b9250508190555061179f33826131c9565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290614ae2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614ac2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611914612dce565b73ffffffffffffffffffffffffffffffffffffffff16611932611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90614bc2565b60405180910390fd5b61199260006131e7565b565b61199c612dce565b73ffffffffffffffffffffffffffffffffffffffff166119ba611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614bc2565b60405180910390fd5b80600b8190555050565b600c5481565b611a28612dce565b73ffffffffffffffffffffffffffffffffffffffff16611a46611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390614bc2565b60405180910390fd5b60005b82829050811015611b3c57600160126000858585818110611ac357611ac261512b565b5b9050602002016020810190611ad89190613f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b3490614ff5565b915050611a9f565b505050565b611b49612dce565b73ffffffffffffffffffffffffffffffffffffffff16611b67611bda565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614bc2565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611c1390614f92565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3f90614f92565b8015611c8c5780601f10611c6157610100808354040283529160200191611c8c565b820191906000526020600020905b815481529060010190602001808311611c6f57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614a82565b60405180910390fd5b6001600a611cf39190614dc7565b8110611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614962565b60405180910390fd5b6126f2601e611d439190614dc7565b611d4b610e60565b10611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d82906149c2565b60405180910390fd5b6126f2600f5410611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc890614a42565b60405180910390fd5b611dda81611530565b341015611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614cc2565b60405180910390fd5b60005b81811015611e78576000611e31610e60565b90506126f2600f541015611e64576001600f6000828254611e529190614dc7565b92505081905550611e6333826131c9565b5b508080611e7090614ff5565b915050611e1f565b5050565b611e84612dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990614a22565b60405180910390fd5b8060056000611eff612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fac612dce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff19190614885565b60405180910390a35050565b612005612dce565b73ffffffffffffffffffffffffffffffffffffffff16612023611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614bc2565b60405180910390fd5b60006010805461208890614f92565b905014156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290614902565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6120f96120f3612dce565b83612e8f565b612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614c62565b60405180910390fd5b612144848484846132ad565b50505050565b669fdf42f6e4800081565b61215d612dce565b73ffffffffffffffffffffffffffffffffffffffff1661217b611bda565b73ffffffffffffffffffffffffffffffffffffffff16146121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890614bc2565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606121f982612d62565b612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614c02565b60405180910390fd5b6000612242613309565b90506000815111612262576040518060200160405280600081525061228d565b8061226c8461339b565b60405160200161227d9291906147fa565b6040516020818303038152906040525b915050919050565b600d60029054906101000a900460ff166122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614922565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614b42565b60405180910390fd5b6001600a61237e9190614dc7565b81106123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614962565b60405180910390fd5b6126f2601e6123ce9190614dc7565b6123d6610e60565b10612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d906149c2565b60405180910390fd5b6126f2600f541061245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614a42565b60405180910390fd5b61246581611530565b3410156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614cc2565b60405180910390fd5b60005b818110156125035760006124bc610e60565b90506126f2600f5410156124ef576001600f60008282546124dd9190614dc7565b925050819055506124ee33826131c9565b5b5080806124fb90614ff5565b9150506124aa565b5050565b61250f612dce565b73ffffffffffffffffffffffffffffffffffffffff1661252d611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90614bc2565b60405180910390fd5b60016126f2601e6125949190614dc7565b61259e9190614dc7565b6125a6610e60565b106125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd906149c2565b60405180910390fd5b6001601e6125f49190614dc7565b81600e546126029190614dc7565b10612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990614b02565b60405180910390fd5b60005b81811015612686576001600e60008282546126609190614dc7565b9250508190555061267383600e546131c9565b808061267e90614ff5565b915050612645565b505050565b600d60019054906101000a900460ff1681565b6126a6612dce565b73ffffffffffffffffffffffffffffffffffffffff166126c4611bda565b73ffffffffffffffffffffffffffffffffffffffff161461271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614bc2565b60405180910390fd5b80600c8190555050565b600f5481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a81565b6127d1612dce565b73ffffffffffffffffffffffffffffffffffffffff166127ef611bda565b73ffffffffffffffffffffffffffffffffffffffff1614612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614bc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac906149a2565b60405180910390fd5b6128be816131e7565b50565b600d60029054906101000a900460ff16612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614922565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390614b42565b60405180910390fd5b6001600c546129ab9190614dc7565b81106129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390614962565b60405180910390fd5b6001600c546129fb9190614dc7565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a469190614dc7565b10612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614b82565b60405180910390fd5b6126f2601e612a959190614dc7565b612a9d610e60565b10612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad4906149c2565b60405180910390fd5b6126f2600f5410612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614a42565b60405180910390fd5b3481600b54612b329190614e4e565b1115612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90614b22565b60405180910390fd5b60005b81811015612c7c576000612b88610e60565b90506001600f6000828254612b9d9190614dc7565b925050819055506000600b541415612c07576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bff9190614dc7565b925050819055505b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c579190614dc7565b92505081905550612c6833826131c9565b508080612c7490614ff5565b915050612b76565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d5b5750612d5a826134fc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e49836117a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e9a82612d62565b612ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed090614a62565b60405180910390fd5b6000612ee4836117a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f5357508373ffffffffffffffffffffffffffffffffffffffff16612f3b84610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f645750612f638185612730565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f8d826117a2565b73ffffffffffffffffffffffffffffffffffffffff1614612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda90614be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a90614a02565b60405180910390fd5b61305e838383613566565b613069600082612dd6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b99190614ea8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131109190614dc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131e382826040518060200160405280600081525061367a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132b8848484612f6d565b6132c4848484846136d5565b613303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa90614982565b60405180910390fd5b50505050565b60606010805461331890614f92565b80601f016020809104026020016040519081016040528092919081815260200182805461334490614f92565b80156133915780601f1061336657610100808354040283529160200191613391565b820191906000526020600020905b81548152906001019060200180831161337457829003601f168201915b5050505050905090565b606060008214156133e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134f7565b600082905060005b600082146134155780806133fe90614ff5565b915050600a8261340e9190614e1d565b91506133eb565b60008167ffffffffffffffff8111156134315761343061515a565b5b6040519080825280601f01601f1916602001820160405280156134635781602001600182028036833780820191505090505b5090505b600085146134f05760018261347c9190614ea8565b9150600a8561348b919061503e565b60306134979190614dc7565b60f81b8183815181106134ad576134ac61512b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134e99190614e1d565b9450613467565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61357183838361386c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135b4576135af81613871565b6135f3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135f2576135f183826138ba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136365761363181613a27565b613675565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613674576136738282613af8565b5b5b505050565b6136848383613b77565b61369160008484846136d5565b6136d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c790614982565b60405180910390fd5b505050565b60006136f68473ffffffffffffffffffffffffffffffffffffffff16613d45565b1561385f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261371f612dce565b8786866040518563ffffffff1660e01b81526004016137419493929190614839565b602060405180830381600087803b15801561375b57600080fd5b505af192505050801561378c57506040513d601f19601f820116820180604052508101906137899190614204565b60015b61380f573d80600081146137bc576040519150601f19603f3d011682016040523d82523d6000602084013e6137c1565b606091505b50600081511415613807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fe90614982565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613864565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138c784611854565b6138d19190614ea8565b90506000600760008481526020019081526020016000205490508181146139b6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3b9190614ea8565b9050600060096000848152602001908152602001600020549050600060088381548110613a6b57613a6a61512b565b5b906000526020600020015490508060088381548110613a8d57613a8c61512b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613adc57613adb6150fc565b5b6001900381819060005260206000200160009055905550505050565b6000613b0383611854565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bde90614b62565b60405180910390fd5b613bf081612d62565b15613c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c27906149e2565b60405180910390fd5b613c3c60008383613566565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c8c9190614dc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613d6490614f92565b90600052602060002090601f016020900481019282613d865760008555613dcd565b82601f10613d9f57805160ff1916838001178555613dcd565b82800160010185558215613dcd579182015b82811115613dcc578251825591602001919060010190613db1565b5b509050613dda9190613dde565b5090565b5b80821115613df7576000816000905550600101613ddf565b5090565b6000613e0e613e0984614d22565b614cfd565b905082815260208101848484011115613e2a57613e29615198565b5b613e35848285614f50565b509392505050565b6000613e50613e4b84614d53565b614cfd565b905082815260208101848484011115613e6c57613e6b615198565b5b613e77848285614f50565b509392505050565b600081359050613e8e8161593b565b92915050565b60008083601f840112613eaa57613ea961518e565b5b8235905067ffffffffffffffff811115613ec757613ec6615189565b5b602083019150836020820283011115613ee357613ee2615193565b5b9250929050565b600081359050613ef981615952565b92915050565b600081359050613f0e81615969565b92915050565b600081519050613f2381615969565b92915050565b600082601f830112613f3e57613f3d61518e565b5b8135613f4e848260208601613dfb565b91505092915050565b600082601f830112613f6c57613f6b61518e565b5b8135613f7c848260208601613e3d565b91505092915050565b600081359050613f9481615980565b92915050565b600060208284031215613fb057613faf6151a2565b5b6000613fbe84828501613e7f565b91505092915050565b60008060408385031215613fde57613fdd6151a2565b5b6000613fec85828601613e7f565b9250506020613ffd85828601613e7f565b9150509250929050565b6000806000606084860312156140205761401f6151a2565b5b600061402e86828701613e7f565b935050602061403f86828701613e7f565b925050604061405086828701613f85565b9150509250925092565b60008060008060808587031215614074576140736151a2565b5b600061408287828801613e7f565b945050602061409387828801613e7f565b93505060406140a487828801613f85565b925050606085013567ffffffffffffffff8111156140c5576140c461519d565b5b6140d187828801613f29565b91505092959194509250565b600080604083850312156140f4576140f36151a2565b5b600061410285828601613e7f565b925050602061411385828601613eea565b9150509250929050565b60008060408385031215614134576141336151a2565b5b600061414285828601613e7f565b925050602061415385828601613f85565b9150509250929050565b60008060208385031215614174576141736151a2565b5b600083013567ffffffffffffffff8111156141925761419161519d565b5b61419e85828601613e94565b92509250509250929050565b6000602082840312156141c0576141bf6151a2565b5b60006141ce84828501613eea565b91505092915050565b6000602082840312156141ed576141ec6151a2565b5b60006141fb84828501613eff565b91505092915050565b60006020828403121561421a576142196151a2565b5b600061422884828501613f14565b91505092915050565b600060208284031215614247576142466151a2565b5b600082013567ffffffffffffffff8111156142655761426461519d565b5b61427184828501613f57565b91505092915050565b6000602082840312156142905761428f6151a2565b5b600061429e84828501613f85565b91505092915050565b6142b081614edc565b82525050565b6142bf81614eee565b82525050565b60006142d082614d84565b6142da8185614d9a565b93506142ea818560208601614f5f565b6142f3816151a7565b840191505092915050565b600061430982614d8f565b6143138185614dab565b9350614323818560208601614f5f565b61432c816151a7565b840191505092915050565b600061434282614d8f565b61434c8185614dbc565b935061435c818560208601614f5f565b80840191505092915050565b6000614375601a83614dab565b9150614380826151b8565b602082019050919050565b6000614398601d83614dab565b91506143a3826151e1565b602082019050919050565b60006143bb601e83614dab565b91506143c68261520a565b602082019050919050565b60006143de601783614dab565b91506143e982615233565b602082019050919050565b6000614401602b83614dab565b915061440c8261525c565b604082019050919050565b6000614424600e83614dab565b915061442f826152ab565b602082019050919050565b6000614447603283614dab565b9150614452826152d4565b604082019050919050565b600061446a602683614dab565b915061447582615323565b604082019050919050565b600061448d601183614dab565b915061449882615372565b602082019050919050565b60006144b0601c83614dab565b91506144bb8261539b565b602082019050919050565b60006144d3602483614dab565b91506144de826153c4565b604082019050919050565b60006144f6601983614dab565b915061450182615413565b602082019050919050565b6000614519601583614dab565b91506145248261543c565b602082019050919050565b600061453c602c83614dab565b915061454782615465565b604082019050919050565b600061455f601483614dab565b915061456a826154b4565b602082019050919050565b6000614582603883614dab565b915061458d826154dd565b604082019050919050565b60006145a5602a83614dab565b91506145b08261552c565b604082019050919050565b60006145c8602983614dab565b91506145d38261557b565b604082019050919050565b60006145eb601683614dab565b91506145f6826155ca565b602082019050919050565b600061460e601983614dab565b9150614619826155f3565b602082019050919050565b6000614631601c83614dab565b915061463c8261561c565b602082019050919050565b6000614654602083614dab565b915061465f82615645565b602082019050919050565b6000614677602683614dab565b91506146828261566e565b604082019050919050565b600061469a602c83614dab565b91506146a5826156bd565b604082019050919050565b60006146bd602083614dab565b91506146c88261570c565b602082019050919050565b60006146e0602983614dab565b91506146eb82615735565b604082019050919050565b6000614703602f83614dab565b915061470e82615784565b604082019050919050565b6000614726601a83614dab565b9150614731826157d3565b602082019050919050565b6000614749602183614dab565b9150614754826157fc565b604082019050919050565b600061476c603183614dab565b91506147778261584b565b604082019050919050565b600061478f602c83614dab565b915061479a8261589a565b604082019050919050565b60006147b2601a83614dab565b91506147bd826158e9565b602082019050919050565b60006147d5601783614dab565b91506147e082615912565b602082019050919050565b6147f481614f46565b82525050565b60006148068285614337565b91506148128284614337565b91508190509392505050565b600060208201905061483360008301846142a7565b92915050565b600060808201905061484e60008301876142a7565b61485b60208301866142a7565b61486860408301856147eb565b818103606083015261487a81846142c5565b905095945050505050565b600060208201905061489a60008301846142b6565b92915050565b600060208201905081810360008301526148ba81846142fe565b905092915050565b600060208201905081810360008301526148db81614368565b9050919050565b600060208201905081810360008301526148fb8161438b565b9050919050565b6000602082019050818103600083015261491b816143ae565b9050919050565b6000602082019050818103600083015261493b816143d1565b9050919050565b6000602082019050818103600083015261495b816143f4565b9050919050565b6000602082019050818103600083015261497b81614417565b9050919050565b6000602082019050818103600083015261499b8161443a565b9050919050565b600060208201905081810360008301526149bb8161445d565b9050919050565b600060208201905081810360008301526149db81614480565b9050919050565b600060208201905081810360008301526149fb816144a3565b9050919050565b60006020820190508181036000830152614a1b816144c6565b9050919050565b60006020820190508181036000830152614a3b816144e9565b9050919050565b60006020820190508181036000830152614a5b8161450c565b9050919050565b60006020820190508181036000830152614a7b8161452f565b9050919050565b60006020820190508181036000830152614a9b81614552565b9050919050565b60006020820190508181036000830152614abb81614575565b9050919050565b60006020820190508181036000830152614adb81614598565b9050919050565b60006020820190508181036000830152614afb816145bb565b9050919050565b60006020820190508181036000830152614b1b816145de565b9050919050565b60006020820190508181036000830152614b3b81614601565b9050919050565b60006020820190508181036000830152614b5b81614624565b9050919050565b60006020820190508181036000830152614b7b81614647565b9050919050565b60006020820190508181036000830152614b9b8161466a565b9050919050565b60006020820190508181036000830152614bbb8161468d565b9050919050565b60006020820190508181036000830152614bdb816146b0565b9050919050565b60006020820190508181036000830152614bfb816146d3565b9050919050565b60006020820190508181036000830152614c1b816146f6565b9050919050565b60006020820190508181036000830152614c3b81614719565b9050919050565b60006020820190508181036000830152614c5b8161473c565b9050919050565b60006020820190508181036000830152614c7b8161475f565b9050919050565b60006020820190508181036000830152614c9b81614782565b9050919050565b60006020820190508181036000830152614cbb816147a5565b9050919050565b60006020820190508181036000830152614cdb816147c8565b9050919050565b6000602082019050614cf760008301846147eb565b92915050565b6000614d07614d18565b9050614d138282614fc4565b919050565b6000604051905090565b600067ffffffffffffffff821115614d3d57614d3c61515a565b5b614d46826151a7565b9050602081019050919050565b600067ffffffffffffffff821115614d6e57614d6d61515a565b5b614d77826151a7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dd282614f46565b9150614ddd83614f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1257614e1161506f565b5b828201905092915050565b6000614e2882614f46565b9150614e3383614f46565b925082614e4357614e4261509e565b5b828204905092915050565b6000614e5982614f46565b9150614e6483614f46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9d57614e9c61506f565b5b828202905092915050565b6000614eb382614f46565b9150614ebe83614f46565b925082821015614ed157614ed061506f565b5b828203905092915050565b6000614ee782614f26565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f7d578082015181840152602081019050614f62565b83811115614f8c576000848401525b50505050565b60006002820490506001821680614faa57607f821691505b60208210811415614fbe57614fbd6150cd565b5b50919050565b614fcd826151a7565b810181811067ffffffffffffffff82111715614fec57614feb61515a565b5b80604052505050565b600061500082614f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150335761503261506f565b5b600182019050919050565b600061504982614f46565b915061505483614f46565b9250826150645761506361509e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5a65726f2061646472657373206e6f7420636c61696d61626c65000000000000600082015250565b7f43616e27742072656d6f766520746865206e756c6c2061646472657373000000600082015250565b7f536574204261736520555249206265666f72652061637469766174696e670000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4f766572206d6178206c696d6974000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d6178207075626c6963206c696d69740000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420697320696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473207072697661746520737570706c7900000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f7520617265206e6f74206f6e207468652057686974656c69737400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f20467265652077686974656c69737420746f6b656e7320616c7265616479206360008201527f6c61696d65640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20616c726561647920636c61696d6564000000000000600082015250565b7f4554482073656e74206973206e6f7420636f7272656374000000000000000000600082015250565b61594481614edc565b811461594f57600080fd5b50565b61595b81614eee565b811461596657600080fd5b50565b61597281614efa565b811461597d57600080fd5b50565b61598981614f46565b811461599457600080fd5b5056fea26469706673582212203ddb74bd1b7bb2b6e7492afbc41da426548eab4e5806d632139accf0558bbb1464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c446565705365614a656c6c790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344534a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f7777772e646565707365616a656c6c792e696f2f61706900

-----Decoded View---------------
Arg [0] : name (string): DeepSeaJelly
Arg [1] : symbol (string): DSJ
Arg [2] : baseURI (string): https://www.deepseajelly.io/api

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 446565705365614a656c6c790000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 44534a0000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 68747470733a2f2f7777772e646565707365616a656c6c792e696f2f61706900


Deployed Bytecode Sourcemap

121:6767:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;812:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;692:28:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1565:178:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;462:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1210:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;517:75:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4790:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;408:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6734:151;;;:::i;:::-;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;766:37:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;310:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3690:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4269:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2245:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;204:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1751:486;;;:::i;:::-;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;4685:97:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;648:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1361:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4371:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2921:645:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4144:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4057:204:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;256:47:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4468:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5988:738:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2504:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;727:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4575:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;852:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;601:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;364:37:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4994:988:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;812:33:10:-;;;;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;1534:111:4:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;692:28:10:-;;;;;;;;;;;;;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1565:178:10:-;1622:7;1667:1;1650:19;;:5;:19;;;;1642:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1720:8;:15;1729:5;1720:15;;;;;;;;;;;;;;;;1713:22;;1565:178;;;:::o;462:48::-;506:4;462:48;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;517:75:10:-;506:4;453:2;554:38;;;;:::i;:::-;517:75;:::o;4790:196::-;4856:7;4901:1;4884:19;;:5;:19;;;;4876:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;4954:17;:24;4972:5;4954:24;;;;;;;;;;;;;;;;4947:31;;4790:196;;;:::o;408:47::-;453:2;408:47;:::o;3574:108::-;3634:4;3658:10;:16;3669:4;3658:16;;;;;;;;;;;;;;;;;;;;;;;;;3651:23;;3574:108;;;:::o;6734:151::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6790:15:10::1;6808:21;6790:39;;6848:10;6840:28;;:37;6869:7;6840:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6779:106;6734:151::o:0;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;;1916:24;;1717:230;;;:::o;766:37:10:-;;;;;;;;;;;;;:::o;310:45::-;345:10;310:45;:::o;3690:359::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3807:9:10::1;3802:240;3826:9;;:16;;3822:1;:20;3802:240;;;3914:1;3890:26;;:9;;3900:1;3890:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;3864:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;4025:5;3998:10;:24;4009:9;;4019:1;4009:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3998:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3844:3;;;;;:::i;:::-;;;;3802:240;;;;3690:359:::0;;:::o;4269:94::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4352:3:10::1;4336:13;:19;;;;;;;;;;;;:::i;:::-;;4269:94:::0;:::o;2245:251::-;2296:7;2326:1;2320:3;:7;2316:141;;;2362:3;239:10;2351:14;;;;:::i;:::-;2344:21;;;;2316:141;2393:1;2387:3;:7;:19;;;;;2404:2;2398:3;:8;2387:19;2383:74;;;2442:3;292:11;2430:15;;;;:::i;:::-;2423:22;;;;2383:74;2485:3;345:10;2474:14;;;;:::i;:::-;2467:21;;2245:251;;;;:::o;204:45::-;239:10;204:45;:::o;1751:486::-;1807:12;;;;;;;;;;;1799:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1893:1;1869:8;:20;1878:10;1869:20;;;;;;;;;;;;;;;;:25;1861:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;453:2;554:38;;;;:::i;:::-;1944:13;:11;:13::i;:::-;:26;1936:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;2011:17;;:37;2003:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2087:14;2104:13;:11;:13::i;:::-;2087:30;;2149:1;2128:17;;:22;;;;;;;:::i;:::-;;;;;;;;2185:1;2161:8;:20;2170:10;2161:20;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;2197:32;2207:10;2219:9;2197;:32::i;:::-;1788:449;1751:486::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1790:205::-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;4685:97:10:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4771:3:10::1;4755:13;:19;;;;4685:97:::0;:::o;648:35::-;;;;:::o;1361:196::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1450:9:10::1;1445:105;1469:9;;:16;;1465:1;:20;1445:105;;;1534:4;1507:10;:24;1518:9;;1528:1;1518:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1507:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1487:3;;;;;:::i;:::-;;;;1445:105;;;;1361:196:::0;;:::o;4371:89::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4449:3:10::1;4434:12;;:18;;;;;;;;;;;;;;;;;;4371:89:::0;:::o;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;2921:645:10:-;2984:8;;;;;;;;;;;2976:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;3053:1;399:2;3042:12;;;;:::i;:::-;3036:3;:18;3028:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;453:2;554:38;;;;:::i;:::-;3092:13;:11;:13::i;:::-;:26;3084:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;3159:17;;:37;3151:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3254:12;3262:3;3254:7;:12::i;:::-;3241:9;:25;;3233:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;3312:9;3307:252;3327:3;3323:1;:7;3307:252;;;3352:14;3369:13;:11;:13::i;:::-;3352:30;;506:4;3401:17;;:37;3397:151;;;3480:1;3459:17;;:22;;;;;;;:::i;:::-;;;;;;;;3500:32;3510:10;3522:9;3500;:32::i;:::-;3397:151;3337:222;3332:3;;;;;:::i;:::-;;;;3307:252;;;;2921:645;:::o;4144:290:3:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;4057:204:10:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4169:1:10::1;4144:13;4138:27;;;;;:::i;:::-;;;:32;;4116:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;4250:3;4239:8;;:14;;;;;;;;;;;;;;;;;;4057:204:::0;:::o;5365:320:3:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;256:47:10:-;292:11;256:47;:::o;4468:99::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4556:3:10::1;4536:17;;:23;;;;;;;;;;;;;;;;;;4468:99:::0;:::o;2679:329:3:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;5988:738:10:-;6058:17;;;;;;;;;;;6050:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;6122:10;:22;6133:10;6122:22;;;;;;;;;;;;;;;;;;;;;;;;;6114:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6213:1;399:2;6202:12;;;;:::i;:::-;6196:3;:18;6188:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;453:2;554:38;;;;:::i;:::-;6252:13;:11;:13::i;:::-;:26;6244:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;6319:17;;:37;6311:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:12;6422:3;6414:7;:12::i;:::-;6401:9;:25;;6393:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;6472:9;6467:252;6487:3;6483:1;:7;6467:252;;;6512:14;6529:13;:11;:13::i;:::-;6512:30;;506:4;6561:17;;:37;6557:151;;;6640:1;6619:17;;:22;;;;;;;:::i;:::-;;;;;;;;6660:32;6670:10;6682:9;6660;:32::i;:::-;6557:151;6497:222;6492:3;;;;;:::i;:::-;;;;6467:252;;;;5988:738;:::o;2504:409::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2610:1:10::1;506:4;453:2;554:38;;;;:::i;:::-;2597:14;;;;:::i;:::-;2581:13;:11;:13::i;:::-;:30;2573:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2714:1;453:2;2693:22;;;;:::i;:::-;2687:3;2666:18;;:24;;;;:::i;:::-;:49;2644:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;2783:9;2778:128;2798:3;2794:1;:7;2778:128;;;2845:1;2823:18;;:23;;;;;;;:::i;:::-;;;;;;;;2861:33;2871:2;2875:18;;2861:9;:33::i;:::-;2803:3;;;;;:::i;:::-;;;;2778:128;;;;2504:409:::0;;:::o;727:32::-;;;;;;;;;;;;;:::o;4575:102::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4666:3:10::1;4647:16;:22;;;;4575:102:::0;:::o;852:32::-;;;;:::o;601:40::-;;;;:::o;4500:162:3:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;364:37:10:-;399:2;364:37;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;4994:988:10:-;5070:17;;;;;;;;;;;5062:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;5134:10;:22;5145:10;5134:22;;;;;;;;;;;;;;;;;;;;;;;;;5126:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5233:1;5214:16;;:20;;;;:::i;:::-;5208:3;:26;5200:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;5343:1;5324:16;;:20;;;;:::i;:::-;5318:3;5286:17;:29;5304:10;5286:29;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:58;5264:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;453:2;554:38;;;;:::i;:::-;5429:13;:11;:13::i;:::-;:26;5421:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;506:4;5496:17;;:37;5488:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5601:9;5594:3;5578:13;;:19;;;;:::i;:::-;:32;;5570:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5658:9;5653:322;5677:3;5673:1;:7;5653:322;;;5702:14;5719:13;:11;:13::i;:::-;5702:30;;5768:1;5747:17;;:22;;;;;;;:::i;:::-;;;;;;;;5805:1;5788:13;;:18;5784:84;;;5851:1;5827:8;:20;5836:10;5827:20;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;5784:84;5915:1;5882:17;:29;5900:10;5882:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;5931:32;5941:10;5953:9;5931;:32::i;:::-;5687:288;5682:3;;;;;:::i;:::-;;;;5653:322;;;;4994:988;:::o;1431:300:3:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11008:171:3:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;1239:114:10:-;1299:13;1332;1325:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1239:114;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:778::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;13066:122::-;;;;:::o;3821:161:4:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5103:289;5069:323;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4680:889;;4599:970;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;:::i;:::-;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3483:143;3409:217;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:109::-;8848:21;8863:5;8848:21;:::i;:::-;8843:3;8836:34;8767:109;;:::o;8882:360::-;8968:3;8996:38;9028:5;8996:38;:::i;:::-;9050:70;9113:6;9108:3;9050:70;:::i;:::-;9043:77;;9129:52;9174:6;9169:3;9162:4;9155:5;9151:16;9129:52;:::i;:::-;9206:29;9228:6;9206:29;:::i;:::-;9201:3;9197:39;9190:46;;8972:270;8882:360;;;;:::o;9248:364::-;9336:3;9364:39;9397:5;9364:39;:::i;:::-;9419:71;9483:6;9478:3;9419:71;:::i;:::-;9412:78;;9499:52;9544:6;9539:3;9532:4;9525:5;9521:16;9499:52;:::i;:::-;9576:29;9598:6;9576:29;:::i;:::-;9571:3;9567:39;9560:46;;9340:272;9248:364;;;;:::o;9618:377::-;9724:3;9752:39;9785:5;9752:39;:::i;:::-;9807:89;9889:6;9884:3;9807:89;:::i;:::-;9800:96;;9905:52;9950:6;9945:3;9938:4;9931:5;9927:16;9905:52;:::i;:::-;9982:6;9977:3;9973:16;9966:23;;9728:267;9618:377;;;;:::o;10001:366::-;10143:3;10164:67;10228:2;10223:3;10164:67;:::i;:::-;10157:74;;10240:93;10329:3;10240:93;:::i;:::-;10358:2;10353:3;10349:12;10342:19;;10001:366;;;:::o;10373:::-;10515:3;10536:67;10600:2;10595:3;10536:67;:::i;:::-;10529:74;;10612:93;10701:3;10612:93;:::i;:::-;10730:2;10725:3;10721:12;10714:19;;10373:366;;;:::o;10745:::-;10887:3;10908:67;10972:2;10967:3;10908:67;:::i;:::-;10901:74;;10984:93;11073:3;10984:93;:::i;:::-;11102:2;11097:3;11093:12;11086:19;;10745:366;;;:::o;11117:::-;11259:3;11280:67;11344:2;11339:3;11280:67;:::i;:::-;11273:74;;11356:93;11445:3;11356:93;:::i;:::-;11474:2;11469:3;11465:12;11458:19;;11117:366;;;:::o;11489:::-;11631:3;11652:67;11716:2;11711:3;11652:67;:::i;:::-;11645:74;;11728:93;11817:3;11728:93;:::i;:::-;11846:2;11841:3;11837:12;11830:19;;11489:366;;;:::o;11861:::-;12003:3;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12100:93;12189:3;12100:93;:::i;:::-;12218:2;12213:3;12209:12;12202:19;;11861:366;;;:::o;12233:::-;12375:3;12396:67;12460:2;12455:3;12396:67;:::i;:::-;12389:74;;12472:93;12561:3;12472:93;:::i;:::-;12590:2;12585:3;12581:12;12574:19;;12233:366;;;:::o;12605:::-;12747:3;12768:67;12832:2;12827:3;12768:67;:::i;:::-;12761:74;;12844:93;12933:3;12844:93;:::i;:::-;12962:2;12957:3;12953:12;12946:19;;12605:366;;;:::o;12977:::-;13119:3;13140:67;13204:2;13199:3;13140:67;:::i;:::-;13133:74;;13216:93;13305:3;13216:93;:::i;:::-;13334:2;13329:3;13325:12;13318:19;;12977:366;;;:::o;13349:::-;13491:3;13512:67;13576:2;13571:3;13512:67;:::i;:::-;13505:74;;13588:93;13677:3;13588:93;:::i;:::-;13706:2;13701:3;13697:12;13690:19;;13349:366;;;:::o;13721:::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:::-;14607:3;14628:67;14692:2;14687:3;14628:67;:::i;:::-;14621:74;;14704:93;14793:3;14704:93;:::i;:::-;14822:2;14817:3;14813:12;14806:19;;14465:366;;;:::o;14837:::-;14979:3;15000:67;15064:2;15059:3;15000:67;:::i;:::-;14993:74;;15076:93;15165:3;15076:93;:::i;:::-;15194:2;15189:3;15185:12;15178:19;;14837:366;;;:::o;15209:::-;15351:3;15372:67;15436:2;15431:3;15372:67;:::i;:::-;15365:74;;15448:93;15537:3;15448:93;:::i;:::-;15566:2;15561:3;15557:12;15550:19;;15209:366;;;:::o;15581:::-;15723:3;15744:67;15808:2;15803:3;15744:67;:::i;:::-;15737:74;;15820:93;15909:3;15820:93;:::i;:::-;15938:2;15933:3;15929:12;15922:19;;15581:366;;;:::o;15953:::-;16095:3;16116:67;16180:2;16175:3;16116:67;:::i;:::-;16109:74;;16192:93;16281:3;16192:93;:::i;:::-;16310:2;16305:3;16301:12;16294:19;;15953:366;;;:::o;16325:::-;16467:3;16488:67;16552:2;16547:3;16488:67;:::i;:::-;16481:74;;16564:93;16653:3;16564:93;:::i;:::-;16682:2;16677:3;16673:12;16666:19;;16325:366;;;:::o;16697:::-;16839:3;16860:67;16924:2;16919:3;16860:67;:::i;:::-;16853:74;;16936:93;17025:3;16936:93;:::i;:::-;17054:2;17049:3;17045:12;17038:19;;16697:366;;;:::o;17069:::-;17211:3;17232:67;17296:2;17291:3;17232:67;:::i;:::-;17225:74;;17308:93;17397:3;17308:93;:::i;:::-;17426:2;17421:3;17417:12;17410:19;;17069:366;;;:::o;17441:::-;17583:3;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17680:93;17769:3;17680:93;:::i;:::-;17798:2;17793:3;17789:12;17782:19;;17441:366;;;:::o;17813:::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:::-;21675:3;21696:67;21760:2;21755:3;21696:67;:::i;:::-;21689:74;;21772:93;21861:3;21772:93;:::i;:::-;21890:2;21885:3;21881:12;21874:19;;21533:366;;;:::o;21905:::-;22047:3;22068:67;22132:2;22127:3;22068:67;:::i;:::-;22061:74;;22144:93;22233:3;22144:93;:::i;:::-;22262:2;22257:3;22253:12;22246:19;;21905:366;;;:::o;22277:118::-;22364:24;22382:5;22364:24;:::i;:::-;22359:3;22352:37;22277:118;;:::o;22401:435::-;22581:3;22603:95;22694:3;22685:6;22603:95;:::i;:::-;22596:102;;22715:95;22806:3;22797:6;22715:95;:::i;:::-;22708:102;;22827:3;22820:10;;22401:435;;;;;:::o;22842:222::-;22935:4;22973:2;22962:9;22958:18;22950:26;;22986:71;23054:1;23043:9;23039:17;23030:6;22986:71;:::i;:::-;22842:222;;;;:::o;23070:640::-;23265:4;23303:3;23292:9;23288:19;23280:27;;23317:71;23385:1;23374:9;23370:17;23361:6;23317:71;:::i;:::-;23398:72;23466:2;23455:9;23451:18;23442:6;23398:72;:::i;:::-;23480;23548:2;23537:9;23533:18;23524:6;23480:72;:::i;:::-;23599:9;23593:4;23589:20;23584:2;23573:9;23569:18;23562:48;23627:76;23698:4;23689:6;23627:76;:::i;:::-;23619:84;;23070:640;;;;;;;:::o;23716:210::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23854:65;23916:1;23905:9;23901:17;23892:6;23854:65;:::i;:::-;23716:210;;;;:::o;23932:313::-;24045:4;24083:2;24072:9;24068:18;24060:26;;24132:9;24126:4;24122:20;24118:1;24107:9;24103:17;24096:47;24160:78;24233:4;24224:6;24160:78;:::i;:::-;24152:86;;23932:313;;;;:::o;24251:419::-;24417:4;24455:2;24444:9;24440:18;24432:26;;24504:9;24498:4;24494:20;24490:1;24479:9;24475:17;24468:47;24532:131;24658:4;24532:131;:::i;:::-;24524:139;;24251:419;;;:::o;24676:::-;24842:4;24880:2;24869:9;24865:18;24857:26;;24929:9;24923:4;24919:20;24915:1;24904:9;24900:17;24893:47;24957:131;25083:4;24957:131;:::i;:::-;24949:139;;24676:419;;;:::o;25101:::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25101:419;;;:::o;25526:::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25526:419;;;:::o;25951:::-;26117:4;26155:2;26144:9;26140:18;26132:26;;26204:9;26198:4;26194:20;26190:1;26179:9;26175:17;26168:47;26232:131;26358:4;26232:131;:::i;:::-;26224:139;;25951:419;;;:::o;26376:::-;26542:4;26580:2;26569:9;26565:18;26557:26;;26629:9;26623:4;26619:20;26615:1;26604:9;26600:17;26593:47;26657:131;26783:4;26657:131;:::i;:::-;26649:139;;26376:419;;;:::o;26801:::-;26967:4;27005:2;26994:9;26990:18;26982:26;;27054:9;27048:4;27044:20;27040:1;27029:9;27025:17;27018:47;27082:131;27208:4;27082:131;:::i;:::-;27074:139;;26801:419;;;:::o;27226:::-;27392:4;27430:2;27419:9;27415:18;27407:26;;27479:9;27473:4;27469:20;27465:1;27454:9;27450:17;27443:47;27507:131;27633:4;27507:131;:::i;:::-;27499:139;;27226:419;;;:::o;27651:::-;27817:4;27855:2;27844:9;27840:18;27832:26;;27904:9;27898:4;27894:20;27890:1;27879:9;27875:17;27868:47;27932:131;28058:4;27932:131;:::i;:::-;27924:139;;27651:419;;;:::o;28076:::-;28242:4;28280:2;28269:9;28265:18;28257:26;;28329:9;28323:4;28319:20;28315:1;28304:9;28300:17;28293:47;28357:131;28483:4;28357:131;:::i;:::-;28349:139;;28076:419;;;:::o;28501:::-;28667:4;28705:2;28694:9;28690:18;28682:26;;28754:9;28748:4;28744:20;28740:1;28729:9;28725:17;28718:47;28782:131;28908:4;28782:131;:::i;:::-;28774:139;;28501:419;;;:::o;28926:::-;29092:4;29130:2;29119:9;29115:18;29107:26;;29179:9;29173:4;29169:20;29165:1;29154:9;29150:17;29143:47;29207:131;29333:4;29207:131;:::i;:::-;29199:139;;28926:419;;;:::o;29351:::-;29517:4;29555:2;29544:9;29540:18;29532:26;;29604:9;29598:4;29594:20;29590:1;29579:9;29575:17;29568:47;29632:131;29758:4;29632:131;:::i;:::-;29624:139;;29351:419;;;:::o;29776:::-;29942:4;29980:2;29969:9;29965:18;29957:26;;30029:9;30023:4;30019:20;30015:1;30004:9;30000:17;29993:47;30057:131;30183:4;30057:131;:::i;:::-;30049:139;;29776:419;;;:::o;30201:::-;30367:4;30405:2;30394:9;30390:18;30382:26;;30454:9;30448:4;30444:20;30440:1;30429:9;30425:17;30418:47;30482:131;30608:4;30482:131;:::i;:::-;30474:139;;30201:419;;;:::o;30626:::-;30792:4;30830:2;30819:9;30815:18;30807:26;;30879:9;30873:4;30869:20;30865:1;30854:9;30850:17;30843:47;30907:131;31033:4;30907:131;:::i;:::-;30899:139;;30626:419;;;:::o;31051:::-;31217:4;31255:2;31244:9;31240:18;31232:26;;31304:9;31298:4;31294:20;31290:1;31279:9;31275:17;31268:47;31332:131;31458:4;31332:131;:::i;:::-;31324:139;;31051:419;;;:::o;31476:::-;31642:4;31680:2;31669:9;31665:18;31657:26;;31729:9;31723:4;31719:20;31715:1;31704:9;31700:17;31693:47;31757:131;31883:4;31757:131;:::i;:::-;31749:139;;31476:419;;;:::o;31901:::-;32067:4;32105:2;32094:9;32090:18;32082:26;;32154:9;32148:4;32144:20;32140:1;32129:9;32125:17;32118:47;32182:131;32308:4;32182:131;:::i;:::-;32174:139;;31901:419;;;:::o;32326:::-;32492:4;32530:2;32519:9;32515:18;32507:26;;32579:9;32573:4;32569:20;32565:1;32554:9;32550:17;32543:47;32607:131;32733:4;32607:131;:::i;:::-;32599:139;;32326:419;;;:::o;32751:::-;32917:4;32955:2;32944:9;32940:18;32932:26;;33004:9;32998:4;32994:20;32990:1;32979:9;32975:17;32968:47;33032:131;33158:4;33032:131;:::i;:::-;33024:139;;32751:419;;;:::o;33176:::-;33342:4;33380:2;33369:9;33365:18;33357:26;;33429:9;33423:4;33419:20;33415:1;33404:9;33400:17;33393:47;33457:131;33583:4;33457:131;:::i;:::-;33449:139;;33176:419;;;:::o;33601:::-;33767:4;33805:2;33794:9;33790:18;33782:26;;33854:9;33848:4;33844:20;33840:1;33829:9;33825:17;33818:47;33882:131;34008:4;33882:131;:::i;:::-;33874:139;;33601:419;;;:::o;34026:::-;34192:4;34230:2;34219:9;34215:18;34207:26;;34279:9;34273:4;34269:20;34265:1;34254:9;34250:17;34243:47;34307:131;34433:4;34307:131;:::i;:::-;34299:139;;34026:419;;;:::o;34451:::-;34617:4;34655:2;34644:9;34640:18;34632:26;;34704:9;34698:4;34694:20;34690:1;34679:9;34675:17;34668:47;34732:131;34858:4;34732:131;:::i;:::-;34724:139;;34451:419;;;:::o;34876:::-;35042:4;35080:2;35069:9;35065:18;35057:26;;35129:9;35123:4;35119:20;35115:1;35104:9;35100:17;35093:47;35157:131;35283:4;35157:131;:::i;:::-;35149:139;;34876:419;;;:::o;35301:::-;35467:4;35505:2;35494:9;35490:18;35482:26;;35554:9;35548:4;35544:20;35540:1;35529:9;35525:17;35518:47;35582:131;35708:4;35582:131;:::i;:::-;35574:139;;35301:419;;;:::o;35726:::-;35892:4;35930:2;35919:9;35915:18;35907:26;;35979:9;35973:4;35969:20;35965:1;35954:9;35950:17;35943:47;36007:131;36133:4;36007:131;:::i;:::-;35999:139;;35726:419;;;:::o;36151:::-;36317:4;36355:2;36344:9;36340:18;36332:26;;36404:9;36398:4;36394:20;36390:1;36379:9;36375:17;36368:47;36432:131;36558:4;36432:131;:::i;:::-;36424:139;;36151:419;;;:::o;36576:::-;36742:4;36780:2;36769:9;36765:18;36757:26;;36829:9;36823:4;36819:20;36815:1;36804:9;36800:17;36793:47;36857:131;36983:4;36857:131;:::i;:::-;36849:139;;36576:419;;;:::o;37001:::-;37167:4;37205:2;37194:9;37190:18;37182:26;;37254:9;37248:4;37244:20;37240:1;37229:9;37225:17;37218:47;37282:131;37408:4;37282:131;:::i;:::-;37274:139;;37001:419;;;:::o;37426:::-;37592:4;37630:2;37619:9;37615:18;37607:26;;37679:9;37673:4;37669:20;37665:1;37654:9;37650:17;37643:47;37707:131;37833:4;37707:131;:::i;:::-;37699:139;;37426:419;;;:::o;37851:::-;38017:4;38055:2;38044:9;38040:18;38032:26;;38104:9;38098:4;38094:20;38090:1;38079:9;38075:17;38068:47;38132:131;38258:4;38132:131;:::i;:::-;38124:139;;37851:419;;;:::o;38276:222::-;38369:4;38407:2;38396:9;38392:18;38384:26;;38420:71;38488:1;38477:9;38473:17;38464:6;38420:71;:::i;:::-;38276:222;;;;:::o;38504:129::-;38538:6;38565:20;;:::i;:::-;38555:30;;38594:33;38622:4;38614:6;38594:33;:::i;:::-;38504:129;;;:::o;38639:75::-;38672:6;38705:2;38699:9;38689:19;;38639:75;:::o;38720:307::-;38781:4;38871:18;38863:6;38860:30;38857:56;;;38893:18;;:::i;:::-;38857:56;38931:29;38953:6;38931:29;:::i;:::-;38923:37;;39015:4;39009;39005:15;38997:23;;38720:307;;;:::o;39033:308::-;39095:4;39185:18;39177:6;39174:30;39171:56;;;39207:18;;:::i;:::-;39171:56;39245:29;39267:6;39245:29;:::i;:::-;39237:37;;39329:4;39323;39319:15;39311:23;;39033:308;;;:::o;39347:98::-;39398:6;39432:5;39426:12;39416:22;;39347:98;;;:::o;39451:99::-;39503:6;39537:5;39531:12;39521:22;;39451:99;;;:::o;39556:168::-;39639:11;39673:6;39668:3;39661:19;39713:4;39708:3;39704:14;39689:29;;39556:168;;;;:::o;39730:169::-;39814:11;39848:6;39843:3;39836:19;39888:4;39883:3;39879:14;39864:29;;39730:169;;;;:::o;39905:148::-;40007:11;40044:3;40029:18;;39905:148;;;;:::o;40059:305::-;40099:3;40118:20;40136:1;40118:20;:::i;:::-;40113:25;;40152:20;40170:1;40152:20;:::i;:::-;40147:25;;40306:1;40238:66;40234:74;40231:1;40228:81;40225:107;;;40312:18;;:::i;:::-;40225:107;40356:1;40353;40349:9;40342:16;;40059:305;;;;:::o;40370:185::-;40410:1;40427:20;40445:1;40427:20;:::i;:::-;40422:25;;40461:20;40479:1;40461:20;:::i;:::-;40456:25;;40500:1;40490:35;;40505:18;;:::i;:::-;40490:35;40547:1;40544;40540:9;40535:14;;40370:185;;;;:::o;40561:348::-;40601:7;40624:20;40642:1;40624:20;:::i;:::-;40619:25;;40658:20;40676:1;40658:20;:::i;:::-;40653:25;;40846:1;40778:66;40774:74;40771:1;40768:81;40763:1;40756:9;40749:17;40745:105;40742:131;;;40853:18;;:::i;:::-;40742:131;40901:1;40898;40894:9;40883:20;;40561:348;;;;:::o;40915:191::-;40955:4;40975:20;40993:1;40975:20;:::i;:::-;40970:25;;41009:20;41027:1;41009:20;:::i;:::-;41004:25;;41048:1;41045;41042:8;41039:34;;;41053:18;;:::i;:::-;41039:34;41098:1;41095;41091:9;41083:17;;40915:191;;;;:::o;41112:96::-;41149:7;41178:24;41196:5;41178:24;:::i;:::-;41167:35;;41112:96;;;:::o;41214:90::-;41248:7;41291:5;41284:13;41277:21;41266:32;;41214:90;;;:::o;41310:149::-;41346:7;41386:66;41379:5;41375:78;41364:89;;41310:149;;;:::o;41465:126::-;41502:7;41542:42;41535:5;41531:54;41520:65;;41465:126;;;:::o;41597:77::-;41634:7;41663:5;41652:16;;41597:77;;;:::o;41680:154::-;41764:6;41759:3;41754;41741:30;41826:1;41817:6;41812:3;41808:16;41801:27;41680:154;;;:::o;41840:307::-;41908:1;41918:113;41932:6;41929:1;41926:13;41918:113;;;42017:1;42012:3;42008:11;42002:18;41998:1;41993:3;41989:11;41982:39;41954:2;41951:1;41947:10;41942:15;;41918:113;;;42049:6;42046:1;42043:13;42040:101;;;42129:1;42120:6;42115:3;42111:16;42104:27;42040:101;41889:258;41840:307;;;:::o;42153:320::-;42197:6;42234:1;42228:4;42224:12;42214:22;;42281:1;42275:4;42271:12;42302:18;42292:81;;42358:4;42350:6;42346:17;42336:27;;42292:81;42420:2;42412:6;42409:14;42389:18;42386:38;42383:84;;;42439:18;;:::i;:::-;42383:84;42204:269;42153:320;;;:::o;42479:281::-;42562:27;42584:4;42562:27;:::i;:::-;42554:6;42550:40;42692:6;42680:10;42677:22;42656:18;42644:10;42641:34;42638:62;42635:88;;;42703:18;;:::i;:::-;42635:88;42743:10;42739:2;42732:22;42522:238;42479:281;;:::o;42766:233::-;42805:3;42828:24;42846:5;42828:24;:::i;:::-;42819:33;;42874:66;42867:5;42864:77;42861:103;;;42944:18;;:::i;:::-;42861:103;42991:1;42984:5;42980:13;42973:20;;42766:233;;;:::o;43005:176::-;43037:1;43054:20;43072:1;43054:20;:::i;:::-;43049:25;;43088:20;43106:1;43088:20;:::i;:::-;43083:25;;43127:1;43117:35;;43132:18;;:::i;:::-;43117:35;43173:1;43170;43166:9;43161:14;;43005:176;;;;:::o;43187:180::-;43235:77;43232:1;43225:88;43332:4;43329:1;43322:15;43356:4;43353:1;43346:15;43373:180;43421:77;43418:1;43411:88;43518:4;43515:1;43508:15;43542:4;43539:1;43532:15;43559:180;43607:77;43604:1;43597:88;43704:4;43701:1;43694:15;43728:4;43725:1;43718:15;43745:180;43793:77;43790:1;43783:88;43890:4;43887:1;43880:15;43914:4;43911:1;43904:15;43931:180;43979:77;43976:1;43969:88;44076:4;44073:1;44066:15;44100:4;44097:1;44090:15;44117:180;44165:77;44162:1;44155:88;44262:4;44259:1;44252:15;44286:4;44283:1;44276:15;44303:117;44412:1;44409;44402:12;44426:117;44535:1;44532;44525:12;44549:117;44658:1;44655;44648:12;44672:117;44781:1;44778;44771:12;44795:117;44904:1;44901;44894:12;44918:117;45027:1;45024;45017:12;45041:102;45082:6;45133:2;45129:7;45124:2;45117:5;45113:14;45109:28;45099:38;;45041:102;;;:::o;45149:176::-;45289:28;45285:1;45277:6;45273:14;45266:52;45149:176;:::o;45331:179::-;45471:31;45467:1;45459:6;45455:14;45448:55;45331:179;:::o;45516:180::-;45656:32;45652:1;45644:6;45640:14;45633:56;45516:180;:::o;45702:173::-;45842:25;45838:1;45830:6;45826:14;45819:49;45702:173;:::o;45881:230::-;46021:34;46017:1;46009:6;46005:14;45998:58;46090:13;46085:2;46077:6;46073:15;46066:38;45881:230;:::o;46117:164::-;46257:16;46253:1;46245:6;46241:14;46234:40;46117:164;:::o;46287:237::-;46427:34;46423:1;46415:6;46411:14;46404:58;46496:20;46491:2;46483:6;46479:15;46472:45;46287:237;:::o;46530:225::-;46670:34;46666:1;46658:6;46654:14;46647:58;46739:8;46734:2;46726:6;46722:15;46715:33;46530:225;:::o;46761:167::-;46901:19;46897:1;46889:6;46885:14;46878:43;46761:167;:::o;46934:178::-;47074:30;47070:1;47062:6;47058:14;47051:54;46934:178;:::o;47118:223::-;47258:34;47254:1;47246:6;47242:14;47235:58;47327:6;47322:2;47314:6;47310:15;47303:31;47118:223;:::o;47347:175::-;47487:27;47483:1;47475:6;47471:14;47464:51;47347:175;:::o;47528:171::-;47668:23;47664:1;47656:6;47652:14;47645:47;47528:171;:::o;47705:231::-;47845:34;47841:1;47833:6;47829:14;47822:58;47914:14;47909:2;47901:6;47897:15;47890:39;47705:231;:::o;47942:170::-;48082:22;48078:1;48070:6;48066:14;48059:46;47942:170;:::o;48118:243::-;48258:34;48254:1;48246:6;48242:14;48235:58;48327:26;48322:2;48314:6;48310:15;48303:51;48118:243;:::o;48367:229::-;48507:34;48503:1;48495:6;48491:14;48484:58;48576:12;48571:2;48563:6;48559:15;48552:37;48367:229;:::o;48602:228::-;48742:34;48738:1;48730:6;48726:14;48719:58;48811:11;48806:2;48798:6;48794:15;48787:36;48602:228;:::o;48836:172::-;48976:24;48972:1;48964:6;48960:14;48953:48;48836:172;:::o;49014:175::-;49154:27;49150:1;49142:6;49138:14;49131:51;49014:175;:::o;49195:178::-;49335:30;49331:1;49323:6;49319:14;49312:54;49195:178;:::o;49379:182::-;49519:34;49515:1;49507:6;49503:14;49496:58;49379:182;:::o;49567:225::-;49707:34;49703:1;49695:6;49691:14;49684:58;49776:8;49771:2;49763:6;49759:15;49752:33;49567:225;:::o;49798:231::-;49938:34;49934:1;49926:6;49922:14;49915:58;50007:14;50002:2;49994:6;49990:15;49983:39;49798:231;:::o;50035:182::-;50175:34;50171:1;50163:6;50159:14;50152:58;50035:182;:::o;50223:228::-;50363:34;50359:1;50351:6;50347:14;50340:58;50432:11;50427:2;50419:6;50415:15;50408:36;50223:228;:::o;50457:234::-;50597:34;50593:1;50585:6;50581:14;50574:58;50666:17;50661:2;50653:6;50649:15;50642:42;50457:234;:::o;50697:176::-;50837:28;50833:1;50825:6;50821:14;50814:52;50697:176;:::o;50879:220::-;51019:34;51015:1;51007:6;51003:14;50996:58;51088:3;51083:2;51075:6;51071:15;51064:28;50879:220;:::o;51105:236::-;51245:34;51241:1;51233:6;51229:14;51222:58;51314:19;51309:2;51301:6;51297:15;51290:44;51105:236;:::o;51347:231::-;51487:34;51483:1;51475:6;51471:14;51464:58;51556:14;51551:2;51543:6;51539:15;51532:39;51347:231;:::o;51584:176::-;51724:28;51720:1;51712:6;51708:14;51701:52;51584:176;:::o;51766:173::-;51906:25;51902:1;51894:6;51890:14;51883:49;51766:173;:::o;51945:122::-;52018:24;52036:5;52018:24;:::i;:::-;52011:5;52008:35;51998:63;;52057:1;52054;52047:12;51998:63;51945:122;:::o;52073:116::-;52143:21;52158:5;52143:21;:::i;:::-;52136:5;52133:32;52123:60;;52179:1;52176;52169:12;52123:60;52073:116;:::o;52195:120::-;52267:23;52284:5;52267:23;:::i;:::-;52260:5;52257:34;52247:62;;52305:1;52302;52295:12;52247:62;52195:120;:::o;52321:122::-;52394:24;52412:5;52394:24;:::i;:::-;52387:5;52384:35;52374:63;;52433:1;52430;52423:12;52374:63;52321:122;:::o

Swarm Source

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