ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

MendelEx∞dus (MNDLXODUS)
 

Overview

Max Total Supply

1,800 MNDLXODUS

Holders

622

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MNDLXODUS
0xf3fd2559f26620d955cdada82199c02a16c24077
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MendelExoodus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 16: MendelExoodus.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import { ERC721A } from "./ERC721A.sol";
import { ERC721ALowCap } from "./ERC721ALowCap.sol";
import { Ownable } from "./Ownable.sol";
import { ECDSA } from "./ECDSA.sol";
import { Strings } from "./Strings.sol";
import { PaymentSplitter } from "./PaymentSplitter.sol";

contract MendelExoodus is Ownable, ERC721A, ERC721ALowCap, PaymentSplitter {
    // To concatenate the URL of an NFT
    using Strings for uint;
    // To verify mint signatures
    using ECDSA for bytes32;

    enum SaleDay { CLOSED, PRESALE_DAY_1, PRESALE_DAY_2, PUBLIC }

    // Used to disallow contracts from sending multiple mint transactions in one tx
    modifier directOnly {
        require(msg.sender == tx.origin);
        _;
    }

    // Constants

    uint constant public cost = 0.1 ether;
    uint constant public maxMintSupply = 7770;
    uint public FreeMintMaxSupply = 940; // Free mint for Genesis + for team + for giveaways
    uint public publicMaxSupply = maxMintSupply - FreeMintMaxSupply;  // Used for public and whitelist mints
    uint constant public maxTxMintAmount = 7;

    address constant signer = 0x6a6b0c3D0c9123777eA2bF2e6344071a18da3c42;

    // Storage Variables

    uint public FreeMintSupplyMinted = 0;

    string public baseURI;

    bool public isFreeMintActive;

    /*
     * Values go in the order they are defined in the Enum
     * 0: CLOSED
     * 1: PRESALE_DAY_1
     * 2: PRESALE_DAY_2
     * 3: PUBLIC
     */
    SaleDay public saleDay;


    constructor(string memory _theBaseURI, address[] memory payees, uint[] memory shares)
        Ownable()
        ERC721A(unicode"MendelEx∞dus", "MNDLXODUS")
        PaymentSplitter(payees, shares)
    {
        baseURI = _theBaseURI;
    }

    // Minting

    function freeMint(address to, uint32 amountToMint, uint maxMintsFree, uint8 v, bytes32 r, bytes32 s) external directOnly {
        require(isFreeMintActive, "Free mint is not active");

        // Mint amount limits
        require(amountToMint > 0 && _addToMintFree(msg.sender, amountToMint) <= maxMintsFree, "Sorry, invalid amount");
        require((FreeMintSupplyMinted += amountToMint) <= FreeMintMaxSupply, "Sorry, not enough NFTs remaining to mint");

        // Signature verification
        require(_verifySignature(keccak256(abi.encodePacked("free", msg.sender, maxMintsFree)), v, r, s), "Invalid sig");

        // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens
        uint mintedSoFar = 0;
        do {
            uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount);
            mintedSoFar += batchAmount;
            _mint(to, batchAmount);
        } while(mintedSoFar < amountToMint);
    }

    function presaleMint(uint32 amountToMint, uint maxAmountDay1, uint maxAmountDay2, uint8 v, bytes32 r, bytes32 s) external payable directOnly {
        require(saleDay == SaleDay.PRESALE_DAY_1 || saleDay == SaleDay.PRESALE_DAY_2, "Sorry, presale is not active");

        // Mint amount limits
        require(_totalMinted() + amountToMint <= publicMaxSupply + FreeMintSupplyMinted, "Sorry, not enough NFTs remaining to mint");

        if(saleDay == SaleDay.PRESALE_DAY_1) {
            require(_addToMintDay1(msg.sender, amountToMint) <= maxAmountDay1, "Sorry, can't mint that many");
        } else { // saleDay == SaleDay.PRESALE_DAY_2
            require(_addToMintDay2(msg.sender, amountToMint) <= maxAmountDay2, "Sorry, can't mint that many");
        }

        // Signature verification
        require(_verifySignature(keccak256(abi.encodePacked("presale", msg.sender, maxAmountDay1, maxAmountDay2)), v, r, s), "Invalid sig");

        // ETH sent verification
        require(msg.value >= cost * amountToMint);

        // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens
        uint mintedSoFar = 0;
        do {
            uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount);
            mintedSoFar += batchAmount;
            _mint(msg.sender, batchAmount);
        } while(mintedSoFar < amountToMint);
    }

    function publicMint(uint amountToMint) external payable directOnly {
        require(saleDay == SaleDay.PUBLIC, "Sorry, public sale is not active");

        // Mint amount limits
        require(_totalMinted() + amountToMint <= publicMaxSupply + FreeMintSupplyMinted, "Sorry, not enough NFTs remaining to mint");
        require(amountToMint > 0 && amountToMint <= maxTxMintAmount, "Sorry, invalid mint amount");

        // ETH sent verification
        require(msg.value >= cost * amountToMint);

        _mint(msg.sender, amountToMint);
    }

    // View Only

    function tokenURI(uint _nftId) public view override returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist");

        return string(abi.encodePacked(baseURI, _nftId.toString(), ".json"));
    }

    // Only Owner Functions

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

    function setFreeMintMaxSupply(uint _freeMintMaxSupply) external onlyOwner {
        FreeMintMaxSupply = _freeMintMaxSupply;
    }

    function setMintDay(SaleDay day) external onlyOwner {
        saleDay = day;
    }

    function toggleFreeMintStatus() external onlyOwner {
        isFreeMintActive = !isFreeMintActive;
    }

    // Internal utils

    function _verifySignature(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns(bool) {
        return hash.toEthSignedMessageHash().recover(v, r, s) == signer;
    }

    function min(uint a,uint b) internal pure returns(uint) {
        return a < b ? a : b;
    }
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 16: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 16: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 5 of 16: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
// Version: 3.2.0

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint32 numberBurned;

        uint32 mintedDay1;
        uint32 mintedDay2;
        uint32 mintedFree;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function numberMinted(address owner) public view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Mint data handlers
     */
    function getMintData(address owner) external view returns (uint mintedDay1, uint mintedDay2, uint mintedFree) {
        AddressData memory addressData = _addressData[owner];
        return (addressData.mintedDay1, addressData.mintedDay2, addressData.mintedFree);
    }

    function _addToMintDay1(address owner, uint32 amount) internal returns(uint32 newValue) {
        return (_addressData[owner].mintedDay1 += amount);
    }

    function _addToMintDay2(address owner, uint32 amount) internal returns(uint32 newValue) {
        return (_addressData[owner].mintedDay2 += amount);
    }

    function _addToMintFree(address owner, uint32 amount) internal returns(uint32 newValue) {
       return  (_addressData[owner].mintedFree += amount);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);
            _currentIndex = updatedIndex;
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }
}

File 6 of 16: ERC721ALowCap.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './ERC721A.sol';

/**
 * @title ERC721A Low Cap
 * @dev ERC721A Helper functions for Low Cap (<= 10,000) totalSupply.
 */
abstract contract ERC721ALowCap is ERC721A {
    /**
     * @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
     */
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 holdingAmount = balanceOf(owner);
        uint256 currSupply = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        uint256[] memory list = new uint256[](holdingAmount);

        unchecked {
            for (uint256 i = _startTokenId(); i < currSupply; ++i) {
                TokenOwnership memory ownership = _ownerships[i];

                if (ownership.burned) {
                    continue;
                }

                // Find out who owns this sequence
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }

                // Append tokens the last found owner owns in the sequence
                if (currOwnershipAddr == owner) {
                    list[tokenIdsIdx++] = i;
                }

                // All tokens have been found, we don't need to keep searching
                if (tokenIdsIdx == holdingAmount) {
                    break;
                }
            }
        }

        return list;
    }
}

File 7 of 16: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 8 of 16: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 9 of 16: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 11 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 14 of 16: PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "./SafeERC20.sol";
import "./Address.sol";
import "./Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 15 of 16: SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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":"_theBaseURI","type":"string"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"FreeMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMintSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amountToMint","type":"uint32"},{"internalType":"uint256","name":"maxMintsFree","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintData","outputs":[{"internalType":"uint256","name":"mintedDay1","type":"uint256"},{"internalType":"uint256","name":"mintedDay2","type":"uint256"},{"internalType":"uint256","name":"mintedFree","type":"uint256"}],"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":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amountToMint","type":"uint32"},{"internalType":"uint256","name":"maxAmountDay1","type":"uint256"},{"internalType":"uint256","name":"maxAmountDay2","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleDay","outputs":[{"internalType":"enum MendelExoodus.SaleDay","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMaxSupply","type":"uint256"}],"name":"setFreeMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MendelExoodus.SaleDay","name":"day","type":"uint8"}],"name":"setMintDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]

60806040526103ac60108190556200001a90611e5a620007a9565b60115560006012553480156200002f57600080fd5b5060405162003ae138038062003ae1833981016040819052620000529162000629565b81816040518060400160405280600e81526020016d4d656e64656c4578e2889e64757360901b815250604051806040016040528060098152602001684d4e444c584f44555360b81b815250620000b7620000b16200023c60201b60201c565b62000240565b8151620000cc9060039060208501906200047e565b508051620000e29060049060208401906200047e565b5060018055505080518251146200015b5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001ae5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000152565b60005b82518110156200021a5762000205838281518110620001d457620001d462000834565b6020026020010151838381518110620001f157620001f162000834565b60200260200101516200029060201b60201c565b80620002118162000800565b915050620001b1565b5050835162000232915060139060208601906200047e565b5050505062000860565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002fd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000152565b600081116200034f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000152565b6001600160a01b0382166000908152600b602052604090205415620003cb5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000152565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620004359082906200078e565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200048c90620007c3565b90600052602060002090601f016020900481019282620004b05760008555620004fb565b82601f10620004cb57805160ff1916838001178555620004fb565b82800160010185558215620004fb579182015b82811115620004fb578251825591602001919060010190620004de565b50620005099291506200050d565b5090565b5b808211156200050957600081556001016200050e565b600082601f8301126200053657600080fd5b815160206200054f620005498362000768565b62000735565b80838252828201915082860187848660051b89010111156200057057600080fd5b6000805b86811015620005a75782516001600160a01b038116811462000594578283fd5b8552938501939185019160010162000574565b509198975050505050505050565b600082601f830112620005c757600080fd5b81516020620005da620005498362000768565b80838252828201915082860187848660051b8901011115620005fb57600080fd5b60005b858110156200061c57815184529284019290840190600101620005fe565b5090979650505050505050565b6000806000606084860312156200063f57600080fd5b83516001600160401b03808211156200065757600080fd5b818601915086601f8301126200066c57600080fd5b8151818111156200068157620006816200084a565b602062000697601f8301601f1916820162000735565b8281528982848701011115620006ac57600080fd5b60005b83811015620006cc578581018301518282018401528201620006af565b83811115620006de5760008385840101525b509088015190965092505080821115620006f757600080fd5b620007058783880162000524565b935060408601519150808211156200071c57600080fd5b506200072b86828701620005b5565b9150509250925092565b604051601f8201601f191681016001600160401b03811182821017156200076057620007606200084a565b604052919050565b60006001600160401b038211156200078457620007846200084a565b5060051b60200190565b60008219821115620007a457620007a46200081e565b500190565b600082821015620007be57620007be6200081e565b500390565b600181811c90821680620007d857607f821691505b60208210811415620007fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200081757620008176200081e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61327180620008706000396000f3fe6080604052600436106102765760003560e01c806376896d8c1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461088d578063e33b7de3146108d3578063e985e9c5146108e8578063f2fde38b14610931578063fd5b5a0b14610951578063ff12ec741461096757600080fd5b8063b88d4fde146107ab578063c285e107146107cb578063c87b56dd146107e1578063ce7c2ac214610801578063d79779b214610837578063d7b4c4661461086d57600080fd5b80638b83209b116101135780638b83209b146106ef5780638da5cb5b1461070f57806390123fa01461072d57806395d89b41146107405780639852595c14610755578063a22cb4651461078b57600080fd5b806376896d8c1461065257806378cbcf23146106725780637a5b85c1146106885780638462151c146106a25780638764dfad146106cf57600080fd5b80633a98ef39116101e857806355f804b3116101ac57806355f804b3146105b25780636352211e146105d2578063676229a6146105f25780636c0360eb1461060857806370a082311461061d578063715018a61461063d57600080fd5b80633a98ef3914610450578063406072a91461046557806342842e0e146104ab57806348b75044146104cb578063514553e2146104eb57600080fd5b806313faede61161023a57806313faede61461039857806318160ddd146103b457806319165587146103d157806323b872dd146103f15780632db115441461041157806339ea3e261461042457600080fd5b806301ffc9a7146102c457806306fdde03146102f9578063081812fc1461031b578063095ea7b3146103535780631275c52e1461037557600080fd5b366102bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102d057600080fd5b506102e46102df366004612c78565b61097c565b60405190151581526020015b60405180910390f35b34801561030557600080fd5b5061030e6109ce565b6040516102f09190612f53565b34801561032757600080fd5b5061033b610336366004612d1b565b610a60565b6040516001600160a01b0390911681526020016102f0565b34801561035f57600080fd5b5061037361036e366004612bce565b610aa4565b005b34801561038157600080fd5b5061038a600781565b6040519081526020016102f0565b3480156103a457600080fd5b5061038a67016345785d8a000081565b3480156103c057600080fd5b50600254600154036000190161038a565b3480156103dd57600080fd5b506103736103ec366004612a8a565b610b32565b3480156103fd57600080fd5b5061037361040c366004612ae0565b610c69565b61037361041f366004612d1b565b610c74565b34801561043057600080fd5b5060145461044390610100900460ff1681565b6040516102f09190612f2b565b34801561045c57600080fd5b5060095461038a565b34801561047157600080fd5b5061038a610480366004612aa7565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104b757600080fd5b506103736104c6366004612ae0565b610db9565b3480156104d757600080fd5b506103736104e6366004612aa7565b610dd4565b3480156104f757600080fd5b50610597610506366004612a8a565b6001600160a01b038116600090815260066020908152604091829020825160c08101845290546001600160401b038082168352600160401b8204169282019290925263ffffffff600160801b8304811693820193909352600160a01b8204831660608201819052600160c01b8304841660808301819052600160e01b90930490931660a09091018190529193909250565b604080519384526020840192909252908201526060016102f0565b3480156105be57600080fd5b506103736105cd366004612cd3565b610fbc565b3480156105de57600080fd5b5061033b6105ed366004612d1b565b610ffd565b3480156105fe57600080fd5b5061038a60125481565b34801561061457600080fd5b5061030e61100f565b34801561062957600080fd5b5061038a610638366004612a8a565b61109d565b34801561064957600080fd5b506103736110eb565b34801561065e57600080fd5b5061037361066d366004612d1b565b611121565b34801561067e57600080fd5b5061038a60115481565b34801561069457600080fd5b506014546102e49060ff1681565b3480156106ae57600080fd5b506106c26106bd366004612a8a565b611150565b6040516102f09190612ee7565b3480156106db57600080fd5b506103736106ea366004612bfa565b61128d565b3480156106fb57600080fd5b5061033b61070a366004612d1b565b611470565b34801561071b57600080fd5b506000546001600160a01b031661033b565b61037361073b366004612d4d565b6114a0565b34801561074c57600080fd5b5061030e61175a565b34801561076157600080fd5b5061038a610770366004612a8a565b6001600160a01b03166000908152600c602052604090205490565b34801561079757600080fd5b506103736107a6366004612ba0565b611769565b3480156107b757600080fd5b506103736107c6366004612b21565b6117ff565b3480156107d757600080fd5b5061038a611e5a81565b3480156107ed57600080fd5b5061030e6107fc366004612d1b565b611850565b34801561080d57600080fd5b5061038a61081c366004612a8a565b6001600160a01b03166000908152600b602052604090205490565b34801561084357600080fd5b5061038a610852366004612a8a565b6001600160a01b03166000908152600e602052604090205490565b34801561087957600080fd5b50610373610888366004612cb2565b6118d2565b34801561089957600080fd5b5061038a6108a8366004612a8a565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b3480156108df57600080fd5b50600a5461038a565b3480156108f457600080fd5b506102e4610903366004612aa7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561093d57600080fd5b5061037361094c366004612a8a565b611925565b34801561095d57600080fd5b5061038a60105481565b34801561097357600080fd5b506103736119bd565b60006001600160e01b031982166380ac58cd60e01b14806109ad57506001600160e01b03198216635b5e139f60e01b145b806109c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546109dd9061312a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a099061312a565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b6000610a6b826119fb565b610a88576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610aaf82610ffd565b9050806001600160a01b0316836001600160a01b03161415610ae45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b045750610b028133610903565b155b15610b22576040516367d9dca160e11b815260040160405180910390fd5b610b2d838383611a34565b505050565b6001600160a01b0381166000908152600b6020526040902054610b705760405162461bcd60e51b8152600401610b6790612f66565b60405180910390fd5b6000610b7b600a5490565b610b859047613074565b90506000610bb28383610bad866001600160a01b03166000908152600c602052604090205490565b611a90565b905080610bd15760405162461bcd60e51b8152600401610b6790612fac565b6001600160a01b0383166000908152600c602052604081208054839290610bf9908490613074565b9250508190555080600a6000828254610c129190613074565b90915550610c2290508382611ad8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b2d838383611bf1565b333214610c8057600080fd5b6003601454610100900460ff166003811115610c9e57610c9e6131c0565b14610ceb5760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610b67565b601254601154610cfb9190613074565b81610d096001546000190190565b610d139190613074565b1115610d315760405162461bcd60e51b8152600401610b6790612ff7565b600081118015610d42575060078111155b610d8e5760405162461bcd60e51b815260206004820152601a60248201527f536f7272792c20696e76616c6964206d696e7420616d6f756e740000000000006044820152606401610b67565b610da08167016345785d8a00006130c8565b341015610dac57600080fd5b610db63382611dde565b50565b610b2d838383604051806020016040528060008152506117ff565b6001600160a01b0381166000908152600b6020526040902054610e095760405162461bcd60e51b8152600401610b6790612f66565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610e6157600080fd5b505afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e999190612d34565b610ea39190613074565b90506000610edc8383610bad87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610efb5760405162461bcd60e51b8152600401610b6790612fac565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610f32908490613074565b90915550506001600160a01b0384166000908152600e602052604081208054839290610f5f908490613074565b90915550610f709050848483611f09565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b03163314610fe65760405162461bcd60e51b8152600401610b679061303f565b8051610ff9906013906020840190612952565b5050565b600061100882611f5b565b5192915050565b6013805461101c9061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061312a565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b505050505081565b60006001600160a01b0382166110c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111155760405162461bcd60e51b8152600401610b679061303f565b61111f6000612082565b565b6000546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610b679061303f565b601055565b6060600061115d8361109d565b60015490915060008080846001600160401b0381111561117f5761117f6131ec565b6040519080825280602002602001820160405280156111a8578160200160208202803683370190505b50905060015b8481101561128257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611215575061127a565b80516001600160a01b03161561122a57805193505b886001600160a01b0316846001600160a01b0316141561126a578183868060010197508151811061125d5761125d6131d6565b6020026020010181815250505b868514156112785750611282565b505b6001016111ae565b509695505050505050565b33321461129957600080fd5b60145460ff166112eb5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b67565b60008563ffffffff1611801561131057508361130733876120d2565b63ffffffff1611155b6113545760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610b67565b6010548563ffffffff166012600082825461136f9190613074565b92505081905511156113935760405162461bcd60e51b8152600401610b6790612ff7565b604051636672656560e01b60208201526bffffffffffffffffffffffff193360601b166024820152603881018590526113e8906058015b6040516020818303038152906040528051906020012084848461212f565b6114225760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610b67565b60005b600061144161143a8363ffffffff8a166130e7565b60076121c0565b905061144d8183613074565b91506114598882611dde565b508563ffffffff1681106114255750505050505050565b6000600d8281548110611485576114856131d6565b6000918252602090912001546001600160a01b031692915050565b3332146114ac57600080fd5b6001601454610100900460ff1660038111156114ca576114ca6131c0565b14806114f157506002601454610100900460ff1660038111156114ef576114ef6131c0565b145b61153d5760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c2070726573616c65206973206e6f7420616374697665000000006044820152606401610b67565b60125460115461154d9190613074565b8663ffffffff166115616001546000190190565b61156b9190613074565b11156115895760405162461bcd60e51b8152600401610b6790612ff7565b6001601454610100900460ff1660038111156115a7576115a76131c0565b141561161157846115b833886121d6565b63ffffffff16111561160c5760405162461bcd60e51b815260206004820152601b60248201527f536f7272792c2063616e2774206d696e742074686174206d616e7900000000006044820152606401610b67565b611670565b8361161c338861220e565b63ffffffff1611156116705760405162461bcd60e51b815260206004820152601b60248201527f536f7272792c2063616e2774206d696e742074686174206d616e7900000000006044820152606401610b67565b6040516670726573616c6560c81b60208201526bffffffffffffffffffffffff193360601b166027820152603b8101869052605b81018590526116b590607b016113ca565b6116ef5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610b67565b61170763ffffffff871667016345785d8a00006130c8565b34101561171357600080fd5b60005b600061172b61143a8363ffffffff8b166130e7565b90506117378183613074565b91506117433382611dde565b508663ffffffff1681106117165750505050505050565b6060600480546109dd9061312a565b6001600160a01b0382163314156117935760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61180a848484611bf1565b6001600160a01b0383163b1515801561182c575061182a84848484612246565b155b1561184a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061185b826119fb565b6118a05760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610b67565b60136118ab8361233a565b6040516020016118bc929190612def565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610b679061303f565b6014805482919061ff00191661010083600381111561191d5761191d6131c0565b021790555050565b6000546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610b679061303f565b6001600160a01b0381166119b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b67565b610db681612082565b6000546001600160a01b031633146119e75760405162461bcd60e51b8152600401610b679061303f565b6014805460ff19811660ff90911615179055565b600081600111158015611a0f575060015482105b80156109c8575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611aba90866130c8565b611ac491906130b4565b611ace91906130e7565b90505b9392505050565b80471015611b285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b67565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b75576040519150601f19603f3d011682016040523d82523d6000602084013e611b7a565b606091505b5050905080610b2d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b67565b6000611bfc82611f5b565b9050836001600160a01b031681600001516001600160a01b031614611c335760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c515750611c518533610903565b80611c6c575033611c6184610a60565b6001600160a01b0316145b905080611c8c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cb357604051633a954ecd60e21b815260040160405180910390fd5b611cbf60008487611a34565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d93576001548214611d9357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6001546001600160a01b038316611e0757604051622e076360e81b815260040160405180910390fd5b81611e255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ebc5750600155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b2d908490612437565b60408051606081018252600080825260208201819052918101919091528180600111158015611f8b575060015481105b1561206957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120675780516001600160a01b031615611ffe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612062579392505050565b611ffe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526006602052604081208054839190601c9061210a908490600160e01b900463ffffffff1661308c565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b6000736a6b0c3d0c9123777ea2bf2e6344071a18da3c426121ab8585856121a38a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190612509565b6001600160a01b03161490505b949350505050565b60008183106121cf5781611ad1565b5090919050565b6001600160a01b0382166000908152600660205260408120805483919060149061210a908490600160a01b900463ffffffff1661308c565b6001600160a01b0382166000908152600660205260408120805483919060189061210a908490600160c01b900463ffffffff1661308c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061227b903390899088908890600401612eaa565b602060405180830381600087803b15801561229557600080fd5b505af19250505080156122c5575060408051601f3d908101601f191682019092526122c291810190612c95565b60015b612320573d8080156122f3576040519150601f19603f3d011682016040523d82523d6000602084013e6122f8565b606091505b508051612318576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121b8565b60608161235e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612388578061237281613165565b91506123819050600a836130b4565b9150612362565b6000816001600160401b038111156123a2576123a26131ec565b6040519080825280601f01601f1916602001820160405280156123cc576020820181803683370190505b5090505b84156121b8576123e16001836130e7565b91506123ee600a86613180565b6123f9906030613074565b60f81b81838151811061240e5761240e6131d6565b60200101906001600160f81b031916908160001a905350612430600a866130b4565b94506123d0565b600061248c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125319092919063ffffffff16565b805190915015610b2d57808060200190518101906124aa9190612c5b565b610b2d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b67565b600080600061251a87878787612540565b915091506125278161262d565b5095945050505050565b6060611ace84846000856127e8565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125775750600090506003612624565b8460ff16601b1415801561258f57508460ff16601c14155b156125a05750600090506004612624565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661261d57600060019250925050612624565b9150600090505b94509492505050565b6000816004811115612641576126416131c0565b141561264a5750565b600181600481111561265e5761265e6131c0565b14156126ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b67565b60028160048111156126c0576126c06131c0565b141561270e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b67565b6003816004811115612722576127226131c0565b141561277b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b67565b600481600481111561278f5761278f6131c0565b1415610db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b67565b6060824710156128495760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b67565b6001600160a01b0385163b6128a05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b67565b600080866001600160a01b031685876040516128bc9190612dd3565b60006040518083038185875af1925050503d80600081146128f9576040519150601f19603f3d011682016040523d82523d6000602084013e6128fe565b606091505b509150915061290e828286612919565b979650505050505050565b60608315612928575081611ad1565b8251156129385782518084602001fd5b8160405162461bcd60e51b8152600401610b679190612f53565b82805461295e9061312a565b90600052602060002090601f01602090048101928261298057600085556129c6565b82601f1061299957805160ff19168380011785556129c6565b828001600101855582156129c6579182015b828111156129c65782518255916020019190600101906129ab565b506129d29291506129d6565b5090565b5b808211156129d257600081556001016129d7565b60006001600160401b0380841115612a0557612a056131ec565b604051601f8501601f19908116603f01168101908282118183101715612a2d57612a2d6131ec565b81604052809350858152868686011115612a4657600080fd5b858560208301376000602087830101525050509392505050565b803563ffffffff81168114612a7457600080fd5b919050565b803560ff81168114612a7457600080fd5b600060208284031215612a9c57600080fd5b8135611ad181613202565b60008060408385031215612aba57600080fd5b8235612ac581613202565b91506020830135612ad581613202565b809150509250929050565b600080600060608486031215612af557600080fd5b8335612b0081613202565b92506020840135612b1081613202565b929592945050506040919091013590565b60008060008060808587031215612b3757600080fd5b8435612b4281613202565b93506020850135612b5281613202565b92506040850135915060608501356001600160401b03811115612b7457600080fd5b8501601f81018713612b8557600080fd5b612b94878235602084016129eb565b91505092959194509250565b60008060408385031215612bb357600080fd5b8235612bbe81613202565b91506020830135612ad581613217565b60008060408385031215612be157600080fd5b8235612bec81613202565b946020939093013593505050565b60008060008060008060c08789031215612c1357600080fd5b8635612c1e81613202565b9550612c2c60208801612a60565b945060408701359350612c4160608801612a79565b92506080870135915060a087013590509295509295509295565b600060208284031215612c6d57600080fd5b8151611ad181613217565b600060208284031215612c8a57600080fd5b8135611ad181613225565b600060208284031215612ca757600080fd5b8151611ad181613225565b600060208284031215612cc457600080fd5b813560048110611ad157600080fd5b600060208284031215612ce557600080fd5b81356001600160401b03811115612cfb57600080fd5b8201601f81018413612d0c57600080fd5b6121b8848235602084016129eb565b600060208284031215612d2d57600080fd5b5035919050565b600060208284031215612d4657600080fd5b5051919050565b60008060008060008060c08789031215612d6657600080fd5b612d6f87612a60565b95506020870135945060408701359350612c4160608801612a79565b60008151808452612da38160208601602086016130fe565b601f01601f19169290920160200192915050565b60008151612dc98185602086016130fe565b9290920192915050565b60008251612de58184602087016130fe565b9190910192915050565b600080845481600182811c915080831680612e0b57607f831692505b6020808410821415612e2b57634e487b7160e01b86526022600452602486fd5b818015612e3f5760018114612e5057612e7d565b60ff19861689528489019650612e7d565b60008b81526020902060005b86811015612e755781548b820152908501908301612e5c565b505084890196505b505050505050612ea1612e908286612db7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612edd90830184612d8b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1f57835183529284019291840191600101612f03565b50909695505050505050565b6020810160048310612f4d57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611ad16020830184612d8b565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561308757613087613194565b500190565b600063ffffffff8083168185168083038211156130ab576130ab613194565b01949350505050565b6000826130c3576130c36131aa565b500490565b60008160001904831182151516156130e2576130e2613194565b500290565b6000828210156130f9576130f9613194565b500390565b60005b83811015613119578181015183820152602001613101565b8381111561184a5750506000910152565b600181811c9082168061313e57607f821691505b6020821081141561315f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561317957613179613194565b5060010190565b60008261318f5761318f6131aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610db657600080fd5b8015158114610db657600080fd5b6001600160e01b031981168114610db657600080fdfea26469706673582212203546e7e6e06d1b13dc3ab67093b7fc3addbaea3a16acc97a8fcef7073523c82664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d596e535a456f6232616d547658573472725571414a7a48696d7972314b33356b725432336e413853526678502f000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004911bfc29c707d958a5d913459d05732352d6b77000000000000000000000000cbc5b135f1d8d26e6b3098dd17f0b5be58a243a70000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e000000000000000000000000680754db2c329e745b033f45cd781669bd15779b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x6080604052600436106102765760003560e01c806376896d8c1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461088d578063e33b7de3146108d3578063e985e9c5146108e8578063f2fde38b14610931578063fd5b5a0b14610951578063ff12ec741461096757600080fd5b8063b88d4fde146107ab578063c285e107146107cb578063c87b56dd146107e1578063ce7c2ac214610801578063d79779b214610837578063d7b4c4661461086d57600080fd5b80638b83209b116101135780638b83209b146106ef5780638da5cb5b1461070f57806390123fa01461072d57806395d89b41146107405780639852595c14610755578063a22cb4651461078b57600080fd5b806376896d8c1461065257806378cbcf23146106725780637a5b85c1146106885780638462151c146106a25780638764dfad146106cf57600080fd5b80633a98ef39116101e857806355f804b3116101ac57806355f804b3146105b25780636352211e146105d2578063676229a6146105f25780636c0360eb1461060857806370a082311461061d578063715018a61461063d57600080fd5b80633a98ef3914610450578063406072a91461046557806342842e0e146104ab57806348b75044146104cb578063514553e2146104eb57600080fd5b806313faede61161023a57806313faede61461039857806318160ddd146103b457806319165587146103d157806323b872dd146103f15780632db115441461041157806339ea3e261461042457600080fd5b806301ffc9a7146102c457806306fdde03146102f9578063081812fc1461031b578063095ea7b3146103535780631275c52e1461037557600080fd5b366102bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102d057600080fd5b506102e46102df366004612c78565b61097c565b60405190151581526020015b60405180910390f35b34801561030557600080fd5b5061030e6109ce565b6040516102f09190612f53565b34801561032757600080fd5b5061033b610336366004612d1b565b610a60565b6040516001600160a01b0390911681526020016102f0565b34801561035f57600080fd5b5061037361036e366004612bce565b610aa4565b005b34801561038157600080fd5b5061038a600781565b6040519081526020016102f0565b3480156103a457600080fd5b5061038a67016345785d8a000081565b3480156103c057600080fd5b50600254600154036000190161038a565b3480156103dd57600080fd5b506103736103ec366004612a8a565b610b32565b3480156103fd57600080fd5b5061037361040c366004612ae0565b610c69565b61037361041f366004612d1b565b610c74565b34801561043057600080fd5b5060145461044390610100900460ff1681565b6040516102f09190612f2b565b34801561045c57600080fd5b5060095461038a565b34801561047157600080fd5b5061038a610480366004612aa7565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104b757600080fd5b506103736104c6366004612ae0565b610db9565b3480156104d757600080fd5b506103736104e6366004612aa7565b610dd4565b3480156104f757600080fd5b50610597610506366004612a8a565b6001600160a01b038116600090815260066020908152604091829020825160c08101845290546001600160401b038082168352600160401b8204169282019290925263ffffffff600160801b8304811693820193909352600160a01b8204831660608201819052600160c01b8304841660808301819052600160e01b90930490931660a09091018190529193909250565b604080519384526020840192909252908201526060016102f0565b3480156105be57600080fd5b506103736105cd366004612cd3565b610fbc565b3480156105de57600080fd5b5061033b6105ed366004612d1b565b610ffd565b3480156105fe57600080fd5b5061038a60125481565b34801561061457600080fd5b5061030e61100f565b34801561062957600080fd5b5061038a610638366004612a8a565b61109d565b34801561064957600080fd5b506103736110eb565b34801561065e57600080fd5b5061037361066d366004612d1b565b611121565b34801561067e57600080fd5b5061038a60115481565b34801561069457600080fd5b506014546102e49060ff1681565b3480156106ae57600080fd5b506106c26106bd366004612a8a565b611150565b6040516102f09190612ee7565b3480156106db57600080fd5b506103736106ea366004612bfa565b61128d565b3480156106fb57600080fd5b5061033b61070a366004612d1b565b611470565b34801561071b57600080fd5b506000546001600160a01b031661033b565b61037361073b366004612d4d565b6114a0565b34801561074c57600080fd5b5061030e61175a565b34801561076157600080fd5b5061038a610770366004612a8a565b6001600160a01b03166000908152600c602052604090205490565b34801561079757600080fd5b506103736107a6366004612ba0565b611769565b3480156107b757600080fd5b506103736107c6366004612b21565b6117ff565b3480156107d757600080fd5b5061038a611e5a81565b3480156107ed57600080fd5b5061030e6107fc366004612d1b565b611850565b34801561080d57600080fd5b5061038a61081c366004612a8a565b6001600160a01b03166000908152600b602052604090205490565b34801561084357600080fd5b5061038a610852366004612a8a565b6001600160a01b03166000908152600e602052604090205490565b34801561087957600080fd5b50610373610888366004612cb2565b6118d2565b34801561089957600080fd5b5061038a6108a8366004612a8a565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b3480156108df57600080fd5b50600a5461038a565b3480156108f457600080fd5b506102e4610903366004612aa7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561093d57600080fd5b5061037361094c366004612a8a565b611925565b34801561095d57600080fd5b5061038a60105481565b34801561097357600080fd5b506103736119bd565b60006001600160e01b031982166380ac58cd60e01b14806109ad57506001600160e01b03198216635b5e139f60e01b145b806109c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546109dd9061312a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a099061312a565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b6000610a6b826119fb565b610a88576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610aaf82610ffd565b9050806001600160a01b0316836001600160a01b03161415610ae45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b045750610b028133610903565b155b15610b22576040516367d9dca160e11b815260040160405180910390fd5b610b2d838383611a34565b505050565b6001600160a01b0381166000908152600b6020526040902054610b705760405162461bcd60e51b8152600401610b6790612f66565b60405180910390fd5b6000610b7b600a5490565b610b859047613074565b90506000610bb28383610bad866001600160a01b03166000908152600c602052604090205490565b611a90565b905080610bd15760405162461bcd60e51b8152600401610b6790612fac565b6001600160a01b0383166000908152600c602052604081208054839290610bf9908490613074565b9250508190555080600a6000828254610c129190613074565b90915550610c2290508382611ad8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b2d838383611bf1565b333214610c8057600080fd5b6003601454610100900460ff166003811115610c9e57610c9e6131c0565b14610ceb5760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610b67565b601254601154610cfb9190613074565b81610d096001546000190190565b610d139190613074565b1115610d315760405162461bcd60e51b8152600401610b6790612ff7565b600081118015610d42575060078111155b610d8e5760405162461bcd60e51b815260206004820152601a60248201527f536f7272792c20696e76616c6964206d696e7420616d6f756e740000000000006044820152606401610b67565b610da08167016345785d8a00006130c8565b341015610dac57600080fd5b610db63382611dde565b50565b610b2d838383604051806020016040528060008152506117ff565b6001600160a01b0381166000908152600b6020526040902054610e095760405162461bcd60e51b8152600401610b6790612f66565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610e6157600080fd5b505afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e999190612d34565b610ea39190613074565b90506000610edc8383610bad87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610efb5760405162461bcd60e51b8152600401610b6790612fac565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610f32908490613074565b90915550506001600160a01b0384166000908152600e602052604081208054839290610f5f908490613074565b90915550610f709050848483611f09565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b03163314610fe65760405162461bcd60e51b8152600401610b679061303f565b8051610ff9906013906020840190612952565b5050565b600061100882611f5b565b5192915050565b6013805461101c9061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061312a565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b505050505081565b60006001600160a01b0382166110c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111155760405162461bcd60e51b8152600401610b679061303f565b61111f6000612082565b565b6000546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610b679061303f565b601055565b6060600061115d8361109d565b60015490915060008080846001600160401b0381111561117f5761117f6131ec565b6040519080825280602002602001820160405280156111a8578160200160208202803683370190505b50905060015b8481101561128257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611215575061127a565b80516001600160a01b03161561122a57805193505b886001600160a01b0316846001600160a01b0316141561126a578183868060010197508151811061125d5761125d6131d6565b6020026020010181815250505b868514156112785750611282565b505b6001016111ae565b509695505050505050565b33321461129957600080fd5b60145460ff166112eb5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b67565b60008563ffffffff1611801561131057508361130733876120d2565b63ffffffff1611155b6113545760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610b67565b6010548563ffffffff166012600082825461136f9190613074565b92505081905511156113935760405162461bcd60e51b8152600401610b6790612ff7565b604051636672656560e01b60208201526bffffffffffffffffffffffff193360601b166024820152603881018590526113e8906058015b6040516020818303038152906040528051906020012084848461212f565b6114225760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610b67565b60005b600061144161143a8363ffffffff8a166130e7565b60076121c0565b905061144d8183613074565b91506114598882611dde565b508563ffffffff1681106114255750505050505050565b6000600d8281548110611485576114856131d6565b6000918252602090912001546001600160a01b031692915050565b3332146114ac57600080fd5b6001601454610100900460ff1660038111156114ca576114ca6131c0565b14806114f157506002601454610100900460ff1660038111156114ef576114ef6131c0565b145b61153d5760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c2070726573616c65206973206e6f7420616374697665000000006044820152606401610b67565b60125460115461154d9190613074565b8663ffffffff166115616001546000190190565b61156b9190613074565b11156115895760405162461bcd60e51b8152600401610b6790612ff7565b6001601454610100900460ff1660038111156115a7576115a76131c0565b141561161157846115b833886121d6565b63ffffffff16111561160c5760405162461bcd60e51b815260206004820152601b60248201527f536f7272792c2063616e2774206d696e742074686174206d616e7900000000006044820152606401610b67565b611670565b8361161c338861220e565b63ffffffff1611156116705760405162461bcd60e51b815260206004820152601b60248201527f536f7272792c2063616e2774206d696e742074686174206d616e7900000000006044820152606401610b67565b6040516670726573616c6560c81b60208201526bffffffffffffffffffffffff193360601b166027820152603b8101869052605b81018590526116b590607b016113ca565b6116ef5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610b67565b61170763ffffffff871667016345785d8a00006130c8565b34101561171357600080fd5b60005b600061172b61143a8363ffffffff8b166130e7565b90506117378183613074565b91506117433382611dde565b508663ffffffff1681106117165750505050505050565b6060600480546109dd9061312a565b6001600160a01b0382163314156117935760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61180a848484611bf1565b6001600160a01b0383163b1515801561182c575061182a84848484612246565b155b1561184a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061185b826119fb565b6118a05760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610b67565b60136118ab8361233a565b6040516020016118bc929190612def565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610b679061303f565b6014805482919061ff00191661010083600381111561191d5761191d6131c0565b021790555050565b6000546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610b679061303f565b6001600160a01b0381166119b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b67565b610db681612082565b6000546001600160a01b031633146119e75760405162461bcd60e51b8152600401610b679061303f565b6014805460ff19811660ff90911615179055565b600081600111158015611a0f575060015482105b80156109c8575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611aba90866130c8565b611ac491906130b4565b611ace91906130e7565b90505b9392505050565b80471015611b285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b67565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b75576040519150601f19603f3d011682016040523d82523d6000602084013e611b7a565b606091505b5050905080610b2d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b67565b6000611bfc82611f5b565b9050836001600160a01b031681600001516001600160a01b031614611c335760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c515750611c518533610903565b80611c6c575033611c6184610a60565b6001600160a01b0316145b905080611c8c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cb357604051633a954ecd60e21b815260040160405180910390fd5b611cbf60008487611a34565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d93576001548214611d9357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6001546001600160a01b038316611e0757604051622e076360e81b815260040160405180910390fd5b81611e255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ebc5750600155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b2d908490612437565b60408051606081018252600080825260208201819052918101919091528180600111158015611f8b575060015481105b1561206957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120675780516001600160a01b031615611ffe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612062579392505050565b611ffe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526006602052604081208054839190601c9061210a908490600160e01b900463ffffffff1661308c565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b6000736a6b0c3d0c9123777ea2bf2e6344071a18da3c426121ab8585856121a38a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190612509565b6001600160a01b03161490505b949350505050565b60008183106121cf5781611ad1565b5090919050565b6001600160a01b0382166000908152600660205260408120805483919060149061210a908490600160a01b900463ffffffff1661308c565b6001600160a01b0382166000908152600660205260408120805483919060189061210a908490600160c01b900463ffffffff1661308c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061227b903390899088908890600401612eaa565b602060405180830381600087803b15801561229557600080fd5b505af19250505080156122c5575060408051601f3d908101601f191682019092526122c291810190612c95565b60015b612320573d8080156122f3576040519150601f19603f3d011682016040523d82523d6000602084013e6122f8565b606091505b508051612318576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121b8565b60608161235e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612388578061237281613165565b91506123819050600a836130b4565b9150612362565b6000816001600160401b038111156123a2576123a26131ec565b6040519080825280601f01601f1916602001820160405280156123cc576020820181803683370190505b5090505b84156121b8576123e16001836130e7565b91506123ee600a86613180565b6123f9906030613074565b60f81b81838151811061240e5761240e6131d6565b60200101906001600160f81b031916908160001a905350612430600a866130b4565b94506123d0565b600061248c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125319092919063ffffffff16565b805190915015610b2d57808060200190518101906124aa9190612c5b565b610b2d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b67565b600080600061251a87878787612540565b915091506125278161262d565b5095945050505050565b6060611ace84846000856127e8565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125775750600090506003612624565b8460ff16601b1415801561258f57508460ff16601c14155b156125a05750600090506004612624565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661261d57600060019250925050612624565b9150600090505b94509492505050565b6000816004811115612641576126416131c0565b141561264a5750565b600181600481111561265e5761265e6131c0565b14156126ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b67565b60028160048111156126c0576126c06131c0565b141561270e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b67565b6003816004811115612722576127226131c0565b141561277b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b67565b600481600481111561278f5761278f6131c0565b1415610db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b67565b6060824710156128495760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b67565b6001600160a01b0385163b6128a05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b67565b600080866001600160a01b031685876040516128bc9190612dd3565b60006040518083038185875af1925050503d80600081146128f9576040519150601f19603f3d011682016040523d82523d6000602084013e6128fe565b606091505b509150915061290e828286612919565b979650505050505050565b60608315612928575081611ad1565b8251156129385782518084602001fd5b8160405162461bcd60e51b8152600401610b679190612f53565b82805461295e9061312a565b90600052602060002090601f01602090048101928261298057600085556129c6565b82601f1061299957805160ff19168380011785556129c6565b828001600101855582156129c6579182015b828111156129c65782518255916020019190600101906129ab565b506129d29291506129d6565b5090565b5b808211156129d257600081556001016129d7565b60006001600160401b0380841115612a0557612a056131ec565b604051601f8501601f19908116603f01168101908282118183101715612a2d57612a2d6131ec565b81604052809350858152868686011115612a4657600080fd5b858560208301376000602087830101525050509392505050565b803563ffffffff81168114612a7457600080fd5b919050565b803560ff81168114612a7457600080fd5b600060208284031215612a9c57600080fd5b8135611ad181613202565b60008060408385031215612aba57600080fd5b8235612ac581613202565b91506020830135612ad581613202565b809150509250929050565b600080600060608486031215612af557600080fd5b8335612b0081613202565b92506020840135612b1081613202565b929592945050506040919091013590565b60008060008060808587031215612b3757600080fd5b8435612b4281613202565b93506020850135612b5281613202565b92506040850135915060608501356001600160401b03811115612b7457600080fd5b8501601f81018713612b8557600080fd5b612b94878235602084016129eb565b91505092959194509250565b60008060408385031215612bb357600080fd5b8235612bbe81613202565b91506020830135612ad581613217565b60008060408385031215612be157600080fd5b8235612bec81613202565b946020939093013593505050565b60008060008060008060c08789031215612c1357600080fd5b8635612c1e81613202565b9550612c2c60208801612a60565b945060408701359350612c4160608801612a79565b92506080870135915060a087013590509295509295509295565b600060208284031215612c6d57600080fd5b8151611ad181613217565b600060208284031215612c8a57600080fd5b8135611ad181613225565b600060208284031215612ca757600080fd5b8151611ad181613225565b600060208284031215612cc457600080fd5b813560048110611ad157600080fd5b600060208284031215612ce557600080fd5b81356001600160401b03811115612cfb57600080fd5b8201601f81018413612d0c57600080fd5b6121b8848235602084016129eb565b600060208284031215612d2d57600080fd5b5035919050565b600060208284031215612d4657600080fd5b5051919050565b60008060008060008060c08789031215612d6657600080fd5b612d6f87612a60565b95506020870135945060408701359350612c4160608801612a79565b60008151808452612da38160208601602086016130fe565b601f01601f19169290920160200192915050565b60008151612dc98185602086016130fe565b9290920192915050565b60008251612de58184602087016130fe565b9190910192915050565b600080845481600182811c915080831680612e0b57607f831692505b6020808410821415612e2b57634e487b7160e01b86526022600452602486fd5b818015612e3f5760018114612e5057612e7d565b60ff19861689528489019650612e7d565b60008b81526020902060005b86811015612e755781548b820152908501908301612e5c565b505084890196505b505050505050612ea1612e908286612db7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612edd90830184612d8b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1f57835183529284019291840191600101612f03565b50909695505050505050565b6020810160048310612f4d57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611ad16020830184612d8b565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561308757613087613194565b500190565b600063ffffffff8083168185168083038211156130ab576130ab613194565b01949350505050565b6000826130c3576130c36131aa565b500490565b60008160001904831182151516156130e2576130e2613194565b500290565b6000828210156130f9576130f9613194565b500390565b60005b83811015613119578181015183820152602001613101565b8381111561184a5750506000910152565b600181811c9082168061313e57607f821691505b6020821081141561315f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561317957613179613194565b5060010190565b60008261318f5761318f6131aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610db657600080fd5b8015158114610db657600080fd5b6001600160e01b031981168114610db657600080fdfea26469706673582212203546e7e6e06d1b13dc3ab67093b7fc3addbaea3a16acc97a8fcef7073523c82664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d596e535a456f6232616d547658573472725571414a7a48696d7972314b33356b725432336e413853526678502f000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004911bfc29c707d958a5d913459d05732352d6b77000000000000000000000000cbc5b135f1d8d26e6b3098dd17f0b5be58a243a70000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e000000000000000000000000680754db2c329e745b033f45cd781669bd15779b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : _theBaseURI (string): https://sunblocks.mypinata.cloud/ipfs/QmYnSZEob2amTvXW4rrUqAJzHimyr1K35krT23nA8SRfxP/
Arg [1] : payees (address[]): 0x4911Bfc29c707D958A5D913459D05732352D6B77,0xcbC5b135F1D8d26e6B3098Dd17F0b5bE58a243A7,0x3FF9B70d82f9C44786CDa1490Be155F3cFF9cE3e,0x680754DB2C329e745B033f45Cd781669bD15779B
Arg [2] : shares (uint256[]): 50,15,30,5

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [4] : 68747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f7564
Arg [5] : 2f697066732f516d596e535a456f6232616d547658573472725571414a7a4869
Arg [6] : 6d7972314b33356b725432336e413853526678502f0000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000004911bfc29c707d958a5d913459d05732352d6b77
Arg [9] : 000000000000000000000000cbc5b135f1d8d26e6b3098dd17f0b5be58a243a7
Arg [10] : 0000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e
Arg [11] : 000000000000000000000000680754db2c329e745b033f45cd781669bd15779b
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [14] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [15] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000005


Deployed Bytecode Sourcemap

345:5600:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:13;736:10:1;3216:40:13;;;-1:-1:-1;;;;;11624:32:16;;;11606:51;;3246:9:13;11688:2:16;11673:18;;11666:34;11579:18;3216:40:13;;;;;;;345:5600:11;;;;;4320:305:4;;;;;;;;;;-1:-1:-1;4320:305:4;;;;;:::i;:::-;;:::i;:::-;;;13296:14:16;;13289:22;13271:41;;13259:2;13244:18;4320:305:4;;;;;;;;7727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9230:204::-;;;;;;;;;;-1:-1:-1;9230:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11380:32:16;;;11362:51;;11350:2;11335:18;9230:204:4;11216:203:16;8793:371:4;;;;;;;;;;-1:-1:-1;8793:371:4;;;;;:::i;:::-;;:::i;:::-;;1124:40:11;;;;;;;;;;;;1163:1;1124:40;;;;;22750:25:16;;;22738:2;22723:18;1124:40:11;22604:177:16;828:37:11;;;;;;;;;;;;856:9;828:37;;3569:303:4;;;;;;;;;;-1:-1:-1;3823:12:4;;3426:1;3807:13;:28;-1:-1:-1;;3807:46:4;3569:303;;4944:553:13;;;;;;;;;;-1:-1:-1;4944:553:13;;;;;:::i;:::-;;:::i;10095:170:4:-;;;;;;;;;;-1:-1:-1;10095:170:4;;;;;:::i;:::-;;:::i;4326:557:11:-;;;;;;:::i;:::-;;:::i;1553:22::-;;;;;;;;;;-1:-1:-1;1553:22:11;;;;;;;;;;;;;;;;;;:::i;3341:89:13:-;;;;;;;;;;-1:-1:-1;3411:12:13;;3341:89;;4433:133;;;;;;;;;;-1:-1:-1;4433:133:13;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;10336:185:4;;;;;;;;;;-1:-1:-1;10336:185:4;;;;;:::i;:::-;;:::i;5758:628:13:-;;;;;;;;;;-1:-1:-1;5758:628:13;;;;;:::i;:::-;;:::i;5399:271:4:-;;;;;;;;;;-1:-1:-1;5399:271:4;;;;;:::i;:::-;-1:-1:-1;;;;;5553:19:4;;5458:15;5553:19;;;:12;:19;;;;;;;;;5520:52;;;;;;;;;-1:-1:-1;;;;;5520:52:4;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;;;5399:271;;;;;;;;;;22988:25:16;;;23044:2;23029:18;;23022:34;;;;23072:18;;;23065:34;22976:2;22961:18;5399:271:4;22786:319:16;5176:104:11;;;;;;;;;;-1:-1:-1;5176:104:11;;;;;:::i;:::-;;:::i;7535:125:4:-;;;;;;;;;;-1:-1:-1;7535:125:4;;;;;:::i;:::-;;:::i;1278:36:11:-;;;;;;;;;;;;;;;;1323:21;;;;;;;;;;;;;:::i;4689:206:4:-;;;;;;;;;;-1:-1:-1;4689:206:4;;;;;:::i;:::-;;:::i;1714:103:12:-;;;;;;;;;;;;;:::i;5288:131:11:-;;;;;;;;;;-1:-1:-1;5288:131:11;;;;;:::i;:::-;;:::i;1014:63::-;;;;;;;;;;;;;;;;1353:28;;;;;;;;;;-1:-1:-1;1353:28:11;;;;;;;;369:1174:5;;;;;;;;;;-1:-1:-1;369:1174:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1858:1015:11:-;;;;;;;;;;-1:-1:-1;1858:1015:11;;;;;:::i;:::-;;:::i;4652:98:13:-;;;;;;;;;;-1:-1:-1;4652:98:13;;;;;:::i;:::-;;:::i;1063:87:12:-;;;;;;;;;;-1:-1:-1;1109:7:12;1136:6;-1:-1:-1;;;;;1136:6:12;1063:87;;2881:1437:11;;;;;;:::i;:::-;;:::i;7896:104:4:-;;;;;;;;;;;;;:::i;4163:107:13:-;;;;;;;;;;-1:-1:-1;4163:107:13;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;9506:287:4;;;;;;;;;;-1:-1:-1;9506:287:4;;;;;:::i;:::-;;:::i;10592:369::-;;;;;;;;;;-1:-1:-1;10592:369:4;;;;;:::i;:::-;;:::i;872:41:11:-;;;;;;;;;;;;909:4;872:41;;4911:226;;;;;;;;;;-1:-1:-1;4911:226:11;;;;;:::i;:::-;;:::i;3966:103:13:-;;;;;;;;;;-1:-1:-1;3966:103:13;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:13;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;3763:117;;;;;;;;;;-1:-1:-1;3763:117:13;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;5427:84:11;;;;;;;;;;-1:-1:-1;5427:84:11;;;;;:::i;:::-;;:::i;4977:134:4:-;;;;;;;;;;-1:-1:-1;4977:134:4;;;;;:::i;:::-;-1:-1:-1;;;;;5070:19:4;5035:7;5070:19;;;:12;:19;;;;;:32;-1:-1:-1;;;5070:32:4;;-1:-1:-1;;;;;5070:32:4;;4977:134;3519:93:13;;;;;;;;;;-1:-1:-1;3591:14:13;;3519:93;;9864:164:4;;;;;;;;;;-1:-1:-1;9864:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;9985:25:4;;;9961:4;9985:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9864:164;1972:201:12;;;;;;;;;;-1:-1:-1;1972:201:12;;;;;:::i;:::-;;:::i;920:35:11:-;;;;;;;;;;;;;;;;5519:106;;;;;;;;;;;;;:::i;4320:305:4:-;4422:4;-1:-1:-1;;;;;;4459:40:4;;-1:-1:-1;;;4459:40:4;;:105;;-1:-1:-1;;;;;;;4516:48:4;;-1:-1:-1;;;4516:48:4;4459:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:3;;;4581:36:4;4439:178;4320:305;-1:-1:-1;;4320:305:4:o;7727:100::-;7781:13;7814:5;7807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7727:100;:::o;9230:204::-;9298:7;9323:16;9331:7;9323;:16::i;:::-;9318:64;;9348:34;;-1:-1:-1;;;9348:34:4;;;;;;;;;;;9318:64;-1:-1:-1;9402:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;9402:24:4;;9230:204::o;8793:371::-;8866:13;8882:24;8898:7;8882:15;:24::i;:::-;8866:40;;8927:5;-1:-1:-1;;;;;8921:11:4;:2;-1:-1:-1;;;;;8921:11:4;;8917:48;;;8941:24;;-1:-1:-1;;;8941:24:4;;;;;;;;;;;8917:48;736:10:1;-1:-1:-1;;;;;8982:21:4;;;;;;:63;;-1:-1:-1;9008:37:4;9025:5;736:10:1;9864:164:4;:::i;9008:37::-;9007:38;8982:63;8978:138;;;9069:35;;-1:-1:-1;;;9069:35:4;;;;;;;;;;;8978:138;9128:28;9137:2;9141:7;9150:5;9128:8;:28::i;:::-;8855:309;8793:371;;:::o;4944:553:13:-;-1:-1:-1;;;;;5019:16:13;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:13;;;;;;;:::i;:::-;;;;;;;;;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:13;5253:68;;;;-1:-1:-1;;;5253:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:13;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:13;;-1:-1:-1;5425:7:13;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;11624:32:16;;11606:51;;11688:2;11673:18;;11666:34;;;5457:33:13;;11579:18:16;5457:33:13;;;;;;;5001:496;;4944:553;:::o;10095:170:4:-;10229:28;10239:4;10245:2;10249:7;10229:9;:28::i;4326:557:11:-;756:10;770:9;756:23;748:32;;;;;;4423:14:::1;4412:7;::::0;::::1;::::0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;4404:70;;;::::0;-1:-1:-1;;;4404:70:11;;19790:2:16;4404:70:11::1;::::0;::::1;19772:21:16::0;;;19809:18;;;19802:30;19868:34;19848:18;;;19841:62;19920:18;;4404:70:11::1;19588:356:16::0;4404:70:11::1;4577:20;;4559:15;;:38;;;;:::i;:::-;4543:12;4526:14;3426:1:4::0;4198:13;-1:-1:-1;;4198:31:4;;3965:283;4526:14:11::1;:29;;;;:::i;:::-;:71;;4518:124;;;;-1:-1:-1::0;;;4518:124:11::1;;;;;;;:::i;:::-;4676:1;4661:12;:16;:51;;;;;1163:1;4681:12;:31;;4661:51;4653:90;;;::::0;-1:-1:-1;;;4653:90:11;;17428:2:16;4653:90:11::1;::::0;::::1;17410:21:16::0;17467:2;17447:18;;;17440:30;17506:28;17486:18;;;17479:56;17552:18;;4653:90:11::1;17226:350:16::0;4653:90:11::1;4811:19;4818:12:::0;856:9:::1;4811:19;:::i;:::-;4798:9;:32;;4790:41;;;::::0;::::1;;4844:31;4850:10;4862:12;4844:5;:31::i;:::-;4326:557:::0;:::o;10336:185:4:-;10474:39;10491:4;10497:2;10501:7;10474:39;;;;;;;;;;;;:16;:39::i;5758:628:13:-;-1:-1:-1;;;;;5839:16:13;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:13;;5961:4;5937:30;;;11362:51:16;-1:-1:-1;;;;;5937:15:13;;;;;11335:18:16;;5937:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:13;6094:68;;;;-1:-1:-1;;;6094:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:13;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:13;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:13;;-1:-1:-1;6295:5:13;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;11624:32:16;;;11606:51;;11688:2;11673:18;;11666:34;;;6334:45:13;;;;;11579:18:16;6334:45:13;;;;;;;5821:565;;5758:628;;:::o;5176:104:11:-;1109:7:12;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5251:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5176:104:::0;:::o;7535:125:4:-;7599:7;7626:21;7639:7;7626:12;:21::i;:::-;:26;;7535:125;-1:-1:-1;;7535:125:4:o;1323:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4689:206:4:-;4753:7;-1:-1:-1;;;;;4777:19:4;;4773:60;;4805:28;;-1:-1:-1;;;4805:28:4;;;;;;;;;;;4773:60;-1:-1:-1;;;;;;4859:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4859:27:4;;4689:206::o;1714:103:12:-;1109:7;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;5288:131:11:-;1109:7:12;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5373:17:11::1;:38:::0;5288:131::o;369:1174:5:-;428:16;457:21;481:16;491:5;481:9;:16::i;:::-;529:13;;457:40;;-1:-1:-1;508:18:5;;;457:40;-1:-1:-1;;;;;645:28:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;645:28:5;-1:-1:-1;621:52:5;-1:-1:-1;3426:1:4;711:790:5;749:10;745:1;:14;711:790;;;785:31;819:14;;;:11;:14;;;;;;;;;785:48;;;;;;;;;-1:-1:-1;;;;;785:48:5;;;;-1:-1:-1;;;785:48:5;;-1:-1:-1;;;;;785:48:5;;;;;;;;-1:-1:-1;;;785:48:5;;;;;;;;;;;;;;;;854:73;;899:8;;;854:73;1003:14;;-1:-1:-1;;;;;1003:28:5;;999:111;;1076:14;;;-1:-1:-1;999:111:5;1231:5;-1:-1:-1;;;;;1210:26:5;:17;-1:-1:-1;;;;;1210:26:5;;1206:98;;;1283:1;1261:4;1266:13;;;;;;1261:19;;;;;;;;:::i;:::-;;;;;;:23;;;;;1206:98;1423:13;1408:11;:28;1404:82;;;1461:5;;;1404:82;766:735;711:790;761:3;;711:790;;;-1:-1:-1;1531:4:5;369:1174;-1:-1:-1;;;;;;369:1174:5:o;1858:1015:11:-;756:10;770:9;756:23;748:32;;;;;;1998:16:::1;::::0;::::1;;1990:52;;;::::0;-1:-1:-1;;;1990:52:11;;16725:2:16;1990:52:11::1;::::0;::::1;16707:21:16::0;16764:2;16744:18;;;16737:30;16803:25;16783:18;;;16776:53;16846:18;;1990:52:11::1;16523:347:16::0;1990:52:11::1;2109:1;2094:12;:16;;;:76;;;;;2158:12;2114:40;2129:10;2141:12;2114:14;:40::i;:::-;:56;;;;2094:76;2086:110;;;::::0;-1:-1:-1;;;2086:110:11;;15221:2:16;2086:110:11::1;::::0;::::1;15203:21:16::0;15260:2;15240:18;;;15233:30;-1:-1:-1;;;15279:18:16;;;15272:51;15340:18;;2086:110:11::1;15019:345:16::0;2086:110:11::1;2257:17;;2240:12;2216:36;;:20;;:36;;;;;;;:::i;:::-;;;;;;;2215:59;;2207:112;;;;-1:-1:-1::0;;;2207:112:11::1;;;;;;;:::i;:::-;2402:50;::::0;-1:-1:-1;;;2402:50:11::1;::::0;::::1;10324:19:16::0;-1:-1:-1;;2427:10:11::1;10380:2:16::0;10376:15;10372:53;10359:11;;;10352:74;10442:12;;;10435:28;;;2375:88:11::1;::::0;10479:12:16;;2402:50:11::1;;;;;;;;;;;;;2392:61;;;;;;2455:1;2458;2461;2375:16;:88::i;:::-;2367:112;;;::::0;-1:-1:-1;;;2367:112:11;;15978:2:16;2367:112:11::1;::::0;::::1;15960:21:16::0;16017:2;15997:18;;;15990:30;-1:-1:-1;;;16036:18:16;;;16029:41;16087:18;;2367:112:11::1;15776:335:16::0;2367:112:11::1;2625:16;2656:210;2674:16;2693:48;2697:26;2712:11:::0;2697:26:::1;::::0;::::1;;:::i;:::-;1163:1;2693:3;:48::i;:::-;2674:67:::0;-1:-1:-1;2756:26:11::1;2674:67:::0;2756:26;::::1;:::i;:::-;;;2797:22;2803:2;2807:11;2797:5;:22::i;:::-;2659:172;2852:12;2838:26;;:11;:26;2656:210;;1979:894;1858:1015:::0;;;;;;:::o;4652:98:13:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:13;;4652:98;-1:-1:-1;;4652:98:13:o;2881:1437:11:-;756:10;770:9;756:23;748:32;;;;;;3052:21:::1;3041:7;::::0;::::1;::::0;::::1;;;:32;::::0;::::1;;;;;;:::i;:::-;;:68;;;-1:-1:-1::0;3088:21:11::1;3077:7;::::0;::::1;::::0;::::1;;;:32;::::0;::::1;;;;;;:::i;:::-;;3041:68;3033:109;;;::::0;-1:-1:-1;;;3033:109:11;;22449:2:16;3033:109:11::1;::::0;::::1;22431:21:16::0;22488:2;22468:18;;;22461:30;22527;22507:18;;;22500:58;22575:18;;3033:109:11::1;22247:352:16::0;3033:109:11::1;3245:20;;3227:15;;:38;;;;:::i;:::-;3211:12;3194:29;;:14;3426:1:4::0;4198:13;-1:-1:-1;;4198:31:4;;3965:283;3194:14:11::1;:29;;;;:::i;:::-;:71;;3186:124;;;;-1:-1:-1::0;;;3186:124:11::1;;;;;;;:::i;:::-;3337:21;3326:7;::::0;::::1;::::0;::::1;;;:32;::::0;::::1;;;;;;:::i;:::-;;3323:327;;;3427:13;3383:40;3398:10;3410:12;3383:14;:40::i;:::-;:57;;;;3375:97;;;::::0;-1:-1:-1;;;3375:97:11;;20554:2:16;3375:97:11::1;::::0;::::1;20536:21:16::0;20593:2;20573:18;;;20566:30;20632:29;20612:18;;;20605:57;20679:18;;3375:97:11::1;20352:351:16::0;3375:97:11::1;3323:327;;;3593:13;3549:40;3564:10;3576:12;3549:14;:40::i;:::-;:57;;;;3541:97;;;::::0;-1:-1:-1;;;3541:97:11;;20554:2:16;3541:97:11::1;::::0;::::1;20536:21:16::0;20593:2;20573:18;;;20566:30;20632:29;20612:18;;;20605:57;20679:18;;3541:97:11::1;20352:351:16::0;3541:97:11::1;3732:69;::::0;-1:-1:-1;;;3732:69:11::1;::::0;::::1;10998:22:16::0;-1:-1:-1;;3760:10:11::1;11057:2:16::0;11053:15;11049:53;11036:11;;;11029:74;11119:12;;;11112:28;;;11156:12;;;11149:28;;;3705:107:11::1;::::0;11193:12:16;;3732:69:11::1;10712:499:16::0;3705:107:11::1;3697:131;;;::::0;-1:-1:-1;;;3697:131:11;;15978:2:16;3697:131:11::1;::::0;::::1;15960:21:16::0;16017:2;15997:18;;;15990:30;-1:-1:-1;;;16036:18:16;;;16029:41;16087:18;;3697:131:11::1;15776:335:16::0;3697:131:11::1;3896:19;;::::0;::::1;856:9;3896:19;:::i;:::-;3883:9;:32;;3875:41;;;::::0;::::1;;4062:16;4093:218;4111:16;4130:48;4134:26;4149:11:::0;4134:26:::1;::::0;::::1;;:::i;4130:48::-;4111:67:::0;-1:-1:-1;4193:26:11::1;4111:67:::0;4193:26;::::1;:::i;:::-;;;4234:30;4240:10;4252:11;4234:5;:30::i;:::-;4096:180;4297:12;4283:26;;:11;:26;4093:218;;3022:1296;2881:1437:::0;;;;;;:::o;7896:104:4:-;7952:13;7985:7;7978:14;;;;;:::i;9506:287::-;-1:-1:-1;;;;;9605:24:4;;736:10:1;9605:24:4;9601:54;;;9638:17;;-1:-1:-1;;;9638:17:4;;;;;;;;;;;9601:54;736:10:1;9668:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9668:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9668:53:4;;;;;;;;;;9737:48;;13271:41:16;;;9668:42:4;;736:10:1;9737:48:4;;13244:18:16;9737:48:4;;;;;;;9506:287;;:::o;10592:369::-;10759:28;10769:4;10775:2;10779:7;10759:9;:28::i;:::-;-1:-1:-1;;;;;10802:13:4;;1505:19:0;:23;;10802:76:4;;;;;10822:56;10853:4;10859:2;10863:7;10872:5;10822:30;:56::i;:::-;10821:57;10802:76;10798:156;;;10902:40;;-1:-1:-1;;;10902:40:4;;;;;;;;;;;10798:156;10592:369;;;;:::o;4911:226:11:-;4972:13;5006:15;5014:6;5006:7;:15::i;:::-;4998:50;;;;-1:-1:-1;;;4998:50:11;;17077:2:16;4998:50:11;;;17059:21:16;17116:2;17096:18;;;17089:30;-1:-1:-1;;;17135:18:16;;;17128:52;17197:18;;4998:50:11;16875:346:16;4998:50:11;5092:7;5101:17;:6;:15;:17::i;:::-;5075:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5061:68;;4911:226;;;:::o;5427:84::-;1109:7:12;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5490:7:11::1;:13:::0;;5500:3;;5490:7;-1:-1:-1;;5490:13:11::1;;5500:3:::0;5490:13:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;5427:84:::0;:::o;1972:201:12:-;1109:7;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:12;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:12;;15571:2:16;2053:73:12::1;::::0;::::1;15553:21:16::0;15610:2;15590:18;;;15583:30;15649:34;15629:18;;;15622:62;-1:-1:-1;;;15700:18:16;;;15693:36;15746:19;;2053:73:12::1;15369:402:16::0;2053:73:12::1;2137:28;2156:8;2137:18;:28::i;5519:106:11:-:0;1109:7:12;1136:6;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5601:16:11::1;::::0;;-1:-1:-1;;5581:36:11;::::1;5601:16;::::0;;::::1;5600:17;5581:36;::::0;;5519:106::o;11216:174:4:-;11273:4;11316:7;3426:1;11297:26;;:53;;;;;11337:13;;11327:7;:23;11297:53;:85;;;;-1:-1:-1;;11355:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;11355:27:4;;;;11354:28;;11216:174::o;17778:196::-;17893:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;17893:29:4;-1:-1:-1;;;;;17893:29:4;;;;;;;;;17938:28;;17893:24;;17938:28;;;;;;;17778:196;;;:::o;6558:242:13:-;6763:12;;-1:-1:-1;;;;;6743:16:13;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;:::-;6719:74;;6558:242;;;;;;:::o;2471:317:0:-;2586:6;2561:21;:31;;2553:73;;;;-1:-1:-1;;;2553:73:0;;18613:2:16;2553:73:0;;;18595:21:16;18652:2;18632:18;;;18625:30;18691:31;18671:18;;;18664:59;18740:18;;2553:73:0;18411:353:16;2553:73:0;2640:12;2658:9;-1:-1:-1;;;;;2658:14:0;2680:6;2658:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639:52;;;2710:7;2702:78;;;;-1:-1:-1;;;2702:78:0;;17783:2:16;2702:78:0;;;17765:21:16;17822:2;17802:18;;;17795:30;17861:34;17841:18;;;17834:62;17932:28;17912:18;;;17905:56;17978:19;;2702:78:0;17581:422:16;12955:2021:4;13070:35;13108:21;13121:7;13108:12;:21::i;:::-;13070:59;;13168:4;-1:-1:-1;;;;;13146:26:4;:13;:18;;;-1:-1:-1;;;;;13146:26:4;;13142:67;;13181:28;;-1:-1:-1;;;13181:28:4;;;;;;;;;;;13142:67;13222:22;736:10:1;-1:-1:-1;;;;;13248:20:4;;;;:73;;-1:-1:-1;13285:36:4;13302:4;736:10:1;9864:164:4;:::i;13285:36::-;13248:126;;;-1:-1:-1;736:10:1;13338:20:4;13350:7;13338:11;:20::i;:::-;-1:-1:-1;;;;;13338:36:4;;13248:126;13222:153;;13393:17;13388:66;;13419:35;;-1:-1:-1;;;13419:35:4;;;;;;;;;;;13388:66;-1:-1:-1;;;;;13469:16:4;;13465:52;;13494:23;;-1:-1:-1;;;13494:23:4;;;;;;;;;;;13465:52;13582:35;13599:1;13603:7;13612:4;13582:8;:35::i;:::-;-1:-1:-1;;;;;13913:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;13913:31:4;;;-1:-1:-1;;;;;13913:31:4;;;-1:-1:-1;;13913:31:4;;;;;;;13959:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13959:29:4;;;;;;;;;;;14039:20;;;:11;:20;;;;;;14074:18;;-1:-1:-1;;;;;;14107:49:4;;;;-1:-1:-1;;;14140:15:4;14107:49;;;;;;;;;;14430:11;;14490:24;;;;;14533:13;;14039:20;;14490:24;;14533:13;14529:384;;14743:13;;14728:11;:28;14724:174;;14781:20;;14850:28;;;;-1:-1:-1;;;;;14824:54:4;-1:-1:-1;;;14824:54:4;-1:-1:-1;;;;;;14824:54:4;;;-1:-1:-1;;;;;14781:20:4;;14824:54;;;;14724:174;13888:1036;;;14960:7;14956:2;-1:-1:-1;;;;;14941:27:4;14950:4;-1:-1:-1;;;;;14941:27:4;;;;;;;;;;;13059:1917;;12955:2021;;;:::o;11649:1052::-;11762:13;;-1:-1:-1;;;;;11790:16:4;;11786:48;;11815:19;;-1:-1:-1;;;11815:19:4;;;;;;;;;;;11786:48;11849:13;11845:44;;11871:18;;-1:-1:-1;;;11871:18:4;;;;;;;;;;;11845:44;-1:-1:-1;;;;;12166:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12225:49:4;;-1:-1:-1;;;;;12166:44:4;;;;;;;12225:49;;;-1:-1:-1;;;;;12166:44:4;;;;;;12225:49;;;;;;;;;;;;;;;;12291:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12341:66:4;;;;-1:-1:-1;;;12391:15:4;12341:66;;;;;;;;;;12291:25;12488:23;;;12528:112;12555:40;;12580:14;;;;;-1:-1:-1;;;;;12555:40:4;;;12572:1;;12555:40;;12572:1;;12555:40;12635:3;12619:12;:19;;12528:112;;-1:-1:-1;12654:13:4;:28;-1:-1:-1;;;11649:1052:4:o;639:211:14:-;783:58;;;-1:-1:-1;;;;;11624:32:16;;783:58:14;;;11606:51:16;11673:18;;;;11666:34;;;783:58:14;;;;;;;;;;11579:18:16;;;;783:58:14;;;;;;;;-1:-1:-1;;;;;783:58:14;-1:-1:-1;;;783:58:14;;;756:86;;776:5;;756:19;:86::i;6364:1109:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6475:7:4;;3426:1;6524:23;;:47;;;;;6558:13;;6551:4;:20;6524:47;6520:886;;;6592:31;6626:17;;;:11;:17;;;;;;;;;6592:51;;;;;;;;;-1:-1:-1;;;;;6592:51:4;;;;-1:-1:-1;;;6592:51:4;;-1:-1:-1;;;;;6592:51:4;;;;;;;;-1:-1:-1;;;6592:51:4;;;;;;;;;;;;;;6662:729;;6712:14;;-1:-1:-1;;;;;6712:28:4;;6708:101;;6776:9;6364:1109;-1:-1:-1;;;6364:1109:4:o;6708:101::-;-1:-1:-1;;;7151:6:4;7196:17;;;;:11;:17;;;;;;;;;7184:29;;;;;;;;;-1:-1:-1;;;;;7184:29:4;;;;;-1:-1:-1;;;7184:29:4;;-1:-1:-1;;;;;7184:29:4;;;;;;;;-1:-1:-1;;;7184:29:4;;;;;;;;;;;;;7244:28;7240:109;;7312:9;6364:1109;-1:-1:-1;;;6364:1109:4:o;7240:109::-;7111:261;;;6573:833;6520:886;7434:31;;-1:-1:-1;;;7434:31:4;;;;;;;;;;;2333:191:12;2407:16;2426:6;;-1:-1:-1;;;;;2443:17:12;;;-1:-1:-1;;;;;;2443:17:12;;;;;;2476:40;;2426:6;;;;;;;2476:40;;2407:16;2476:40;2396:128;2333:191;:::o;6006:156:4:-;-1:-1:-1;;;;;6113:19:4;;6077:15;6113:19;;;:12;:19;;;;;:40;;6147:6;;6113:19;:30;;:40;;6147:6;;-1:-1:-1;;;6113:40:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;6104:50;;6006:156;;;;:::o;5658:181:11:-;5751:4;1199:42;5775:46;5813:1;5816;5819;5775:29;:4;8412:58:2;;9923:66:16;8412:58:2;;;9911:79:16;10006:12;;;9999:28;;;8279:7:2;;10043:12:16;;8412:58:2;;;;;;;;;;;;8402:69;;;;;;8395:76;;8210:269;;;;5775:29:11;:37;:46;;:37;:46::i;:::-;-1:-1:-1;;;;;5775:56:11;;5768:63;;5658:181;;;;;;;:::o;5847:95::-;5897:4;5925:1;5921;:5;:13;;5933:1;5921:13;;;-1:-1:-1;5929:1:11;;5914:20;-1:-1:-1;5847:95:11:o;5678:156:4:-;-1:-1:-1;;;;;5785:19:4;;5749:15;5785:19;;;:12;:19;;;;;:40;;5819:6;;5785:19;:30;;:40;;5819:6;;-1:-1:-1;;;5785:40:4;;;;;:::i;5842:156::-;-1:-1:-1;;;;;5949:19:4;;5913:15;5949:19;;;:12;:19;;;;;:40;;5983:6;;5949:19;:30;;:40;;5983:6;;-1:-1:-1;;;5949:40:4;;;;;:::i;18466:667::-;18650:72;;-1:-1:-1;;;18650:72:4;;18629:4;;-1:-1:-1;;;;;18650:36:4;;;;;:72;;736:10:1;;18701:4:4;;18707:7;;18716:5;;18650:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18650:72:4;;;;;;;;-1:-1:-1;;18650:72:4;;;;;;;;;;;;:::i;:::-;;;18646:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18884:13:4;;18880:235;;18930:40;;-1:-1:-1;;;18930:40:4;;;;;;;;;;;18880:235;19073:6;19067:13;19058:6;19054:2;19050:15;19043:38;18646:480;-1:-1:-1;;;;;;18769:55:4;-1:-1:-1;;;18769:55:4;;-1:-1:-1;18762:62:4;;342:723:15;398:13;619:10;615:53;;-1:-1:-1;;646:10:15;;;;;;;;;;;;-1:-1:-1;;;646:10:15;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:15;;-1:-1:-1;798:2:15;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:15;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:15;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:15;;;;;;;;-1:-1:-1;1003:11:15;1012:2;1003:11;;:::i;:::-;;;872:154;;3212:716:14;3636:23;3662:69;3690:4;3662:69;;;;;;;;;;;;;;;;;3670:5;-1:-1:-1;;;;;3662:27:14;;;:69;;;;;:::i;:::-;3746:17;;3636:95;;-1:-1:-1;3746:21:14;3742:179;;3843:10;3832:30;;;;;;;;;;;;:::i;:::-;3824:85;;;;-1:-1:-1;;;3824:85:14;;22038:2:16;3824:85:14;;;22020:21:16;22077:2;22057:18;;;22050:30;22116:34;22096:18;;;22089:62;-1:-1:-1;;;22167:18:16;;;22160:40;22217:19;;3824:85:14;21836:406:16;7631:279:2;7759:7;7780:17;7799:18;7821:25;7832:4;7838:1;7841;7844;7821:10;:25::i;:::-;7779:67;;;;7857:18;7869:5;7857:11;:18::i;:::-;-1:-1:-1;7893:9:2;7631:279;-1:-1:-1;;;;;7631:279:2:o;3955:229:0:-;4092:12;4124:52;4146:6;4154:4;4160:1;4163:12;4124:21;:52::i;5860:1632:2:-;5991:7;;6925:66;6912:79;;6908:163;;;-1:-1:-1;7024:1:2;;-1:-1:-1;7028:30:2;7008:51;;6908:163;7085:1;:7;;7090:2;7085:7;;:18;;;;;7096:1;:7;;7101:2;7096:7;;7085:18;7081:102;;;-1:-1:-1;7136:1:2;;-1:-1:-1;7140:30:2;7120:51;;7081:102;7297:24;;;7280:14;7297:24;;;;;;;;;13550:25:16;;;13623:4;13611:17;;13591:18;;;13584:45;;;;13645:18;;;13638:34;;;13688:18;;;13681:34;;;7297:24:2;;13522:19:16;;7297:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7297:24:2;;-1:-1:-1;;7297:24:2;;;-1:-1:-1;;;;;;;7336:20:2;;7332:103;;7389:1;7393:29;7373:50;;;;;;;7332:103;7455:6;-1:-1:-1;7463:20:2;;-1:-1:-1;5860:1632:2;;;;;;;;:::o;569:643::-;647:20;638:5;:29;;;;;;;;:::i;:::-;;634:571;;;569:643;:::o;634:571::-;745:29;736:5;:38;;;;;;;;:::i;:::-;;732:473;;;791:34;;-1:-1:-1;;;791:34:2;;14508:2:16;791:34:2;;;14490:21:16;14547:2;14527:18;;;14520:30;14586:26;14566:18;;;14559:54;14630:18;;791:34:2;14306:348:16;732:473:2;856:35;847:5;:44;;;;;;;;:::i;:::-;;843:362;;;908:41;;-1:-1:-1;;;908:41:2;;14861:2:16;908:41:2;;;14843:21:16;14900:2;14880:18;;;14873:30;14939:33;14919:18;;;14912:61;14990:18;;908:41:2;14659:355:16;843:362:2;980:30;971:5;:39;;;;;;;;:::i;:::-;;967:238;;;1027:44;;-1:-1:-1;;;1027:44:2;;18210:2:16;1027:44:2;;;18192:21:16;18249:2;18229:18;;;18222:30;18288:34;18268:18;;;18261:62;-1:-1:-1;;;18339:18:16;;;18332:32;18381:19;;1027:44:2;18008:398:16;967:238:2;1102:30;1093:5;:39;;;;;;;;:::i;:::-;;1089:116;;;1149:44;;-1:-1:-1;;;1149:44:2;;20151:2:16;1149:44:2;;;20133:21:16;20190:2;20170:18;;;20163:30;20229:34;20209:18;;;20202:62;-1:-1:-1;;;20280:18:16;;;20273:32;20322:19;;1149:44:2;19949:398:16;5075:510:0;5245:12;5303:5;5278:21;:30;;5270:81;;;;-1:-1:-1;;;5270:81:0;;18971:2:16;5270:81:0;;;18953:21:16;19010:2;18990:18;;;18983:30;19049:34;19029:18;;;19022:62;-1:-1:-1;;;19100:18:16;;;19093:36;19146:19;;5270:81:0;18769:402:16;5270:81:0;-1:-1:-1;;;;;1505:19:0;;;5362:60;;;;-1:-1:-1;;;5362:60:0;;21680:2:16;5362:60:0;;;21662:21:16;21719:2;21699:18;;;21692:30;21758:31;21738:18;;;21731:59;21807:18;;5362:60:0;21478:353:16;5362:60:0;5436:12;5450:23;5477:6;-1:-1:-1;;;;;5477:11:0;5496:5;5503:4;5477:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5435:73;;;;5526:51;5543:7;5552:10;5564:12;5526:16;:51::i;:::-;5519:58;5075:510;-1:-1:-1;;;;;;;5075:510:0:o;7761:712::-;7911:12;7940:7;7936:530;;;-1:-1:-1;7971:10:0;7964:17;;7936:530;8085:17;;:21;8081:374;;8283:10;8277:17;8344:15;8331:10;8327:2;8323:19;8316:44;8081:374;8426:12;8419:20;;-1:-1:-1;;;8419:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;-1:-1:-1;;;;;149:2:16;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:163::-;717:20;;777:10;766:22;;756:33;;746:61;;803:1;800;793:12;746:61;650:163;;;:::o;818:156::-;884:20;;944:4;933:16;;923:27;;913:55;;964:1;961;954:12;979:247;1038:6;1091:2;1079:9;1070:7;1066:23;1062:32;1059:52;;;1107:1;1104;1097:12;1059:52;1146:9;1133:23;1165:31;1190:5;1165:31;:::i;1491:388::-;1559:6;1567;1620:2;1608:9;1599:7;1595:23;1591:32;1588:52;;;1636:1;1633;1626:12;1588:52;1675:9;1662:23;1694:31;1719:5;1694:31;:::i;:::-;1744:5;-1:-1:-1;1801:2:16;1786:18;;1773:32;1814:33;1773:32;1814:33;:::i;:::-;1866:7;1856:17;;;1491:388;;;;;:::o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:16;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:16;2315:18;;;;2302:32;;1884:456::o;2345:794::-;2440:6;2448;2456;2464;2517:3;2505:9;2496:7;2492:23;2488:33;2485:53;;;2534:1;2531;2524:12;2485:53;2573:9;2560:23;2592:31;2617:5;2592:31;:::i;:::-;2642:5;-1:-1:-1;2699:2:16;2684:18;;2671:32;2712:33;2671:32;2712:33;:::i;:::-;2764:7;-1:-1:-1;2818:2:16;2803:18;;2790:32;;-1:-1:-1;2873:2:16;2858:18;;2845:32;-1:-1:-1;;;;;2889:30:16;;2886:50;;;2932:1;2929;2922:12;2886:50;2955:22;;3008:4;3000:13;;2996:27;-1:-1:-1;2986:55:16;;3037:1;3034;3027:12;2986:55;3060:73;3125:7;3120:2;3107:16;3102:2;3098;3094:11;3060:73;:::i;:::-;3050:83;;;2345:794;;;;;;;:::o;3144:382::-;3209:6;3217;3270:2;3258:9;3249:7;3245:23;3241:32;3238:52;;;3286:1;3283;3276:12;3238:52;3325:9;3312:23;3344:31;3369:5;3344:31;:::i;:::-;3394:5;-1:-1:-1;3451:2:16;3436:18;;3423:32;3464:30;3423:32;3464:30;:::i;3531:315::-;3599:6;3607;3660:2;3648:9;3639:7;3635:23;3631:32;3628:52;;;3676:1;3673;3666:12;3628:52;3715:9;3702:23;3734:31;3759:5;3734:31;:::i;:::-;3784:5;3836:2;3821:18;;;;3808:32;;-1:-1:-1;;;3531:315:16:o;3851:596::-;3952:6;3960;3968;3976;3984;3992;4045:3;4033:9;4024:7;4020:23;4016:33;4013:53;;;4062:1;4059;4052:12;4013:53;4101:9;4088:23;4120:31;4145:5;4120:31;:::i;:::-;4170:5;-1:-1:-1;4194:37:16;4227:2;4212:18;;4194:37;:::i;:::-;4184:47;;4278:2;4267:9;4263:18;4250:32;4240:42;;4301:36;4333:2;4322:9;4318:18;4301:36;:::i;:::-;4291:46;;4384:3;4373:9;4369:19;4356:33;4346:43;;4436:3;4425:9;4421:19;4408:33;4398:43;;3851:596;;;;;;;;:::o;4452:245::-;4519:6;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4620:9;4614:16;4639:28;4661:5;4639:28;:::i;4702:245::-;4760:6;4813:2;4801:9;4792:7;4788:23;4784:32;4781:52;;;4829:1;4826;4819:12;4781:52;4868:9;4855:23;4887:30;4911:5;4887:30;:::i;4952:249::-;5021:6;5074:2;5062:9;5053:7;5049:23;5045:32;5042:52;;;5090:1;5087;5080:12;5042:52;5122:9;5116:16;5141:30;5165:5;5141:30;:::i;5881:268::-;5952:6;6005:2;5993:9;5984:7;5980:23;5976:32;5973:52;;;6021:1;6018;6011:12;5973:52;6060:9;6047:23;6099:1;6092:5;6089:12;6079:40;;6115:1;6112;6105:12;6154:450;6223:6;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6332:9;6319:23;-1:-1:-1;;;;;6357:6:16;6354:30;6351:50;;;6397:1;6394;6387:12;6351:50;6420:22;;6473:4;6465:13;;6461:27;-1:-1:-1;6451:55:16;;6502:1;6499;6492:12;6451:55;6525:73;6590:7;6585:2;6572:16;6567:2;6563;6559:11;6525:73;:::i;6609:180::-;6668:6;6721:2;6709:9;6700:7;6696:23;6692:32;6689:52;;;6737:1;6734;6727:12;6689:52;-1:-1:-1;6760:23:16;;6609:180;-1:-1:-1;6609:180:16:o;6794:184::-;6864:6;6917:2;6905:9;6896:7;6892:23;6888:32;6885:52;;;6933:1;6930;6923:12;6885:52;-1:-1:-1;6956:16:16;;6794:184;-1:-1:-1;6794:184:16:o;6983:529::-;7084:6;7092;7100;7108;7116;7124;7177:3;7165:9;7156:7;7152:23;7148:33;7145:53;;;7194:1;7191;7184:12;7145:53;7217:28;7235:9;7217:28;:::i;:::-;7207:38;;7292:2;7281:9;7277:18;7264:32;7254:42;;7343:2;7332:9;7328:18;7315:32;7305:42;;7366:36;7398:2;7387:9;7383:18;7366:36;:::i;7517:268::-;7569:3;7607:5;7601:12;7634:6;7629:3;7622:19;7650:63;7706:6;7699:4;7694:3;7690:14;7683:4;7676:5;7672:16;7650:63;:::i;:::-;7767:2;7746:15;-1:-1:-1;;7742:29:16;7733:39;;;;7774:4;7729:50;;7517:268;-1:-1:-1;;7517:268:16:o;7790:184::-;7831:3;7869:5;7863:12;7884:52;7929:6;7924:3;7917:4;7910:5;7906:16;7884:52;:::i;:::-;7952:16;;;;;7790:184;-1:-1:-1;;7790:184:16:o;8097:274::-;8226:3;8264:6;8258:13;8280:53;8326:6;8321:3;8314:4;8306:6;8302:17;8280:53;:::i;:::-;8349:16;;;;;8097:274;-1:-1:-1;;8097:274:16:o;8376:1300::-;8653:3;8682:1;8715:6;8709:13;8745:3;8767:1;8795:9;8791:2;8787:18;8777:28;;8855:2;8844:9;8840:18;8877;8867:61;;8921:4;8913:6;8909:17;8899:27;;8867:61;8947:2;8995;8987:6;8984:14;8964:18;8961:38;8958:165;;;-1:-1:-1;;;9022:33:16;;9078:4;9075:1;9068:15;9108:4;9029:3;9096:17;8958:165;9139:18;9166:104;;;;9284:1;9279:320;;;;9132:467;;9166:104;-1:-1:-1;;9199:24:16;;9187:37;;9244:16;;;;-1:-1:-1;9166:104:16;;9279:320;23183:1;23176:14;;;23220:4;23207:18;;9374:1;9388:165;9402:6;9399:1;9396:13;9388:165;;;9480:14;;9467:11;;;9460:35;9523:16;;;;9417:10;;9388:165;;;9392:3;;9582:6;9577:3;9573:16;9566:23;;9132:467;;;;;;;9615:55;9640:29;9665:3;9657:6;9640:29;:::i;:::-;-1:-1:-1;;;8039:20:16;;8084:1;8075:11;;7979:113;9615:55;9608:62;8376:1300;-1:-1:-1;;;;;8376:1300:16:o;11711:499::-;-1:-1:-1;;;;;11980:15:16;;;11962:34;;12032:15;;12027:2;12012:18;;12005:43;12079:2;12064:18;;12057:34;;;12127:3;12122:2;12107:18;;12100:31;;;11905:4;;12148:56;;12184:19;;12176:6;12148:56;:::i;:::-;12140:64;11711:499;-1:-1:-1;;;;;;11711:499:16:o;12494:632::-;12665:2;12717:21;;;12787:13;;12690:18;;;12809:22;;;12636:4;;12665:2;12888:15;;;;12862:2;12847:18;;;12636:4;12931:169;12945:6;12942:1;12939:13;12931:169;;;13006:13;;12994:26;;13075:15;;;;13040:12;;;;12967:1;12960:9;12931:169;;;-1:-1:-1;13117:3:16;;12494:632;-1:-1:-1;;;;;;12494:632:16:o;13726:340::-;13870:2;13855:18;;13903:1;13892:13;;13882:144;;13948:10;13943:3;13939:20;13936:1;13929:31;13983:4;13980:1;13973:15;14011:4;14008:1;14001:15;13882:144;14035:25;;;13726:340;:::o;14071:230::-;14220:2;14209:9;14202:21;14183:4;14240:55;14291:2;14280:9;14276:18;14268:6;14240:55;:::i;16116:402::-;16318:2;16300:21;;;16357:2;16337:18;;;16330:30;16396:34;16391:2;16376:18;;16369:62;-1:-1:-1;;;16462:2:16;16447:18;;16440:36;16508:3;16493:19;;16116:402::o;19176:407::-;19378:2;19360:21;;;19417:2;19397:18;;;19390:30;19456:34;19451:2;19436:18;;19429:62;-1:-1:-1;;;19522:2:16;19507:18;;19500:41;19573:3;19558:19;;19176:407::o;20708:404::-;20910:2;20892:21;;;20949:2;20929:18;;;20922:30;20988:34;20983:2;20968:18;;20961:62;-1:-1:-1;;;21054:2:16;21039:18;;21032:38;21102:3;21087:19;;20708:404::o;21117:356::-;21319:2;21301:21;;;21338:18;;;21331:30;21397:34;21392:2;21377:18;;21370:62;21464:2;21449:18;;21117:356::o;23236:128::-;23276:3;23307:1;23303:6;23300:1;23297:13;23294:39;;;23313:18;;:::i;:::-;-1:-1:-1;23349:9:16;;23236:128::o;23369:228::-;23408:3;23436:10;23473:2;23470:1;23466:10;23503:2;23500:1;23496:10;23534:3;23530:2;23526:12;23521:3;23518:21;23515:47;;;23542:18;;:::i;:::-;23578:13;;23369:228;-1:-1:-1;;;;23369:228:16:o;23602:120::-;23642:1;23668;23658:35;;23673:18;;:::i;:::-;-1:-1:-1;23707:9:16;;23602:120::o;23727:168::-;23767:7;23833:1;23829;23825:6;23821:14;23818:1;23815:21;23810:1;23803:9;23796:17;23792:45;23789:71;;;23840:18;;:::i;:::-;-1:-1:-1;23880:9:16;;23727:168::o;23900:125::-;23940:4;23968:1;23965;23962:8;23959:34;;;23973:18;;:::i;:::-;-1:-1:-1;24010:9:16;;23900:125::o;24030:258::-;24102:1;24112:113;24126:6;24123:1;24120:13;24112:113;;;24202:11;;;24196:18;24183:11;;;24176:39;24148:2;24141:10;24112:113;;;24243:6;24240:1;24237:13;24234:48;;;-1:-1:-1;;24278:1:16;24260:16;;24253:27;24030:258::o;24293:380::-;24372:1;24368:12;;;;24415;;;24436:61;;24490:4;24482:6;24478:17;24468:27;;24436:61;24543:2;24535:6;24532:14;24512:18;24509:38;24506:161;;;24589:10;24584:3;24580:20;24577:1;24570:31;24624:4;24621:1;24614:15;24652:4;24649:1;24642:15;24506:161;;24293:380;;;:::o;24678:135::-;24717:3;-1:-1:-1;;24738:17:16;;24735:43;;;24758:18;;:::i;:::-;-1:-1:-1;24805:1:16;24794:13;;24678:135::o;24818:112::-;24850:1;24876;24866:35;;24881:18;;:::i;:::-;-1:-1:-1;24915:9:16;;24818:112::o;24935:127::-;24996:10;24991:3;24987:20;24984:1;24977:31;25027:4;25024:1;25017:15;25051:4;25048:1;25041:15;25067:127;25128:10;25123:3;25119:20;25116:1;25109:31;25159:4;25156:1;25149:15;25183:4;25180:1;25173:15;25199:127;25260:10;25255:3;25251:20;25248:1;25241:31;25291:4;25288:1;25281:15;25315:4;25312:1;25305:15;25331:127;25392:10;25387:3;25383:20;25380:1;25373:31;25423:4;25420:1;25413:15;25447:4;25444:1;25437:15;25463:127;25524:10;25519:3;25515:20;25512:1;25505:31;25555:4;25552:1;25545:15;25579:4;25576:1;25569:15;25595:131;-1:-1:-1;;;;;25670:31:16;;25660:42;;25650:70;;25716:1;25713;25706:12;25731:118;25817:5;25810:13;25803:21;25796:5;25793:32;25783:60;;25839:1;25836;25829:12;25854:131;-1:-1:-1;;;;;;25928:32:16;;25918:43;;25908:71;;25975:1;25972;25965:12

Swarm Source

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