ETH Price: $3,463.10 (+1.62%)
Gas: 7 Gwei

Token

Non Fungible Fungi (NFF)
 

Overview

Max Total Supply

9,709 NFF

Holders

3,049

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFF
0x09242cf44047b58ff0fbfe8428ab39f2faadff7e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A 10K collection of unique 3D animated Mushrooms strolling across the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
nonFungibleFungiGenerative

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/smartcontractkit/chainlink/blob/develop/contracts/src/v0.8/VRFRequestIDBase.sol


pragma solidity ^0.8.0;

contract VRFRequestIDBase {
  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  ) internal pure returns (uint256) {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

// File: https://github.com/smartcontractkit/chainlink/blob/develop/contracts/src/v0.8/interfaces/LinkTokenInterface.sol


pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

// File: https://github.com/smartcontractkit/chainlink/blob/develop/contracts/src/v0.8/VRFConsumerBase.sol


pragma solidity ^0.8.0;



/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 private constant USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface internal immutable LINK;
  address private immutable vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 => uint256) /* keyHash */ /* nonce */
    private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.3.2 (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);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    // 0xInuarashi was here...
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: generativefungi.sol

//SPDX-License-Identifier: MIT

// ███╗   ██╗ ██████╗ ███╗   ██╗      ███████╗██╗   ██╗███╗   ██╗ ██████╗ ██╗██████╗ ██╗     ███████╗        ███████╗██╗   ██╗███╗   ██╗ ██████╗ ██╗
// ████╗  ██║██╔═══██╗████╗  ██║      ██╔════╝██║   ██║████╗  ██║██╔════╝ ██║██╔══██╗██║     ██╔════╝        ██╔════╝██║   ██║████╗  ██║██╔════╝ ██║
// ██╔██╗ ██║██║   ██║██╔██╗ ██║█████╗█████╗  ██║   ██║██╔██╗ ██║██║  ███╗██║██████╔╝██║     █████╗          █████╗  ██║   ██║██╔██╗ ██║██║  ███╗██║
// ██║╚██╗██║██║   ██║██║╚██╗██║╚════╝██╔══╝  ██║   ██║██║╚██╗██║██║   ██║██║██╔══██╗██║     ██╔══╝          ██╔══╝  ██║   ██║██║╚██╗██║██║   ██║██║
// ██║ ╚████║╚██████╔╝██║ ╚████║      ██║     ╚██████╔╝██║ ╚████║╚██████╔╝██║██████╔╝███████╗███████╗        ██║     ╚██████╔╝██║ ╚████║╚██████╔╝██║
// ╚═╝  ╚═══╝ ╚═════╝ ╚═╝  ╚═══╝      ╚═╝      ╚═════╝ ╚═╝  ╚═══╝ ╚═════╝ ╚═╝╚═════╝ ╚══════╝╚══════╝        ╚═╝      ╚═════╝ ╚═╝  ╚═══╝ ╚═════╝ ╚═╝

pragma solidity ^0.8.0;




contract nonFungibleFungiGenerative is ERC721, Ownable, VRFConsumerBase {
    /* Created by: 0xInuarashi
    Discord: 0xInuarashi#1234
    Twitter: https://twitter.com/0xinuarashi

    NonFungibleFungi Generative
    Features: 
        1. VRF Random Generator [X]
        2. Mint for MintPass [X] */

    /*
    This is for Rinkeby
    constructor() ERC721("Non Fungible Fungi", "NFF") 
    VRFConsumerBase(
        0xb3dCcb4Cf7a26f6cf6B120Cf5A73875B7BBc655B,
        0x01BE23585060835E02B77ef475b0Cc51aA1e0709
    ) {
        keyHash = 0x2ed0feb3e7fd2022120aa84fab1945545a9f2ffc9076fd6156fa96eaff4c1311;
        fee = 0.1 * (10**18);
    }
    */

    // This is for Mainnet
    constructor() ERC721("Non Fungible Fungi", "NFF") 
    VRFConsumerBase(
        0xf0d54349aDdcf704F77AE15b96510dEA15cb7952,
        0x514910771AF9Ca656af840dff83E8264EcF986CA
    ) {
        keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
        fee = 2 * (10**18);
    }

    // General NFT Variables
    uint public constant maxTokens = 10000;
    uint public totalSupply = 0;

    string internal baseTokenURI;
    string internal baseTokenURI_EXT;

    event Mint(address indexed to, uint mintPassId, uint tokenId);

    modifier onlySender {
        require(msg.sender == tx.origin, "No smart contracts!");
        _;
    }

    // Withdraw Ether
    function withdrawEther() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance); 
    }


    // Mint Pass Interfacing
    address public mintPassAddress;
    IERC721 MintPass;

    function setMintPass(address address_) public onlyOwner {
        mintPassAddress = address_;
        MintPass = IERC721(address_);
    }

    ////////////////////////// VRF /////////////////////////////
    bytes32 internal keyHash;
    uint internal fee;
    uint internal randomResult;
    
    // VRF Functions
    function getRandomNumber() public onlyOwner returns (bytes32 requestId) {
        require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK!");
        return requestRandomness(keyHash, fee);
    }
    function fulfillRandomness(bytes32 requestId, uint randomness) internal override {
        randomResult = randomness;
    }    
    function getRandomResult() public view onlyOwner returns (uint) {
        return randomResult;
    }

    // >>> Now, the VRF is stored in [uint internal randomResult]
    ////////////////////////// VRF /////////////////////////////

    /////////////////////// Token ID Generator ////////////////////////
    // ** Thanks LarvaLabs for this big brain method. **             //
    // This function is modified by 0xInuarashi                      //
    // and now includes the usage of generated input from VRF.       //
    ///////////////////////////////////////////////////////////////////

    uint[maxTokens] internal indices;
    uint32 internal nonce;

    function getVRFRandomIndex(uint tokenId_) internal returns (uint) {
        require(randomResult != 0, "VRF Random Result has not been set!");
        uint _tokensRemaining = maxTokens - totalSupply; // require that this calculation is possible from all caller functions
        uint _maxIndex = _tokensRemaining == 0 ? 0 : _tokensRemaining - 1; // shorthand if for safety 
        uint _rand = uint(keccak256(abi.encodePacked(randomResult, nonce, tokenId_, msg.sender, block.difficulty, block.timestamp))) % _tokensRemaining; // magic random
    
        uint _output = 0;

        _output = indices[_rand] != 0 ? indices[_rand] :_rand;
        indices[_rand] = indices[_maxIndex] == 0 ? _maxIndex : indices[_maxIndex];

        uint32 _nonceAdd = uint32(uint256(keccak256(abi.encodePacked(randomResult, nonce, tokenId_, msg.sender, block.difficulty, block.timestamp)))) % 10; // magic nonce
        nonce += _nonceAdd; // increase nonce

        return _output;
    }

    /////////////////////// Token ID Generator ////////////////////////

    // Minting with MintPass, It uses VRF and Token ID Generator
    bool public mintWithPassEnabled;

    // mapping(uint => uint) mintPassUsed; // some safety

    modifier mintWithPass {
        require(mintWithPassEnabled, "Minting with Mint Pass is not enabled yet!");
        _;
    }

    function setMintWithPassStatus(bool bool_) public onlyOwner {
        mintWithPassEnabled = bool_;
    }

    function mintWithMintPass(uint mintPassId_) public onlySender mintWithPass {
        require(msg.sender == MintPass.ownerOf(mintPassId_), "You are not the owner of this mint pass!");
        require(maxTokens > totalSupply, "No more available tokens!");

        // require(mintPassUsed[mintPassId_] == 0, "This mint pass is already used!"); // this should never happen
        // mintPassUsed[mintPassId_]++; // increment this mapping as used

        MintPass.transferFrom(msg.sender, address(this), mintPassId_); // transfer the mint pass to this address (equivalent to burning it)

        uint _mintId = getVRFRandomIndex(mintPassId_);
        totalSupply++;

        _mint(msg.sender, _mintId);
        emit Mint(msg.sender, mintPassId_, _mintId);
    }

    function multiMintWithMintPass(uint[] memory mintPassIds_) public onlySender mintWithPass {
        for (uint i = 0; i < mintPassIds_.length; i++) {
            mintWithMintPass(mintPassIds_[i]);
        }
    }

    // 0xInuarashi Custom Functions (Saves Gas!)
    function multiTransferFrom(address from_, address to_, uint256[] memory tokenIds_) public {
        for (uint256 i = 0; i < tokenIds_.length; i++) {
            transferFrom(from_, to_, tokenIds_[i]);
        }
    }
    function multiSafeTransferFrom(address from_, address to_, uint256[] memory tokenIds_, bytes memory data_) public {
        for (uint256 i = 0; i < tokenIds_.length; i++) {
            safeTransferFrom(from_, to_, tokenIds_[i], data_);
        }
    }

    // General NFT Administration
    function setBaseTokenURI(string memory uri_) external onlyOwner {
        baseTokenURI = uri_;
    }
    function setBaseTokenURI_EXT(string memory ext_) external onlyOwner {
        baseTokenURI_EXT = ext_;
    }

    // View Functions
    function tokenURI(uint tokenId_) public view override returns (string memory) {
        require(_exists(tokenId_), "Query for non-existent token!");
        return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId_), baseTokenURI_EXT));
    }
    function walletOfOwner(address address_) public view returns (uint[] memory) {
        uint _balance = balanceOf(address_); // get balance of address
        uint[] memory _tokens = new uint[](_balance); // initialize array 
        uint _index;
        for (uint i = 0; i < maxTokens; i++) {
            if (address_ == ownerOf(i)) { _tokens[_index] = i; _index++; }
        }
        return _tokens;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintPassId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandomNumber","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRandomResult","outputs":[{"internalType":"uint256","name":"","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":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPassAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPassId_","type":"uint256"}],"name":"mintWithMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintWithPassEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"mintPassIds_","type":"uint256[]"}],"name":"multiMintWithMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"multiSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"}],"name":"multiTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setMintWithPassStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006008553480156200001657600080fd5b5060408051808201825260128152714e6f6e2046756e6769626c652046756e676960701b60208083019182528351808501909452600384526227232360e91b90840152815173f0d54349addcf704f77ae15b96510dea15cb79529373514910771af9ca656af840dff83e8264ecf986ca93929091620000989160009162000170565b508051620000ae90600190602084019062000170565b505050620000cb620000c56200011a60201b60201c565b6200011e565b6001600160601b0319606092831b811660a052911b166080527faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600d55671bc16d674ec80000600e5562000253565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017e9062000216565b90600052602060002090601f016020900481019282620001a25760008555620001ed565b82601f10620001bd57805160ff1916838001178555620001ed565b82800160010185558215620001ed579182015b82811115620001ed578251825591602001919060010190620001d0565b50620001fb929150620001ff565b5090565b5b80821115620001fb576000815560010162000200565b600181811c908216806200022b57607f821691505b602082108114156200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c61275a6200028d60003960008181610b7b0152611a76015260008181610ffc0152611a47015261275a6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637362377b1161011a578063b2a9cfa6116100ad578063dbdff2c11161007c578063dbdff2c114610441578063e831574214610449578063e985e9c514610452578063f2fde38b1461048e578063f487c602146104a157600080fd5b8063b2a9cfa6146103f5578063b88d4fde14610408578063c17177f31461041b578063c87b56dd1461042e57600080fd5b806394985ddd116100e957806394985ddd146103b157806395d89b41146103c457806396bd4efb146103cc578063a22cb465146103e257600080fd5b80637362377b1461037d5780637390c786146103855780637fe746f91461038d5780638da5cb5b146103a057600080fd5b806330176e1311610192578063570152d311610161578063570152d3146103265780636352211e1461033957806370a0823114610362578063715018a61461037557600080fd5b806330176e13146102cd5780633a3473b6146102e057806342842e0e146102f3578063438b63001461030657600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806318160ddd1461029057806323b872dd146102a75780632705c0c8146102ba57600080fd5b806301ffc9a71461020057806302ffaed11461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004612163565b6104b4565b60405190151581526020015b60405180910390f35b61023b61023636600461219d565b610506565b005b610245610550565b60405161021f9190612409565b6102656102603660046121e6565b6105e2565b6040516001600160a01b03909116815260200161021f565b61023b61028b3660046120a6565b610677565b61029960085481565b60405190815260200161021f565b61023b6102b5366004611fd7565b61078a565b61023b6102c8366004612107565b6107bb565b61023b6102db36600461219d565b610806565b61023b6102ee366004611f4e565b610843565b61023b610301366004611fd7565b61088d565b610319610314366004611e79565b6108a8565b60405161021f91906123c5565b600b54610265906001600160a01b031681565b6102656103473660046121e6565b6000908152600260205260409020546001600160a01b031690565b610299610370366004611e79565b610976565b61023b6109fd565b61023b610a33565b610299610a8c565b61023b61039b3660046120d2565b610ac0565b6006546001600160a01b0316610265565b61023b6103bf366004612141565b610b70565b610245610bee565b6127205461021390640100000000900460ff1681565b61023b6103f0366004612078565b610bfd565b61023b610403366004611e79565b610c08565b61023b610416366004612018565b610c5e565b61023b6104293660046121e6565b610c96565b61024561043c3660046121e6565b610f1b565b610299610fb7565b61029961271081565b610213610460366004611eb3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b61049c366004611e79565b6110d2565b61023b6104af366004611eec565b61116a565b60006001600160e01b031982166380ac58cd60e01b14806104e557506001600160e01b03198216635b5e139f60e01b145b8061050057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105395760405162461bcd60e51b8152600401610530906124b8565b60405180910390fd5b805161054c90600a906020840190611cdb565b5050565b60606000805461055f90612606565b80601f016020809104026020016040519081016040528092919081815260200182805461058b90612606565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661065b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610530565b506000908152600460205260409020546001600160a01b031690565b6000818152600260205260409020546001600160a01b039081169083168114156106ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610530565b336001600160a01b038216148061070957506107098133610460565b61077b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610530565b61078583836111ac565b505050565b6107943382611213565b6107b05760405162461bcd60e51b8152600401610530906124ed565b610785838383611307565b6006546001600160a01b031633146107e55760405162461bcd60e51b8152600401610530906124b8565b61272080549115156401000000000264ff0000000019909216919091179055565b6006546001600160a01b031633146108305760405162461bcd60e51b8152600401610530906124b8565b805161054c906009906020840190611cdb565b60005b8251811015610886576108748585858481518110610866576108666126bf565b602002602001015185610c5e565b8061087e81612641565b915050610846565b5050505050565b61078583838360405180602001604052806000815250610c5e565b606060006108b583610976565b905060008167ffffffffffffffff8111156108d2576108d26126d5565b6040519080825280602002602001820160405280156108fb578160200160208202803683370190505b5090506000805b61271081101561096c576000818152600260205260409020546001600160a01b038781169116141561095a5780838381518110610941576109416126bf565b60209081029190910101528161095681612641565b9250505b8061096481612641565b915050610902565b5090949350505050565b60006001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610530565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a275760405162461bcd60e51b8152600401610530906124b8565b610a3160006114a7565b565b6006546001600160a01b03163314610a5d5760405162461bcd60e51b8152600401610530906124b8565b60405133904780156108fc02916000818181858888f19350505050158015610a89573d6000803e3d6000fd5b50565b6006546000906001600160a01b03163314610ab95760405162461bcd60e51b8152600401610530906124b8565b50600f5490565b333214610b055760405162461bcd60e51b81526020600482015260136024820152724e6f20736d61727420636f6e7472616374732160681b6044820152606401610530565b61272054640100000000900460ff16610b305760405162461bcd60e51b81526004016105309061246e565b60005b815181101561054c57610b5e828281518110610b5157610b516126bf565b6020026020010151610c96565b80610b6881612641565b915050610b33565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610be85760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610530565b600f5550565b60606001805461055f90612606565b61054c3383836114f9565b6006546001600160a01b03163314610c325760405162461bcd60e51b8152600401610530906124b8565b600b80546001600160a01b039092166001600160a01b03199283168117909155600c8054909216179055565b610c683383611213565b610c845760405162461bcd60e51b8152600401610530906124ed565b610c90848484846115c8565b50505050565b333214610cdb5760405162461bcd60e51b81526020600482015260136024820152724e6f20736d61727420636f6e7472616374732160681b6044820152606401610530565b61272054640100000000900460ff16610d065760405162461bcd60e51b81526004016105309061246e565b600c546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610d4a57600080fd5b505afa158015610d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d829190611e96565b6001600160a01b0316336001600160a01b031614610df35760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973206d696044820152676e7420706173732160c01b6064820152608401610530565b60085461271011610e465760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f6b656e7321000000000000006044820152606401610530565b600c546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610e9857600080fd5b505af1158015610eac573d6000803e3d6000fd5b505050506000610ebb826115fb565b600880549192506000610ecd83612641565b9190505550610edc3382611803565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a25050565b6000818152600260205260409020546060906001600160a01b0316610f825760405162461bcd60e51b815260206004820152601d60248201527f517565727920666f72206e6f6e2d6578697374656e7420746f6b656e210000006044820152606401610530565b6009610f8d83611945565b600a604051602001610fa1939291906122de565b6040516020818303038152906040529050919050565b6006546000906001600160a01b03163314610fe45760405162461bcd60e51b8152600401610530906124b8565b600e546040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561104657600080fd5b505afa15801561105a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107e91906121ff565b10156110bf5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204c494e4b2160801b6044820152606401610530565b6110cd600d54600e54611a43565b905090565b6006546001600160a01b031633146110fc5760405162461bcd60e51b8152600401610530906124b8565b6001600160a01b0381166111615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610530565b610a89816114a7565b60005b8151811015610c905761119a848484848151811061118d5761118d6126bf565b602002602001015161078a565b806111a481612641565b91505061116d565b600081815260046020908152604080832080546001600160a01b0319166001600160a01b038781169182179092556002909352818420549151859492909116917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050565b6000818152600260205260408120546001600160a01b031661128c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610530565b6000828152600260205260409020546001600160a01b039081169084168114806112cf5750836001600160a01b03166112c4846105e2565b6001600160a01b0316145b806112ff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b6000818152600260205260409020546001600160a01b038481169116146113825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610530565b6001600160a01b0382166113e45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610530565b6113ef6000826111ac565b6001600160a01b03831660009081526003602052604081208054600192906114189084906125c3565b90915550506001600160a01b038216600090815260036020526040812080546001929061144690849061256f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561155b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610530565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115d3848484611307565b6115df84848484611bce565b610c905760405162461bcd60e51b81526004016105309061241c565b6000600f546000141561165c5760405162461bcd60e51b815260206004820152602360248201527f5652462052616e646f6d20526573756c7420686173206e6f74206265656e207360448201526265742160e81b6064820152608401610530565b600060085461271061166e91906125c3565b905060008115611688576116836001836125c3565b61168b565b60005b600f546127205460405192935060009285926116bc92909163ffffffff909116908990339044904290602001612311565b6040516020818303038152906040528051906020012060001c6116df919061265c565b9050600060108261271081106116f7576116f76126bf565b0154611703578161171a565b6010826127108110611717576117176126bf565b01545b90506010836127108110611730576117306126bf565b01541561175257601083612710811061174b5761174b6126bf565b0154611754565b825b6010836127108110611768576117686126bf565b0155600f5461272054604051600092600a926117979263ffffffff909116908b90339044904290602001612311565b6040516020818303038152906040528051906020012060001c6117ba9190612670565b612720805491925082916000906117d890849063ffffffff16612587565b92506101000a81548163ffffffff021916908363ffffffff1602179055508195505050505050919050565b6001600160a01b0382166118595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610530565b6000818152600260205260409020546001600160a01b0316156118be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610530565b6001600160a01b03821660009081526003602052604081208054600192906118e790849061256f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816119695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611993578061197d81612641565b915061198c9050600a836125af565b915061196d565b60008167ffffffffffffffff8111156119ae576119ae6126d5565b6040519080825280601f01601f1916602001820160405280156119d8576020820181803683370190505b5090505b84156112ff576119ed6001836125c3565b91506119fa600a8661265c565b611a0590603061256f565b60f81b818381518110611a1a57611a1a6126bf565b60200101906001600160f81b031916908160001a905350611a3c600a866125af565b94506119dc565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001611ab3929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401611ae093929190612395565b602060405180830381600087803b158015611afa57600080fd5b505af1158015611b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b329190612124565b50600083815260076020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052611b8e90600161256f565b6000858152600760205260409020556112ff8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160a01b0384163b15611cd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c12903390899088908890600401612358565b602060405180830381600087803b158015611c2c57600080fd5b505af1925050508015611c5c575060408051601f3d908101601f19168201909252611c5991810190612180565b60015b611cb6573d808015611c8a576040519150601f19603f3d011682016040523d82523d6000602084013e611c8f565b606091505b508051611cae5760405162461bcd60e51b81526004016105309061241c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ff565b506001949350505050565b828054611ce790612606565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50611d5b929150611d5f565b5090565b5b80821115611d5b5760008155600101611d60565b600067ffffffffffffffff831115611d8e57611d8e6126d5565b611da1601f8401601f191660200161253e565b9050828152838383011115611db557600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ddd57600080fd5b8135602067ffffffffffffffff821115611df957611df96126d5565b8160051b611e0882820161253e565b838152828101908684018388018501891015611e2357600080fd5b600093505b85841015611e46578035835260019390930192918401918401611e28565b50979650505050505050565b600082601f830112611e6357600080fd5b611e7283833560208501611d74565b9392505050565b600060208284031215611e8b57600080fd5b8135611e72816126eb565b600060208284031215611ea857600080fd5b8151611e72816126eb565b60008060408385031215611ec657600080fd5b8235611ed1816126eb565b91506020830135611ee1816126eb565b809150509250929050565b600080600060608486031215611f0157600080fd5b8335611f0c816126eb565b92506020840135611f1c816126eb565b9150604084013567ffffffffffffffff811115611f3857600080fd5b611f4486828701611dcc565b9150509250925092565b60008060008060808587031215611f6457600080fd5b8435611f6f816126eb565b93506020850135611f7f816126eb565b9250604085013567ffffffffffffffff80821115611f9c57600080fd5b611fa888838901611dcc565b93506060870135915080821115611fbe57600080fd5b50611fcb87828801611e52565b91505092959194509250565b600080600060608486031215611fec57600080fd5b8335611ff7816126eb565b92506020840135612007816126eb565b929592945050506040919091013590565b6000806000806080858703121561202e57600080fd5b8435612039816126eb565b93506020850135612049816126eb565b925060408501359150606085013567ffffffffffffffff81111561206c57600080fd5b611fcb87828801611e52565b6000806040838503121561208b57600080fd5b8235612096816126eb565b91506020830135611ee181612700565b600080604083850312156120b957600080fd5b82356120c4816126eb565b946020939093013593505050565b6000602082840312156120e457600080fd5b813567ffffffffffffffff8111156120fb57600080fd5b6112ff84828501611dcc565b60006020828403121561211957600080fd5b8135611e7281612700565b60006020828403121561213657600080fd5b8151611e7281612700565b6000806040838503121561215457600080fd5b50508035926020909101359150565b60006020828403121561217557600080fd5b8135611e728161270e565b60006020828403121561219257600080fd5b8151611e728161270e565b6000602082840312156121af57600080fd5b813567ffffffffffffffff8111156121c657600080fd5b8201601f810184136121d757600080fd5b6112ff84823560208401611d74565b6000602082840312156121f857600080fd5b5035919050565b60006020828403121561221157600080fd5b5051919050565b600081518084526122308160208601602086016125da565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061225e57607f831692505b602080841082141561228057634e487b7160e01b600052602260045260246000fd5b81801561229457600181146122a5576122d2565b60ff198616895284890196506122d2565b60008881526020902060005b868110156122ca5781548b8201529085019083016122b1565b505084890196505b50505050505092915050565b60006122ea8286612244565b84516122fa8183602089016125da565b61230681830186612244565b979650505050505050565b95865260e09490941b6001600160e01b0319166020860152602485019290925260601b6bffffffffffffffffffffffff191660448401526058830152607882015260980190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238b90830184612218565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006123bc6060830184612218565b95945050505050565b6020808252825182820181905260009190848201906040850190845b818110156123fd578351835292840192918401916001016123e1565b50909695505050505050565b602081526000611e726020830184612218565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f4d696e74696e672077697468204d696e742050617373206973206e6f7420656e60408201526961626c6564207965742160b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612567576125676126d5565b604052919050565b6000821982111561258257612582612693565b500190565b600063ffffffff8083168185168083038211156125a6576125a6612693565b01949350505050565b6000826125be576125be6126a9565b500490565b6000828210156125d5576125d5612693565b500390565b60005b838110156125f55781810151838201526020016125dd565b83811115610c905750506000910152565b600181811c9082168061261a57607f821691505b6020821081141561263b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265557612655612693565b5060010190565b60008261266b5761266b6126a9565b500690565b600063ffffffff80841680612687576126876126a9565b92169190910692915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a8957600080fd5b8015158114610a8957600080fd5b6001600160e01b031981168114610a8957600080fdfea2646970667358221220137702a4e5d1b93ae7d998a30906f687e223587971a128c9dd8e1ab29630606a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637362377b1161011a578063b2a9cfa6116100ad578063dbdff2c11161007c578063dbdff2c114610441578063e831574214610449578063e985e9c514610452578063f2fde38b1461048e578063f487c602146104a157600080fd5b8063b2a9cfa6146103f5578063b88d4fde14610408578063c17177f31461041b578063c87b56dd1461042e57600080fd5b806394985ddd116100e957806394985ddd146103b157806395d89b41146103c457806396bd4efb146103cc578063a22cb465146103e257600080fd5b80637362377b1461037d5780637390c786146103855780637fe746f91461038d5780638da5cb5b146103a057600080fd5b806330176e1311610192578063570152d311610161578063570152d3146103265780636352211e1461033957806370a0823114610362578063715018a61461037557600080fd5b806330176e13146102cd5780633a3473b6146102e057806342842e0e146102f3578063438b63001461030657600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806318160ddd1461029057806323b872dd146102a75780632705c0c8146102ba57600080fd5b806301ffc9a71461020057806302ffaed11461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004612163565b6104b4565b60405190151581526020015b60405180910390f35b61023b61023636600461219d565b610506565b005b610245610550565b60405161021f9190612409565b6102656102603660046121e6565b6105e2565b6040516001600160a01b03909116815260200161021f565b61023b61028b3660046120a6565b610677565b61029960085481565b60405190815260200161021f565b61023b6102b5366004611fd7565b61078a565b61023b6102c8366004612107565b6107bb565b61023b6102db36600461219d565b610806565b61023b6102ee366004611f4e565b610843565b61023b610301366004611fd7565b61088d565b610319610314366004611e79565b6108a8565b60405161021f91906123c5565b600b54610265906001600160a01b031681565b6102656103473660046121e6565b6000908152600260205260409020546001600160a01b031690565b610299610370366004611e79565b610976565b61023b6109fd565b61023b610a33565b610299610a8c565b61023b61039b3660046120d2565b610ac0565b6006546001600160a01b0316610265565b61023b6103bf366004612141565b610b70565b610245610bee565b6127205461021390640100000000900460ff1681565b61023b6103f0366004612078565b610bfd565b61023b610403366004611e79565b610c08565b61023b610416366004612018565b610c5e565b61023b6104293660046121e6565b610c96565b61024561043c3660046121e6565b610f1b565b610299610fb7565b61029961271081565b610213610460366004611eb3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b61049c366004611e79565b6110d2565b61023b6104af366004611eec565b61116a565b60006001600160e01b031982166380ac58cd60e01b14806104e557506001600160e01b03198216635b5e139f60e01b145b8061050057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105395760405162461bcd60e51b8152600401610530906124b8565b60405180910390fd5b805161054c90600a906020840190611cdb565b5050565b60606000805461055f90612606565b80601f016020809104026020016040519081016040528092919081815260200182805461058b90612606565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661065b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610530565b506000908152600460205260409020546001600160a01b031690565b6000818152600260205260409020546001600160a01b039081169083168114156106ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610530565b336001600160a01b038216148061070957506107098133610460565b61077b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610530565b61078583836111ac565b505050565b6107943382611213565b6107b05760405162461bcd60e51b8152600401610530906124ed565b610785838383611307565b6006546001600160a01b031633146107e55760405162461bcd60e51b8152600401610530906124b8565b61272080549115156401000000000264ff0000000019909216919091179055565b6006546001600160a01b031633146108305760405162461bcd60e51b8152600401610530906124b8565b805161054c906009906020840190611cdb565b60005b8251811015610886576108748585858481518110610866576108666126bf565b602002602001015185610c5e565b8061087e81612641565b915050610846565b5050505050565b61078583838360405180602001604052806000815250610c5e565b606060006108b583610976565b905060008167ffffffffffffffff8111156108d2576108d26126d5565b6040519080825280602002602001820160405280156108fb578160200160208202803683370190505b5090506000805b61271081101561096c576000818152600260205260409020546001600160a01b038781169116141561095a5780838381518110610941576109416126bf565b60209081029190910101528161095681612641565b9250505b8061096481612641565b915050610902565b5090949350505050565b60006001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610530565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a275760405162461bcd60e51b8152600401610530906124b8565b610a3160006114a7565b565b6006546001600160a01b03163314610a5d5760405162461bcd60e51b8152600401610530906124b8565b60405133904780156108fc02916000818181858888f19350505050158015610a89573d6000803e3d6000fd5b50565b6006546000906001600160a01b03163314610ab95760405162461bcd60e51b8152600401610530906124b8565b50600f5490565b333214610b055760405162461bcd60e51b81526020600482015260136024820152724e6f20736d61727420636f6e7472616374732160681b6044820152606401610530565b61272054640100000000900460ff16610b305760405162461bcd60e51b81526004016105309061246e565b60005b815181101561054c57610b5e828281518110610b5157610b516126bf565b6020026020010151610c96565b80610b6881612641565b915050610b33565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614610be85760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610530565b600f5550565b60606001805461055f90612606565b61054c3383836114f9565b6006546001600160a01b03163314610c325760405162461bcd60e51b8152600401610530906124b8565b600b80546001600160a01b039092166001600160a01b03199283168117909155600c8054909216179055565b610c683383611213565b610c845760405162461bcd60e51b8152600401610530906124ed565b610c90848484846115c8565b50505050565b333214610cdb5760405162461bcd60e51b81526020600482015260136024820152724e6f20736d61727420636f6e7472616374732160681b6044820152606401610530565b61272054640100000000900460ff16610d065760405162461bcd60e51b81526004016105309061246e565b600c546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610d4a57600080fd5b505afa158015610d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d829190611e96565b6001600160a01b0316336001600160a01b031614610df35760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973206d696044820152676e7420706173732160c01b6064820152608401610530565b60085461271011610e465760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f6b656e7321000000000000006044820152606401610530565b600c546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610e9857600080fd5b505af1158015610eac573d6000803e3d6000fd5b505050506000610ebb826115fb565b600880549192506000610ecd83612641565b9190505550610edc3382611803565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a25050565b6000818152600260205260409020546060906001600160a01b0316610f825760405162461bcd60e51b815260206004820152601d60248201527f517565727920666f72206e6f6e2d6578697374656e7420746f6b656e210000006044820152606401610530565b6009610f8d83611945565b600a604051602001610fa1939291906122de565b6040516020818303038152906040529050919050565b6006546000906001600160a01b03163314610fe45760405162461bcd60e51b8152600401610530906124b8565b600e546040516370a0823160e01b81523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b15801561104657600080fd5b505afa15801561105a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107e91906121ff565b10156110bf5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204c494e4b2160801b6044820152606401610530565b6110cd600d54600e54611a43565b905090565b6006546001600160a01b031633146110fc5760405162461bcd60e51b8152600401610530906124b8565b6001600160a01b0381166111615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610530565b610a89816114a7565b60005b8151811015610c905761119a848484848151811061118d5761118d6126bf565b602002602001015161078a565b806111a481612641565b91505061116d565b600081815260046020908152604080832080546001600160a01b0319166001600160a01b038781169182179092556002909352818420549151859492909116917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050565b6000818152600260205260408120546001600160a01b031661128c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610530565b6000828152600260205260409020546001600160a01b039081169084168114806112cf5750836001600160a01b03166112c4846105e2565b6001600160a01b0316145b806112ff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b6000818152600260205260409020546001600160a01b038481169116146113825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610530565b6001600160a01b0382166113e45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610530565b6113ef6000826111ac565b6001600160a01b03831660009081526003602052604081208054600192906114189084906125c3565b90915550506001600160a01b038216600090815260036020526040812080546001929061144690849061256f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561155b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610530565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115d3848484611307565b6115df84848484611bce565b610c905760405162461bcd60e51b81526004016105309061241c565b6000600f546000141561165c5760405162461bcd60e51b815260206004820152602360248201527f5652462052616e646f6d20526573756c7420686173206e6f74206265656e207360448201526265742160e81b6064820152608401610530565b600060085461271061166e91906125c3565b905060008115611688576116836001836125c3565b61168b565b60005b600f546127205460405192935060009285926116bc92909163ffffffff909116908990339044904290602001612311565b6040516020818303038152906040528051906020012060001c6116df919061265c565b9050600060108261271081106116f7576116f76126bf565b0154611703578161171a565b6010826127108110611717576117176126bf565b01545b90506010836127108110611730576117306126bf565b01541561175257601083612710811061174b5761174b6126bf565b0154611754565b825b6010836127108110611768576117686126bf565b0155600f5461272054604051600092600a926117979263ffffffff909116908b90339044904290602001612311565b6040516020818303038152906040528051906020012060001c6117ba9190612670565b612720805491925082916000906117d890849063ffffffff16612587565b92506101000a81548163ffffffff021916908363ffffffff1602179055508195505050505050919050565b6001600160a01b0382166118595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610530565b6000818152600260205260409020546001600160a01b0316156118be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610530565b6001600160a01b03821660009081526003602052604081208054600192906118e790849061256f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816119695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611993578061197d81612641565b915061198c9050600a836125af565b915061196d565b60008167ffffffffffffffff8111156119ae576119ae6126d5565b6040519080825280601f01601f1916602001820160405280156119d8576020820181803683370190505b5090505b84156112ff576119ed6001836125c3565b91506119fa600a8661265c565b611a0590603061256f565b60f81b818381518110611a1a57611a1a6126bf565b60200101906001600160f81b031916908160001a905350611a3c600a866125af565b94506119dc565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001611ab3929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401611ae093929190612395565b602060405180830381600087803b158015611afa57600080fd5b505af1158015611b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b329190612124565b50600083815260076020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052611b8e90600161256f565b6000858152600760205260409020556112ff8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160a01b0384163b15611cd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c12903390899088908890600401612358565b602060405180830381600087803b158015611c2c57600080fd5b505af1925050508015611c5c575060408051601f3d908101601f19168201909252611c5991810190612180565b60015b611cb6573d808015611c8a576040519150601f19603f3d011682016040523d82523d6000602084013e611c8f565b606091505b508051611cae5760405162461bcd60e51b81526004016105309061241c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ff565b506001949350505050565b828054611ce790612606565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50611d5b929150611d5f565b5090565b5b80821115611d5b5760008155600101611d60565b600067ffffffffffffffff831115611d8e57611d8e6126d5565b611da1601f8401601f191660200161253e565b9050828152838383011115611db557600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ddd57600080fd5b8135602067ffffffffffffffff821115611df957611df96126d5565b8160051b611e0882820161253e565b838152828101908684018388018501891015611e2357600080fd5b600093505b85841015611e46578035835260019390930192918401918401611e28565b50979650505050505050565b600082601f830112611e6357600080fd5b611e7283833560208501611d74565b9392505050565b600060208284031215611e8b57600080fd5b8135611e72816126eb565b600060208284031215611ea857600080fd5b8151611e72816126eb565b60008060408385031215611ec657600080fd5b8235611ed1816126eb565b91506020830135611ee1816126eb565b809150509250929050565b600080600060608486031215611f0157600080fd5b8335611f0c816126eb565b92506020840135611f1c816126eb565b9150604084013567ffffffffffffffff811115611f3857600080fd5b611f4486828701611dcc565b9150509250925092565b60008060008060808587031215611f6457600080fd5b8435611f6f816126eb565b93506020850135611f7f816126eb565b9250604085013567ffffffffffffffff80821115611f9c57600080fd5b611fa888838901611dcc565b93506060870135915080821115611fbe57600080fd5b50611fcb87828801611e52565b91505092959194509250565b600080600060608486031215611fec57600080fd5b8335611ff7816126eb565b92506020840135612007816126eb565b929592945050506040919091013590565b6000806000806080858703121561202e57600080fd5b8435612039816126eb565b93506020850135612049816126eb565b925060408501359150606085013567ffffffffffffffff81111561206c57600080fd5b611fcb87828801611e52565b6000806040838503121561208b57600080fd5b8235612096816126eb565b91506020830135611ee181612700565b600080604083850312156120b957600080fd5b82356120c4816126eb565b946020939093013593505050565b6000602082840312156120e457600080fd5b813567ffffffffffffffff8111156120fb57600080fd5b6112ff84828501611dcc565b60006020828403121561211957600080fd5b8135611e7281612700565b60006020828403121561213657600080fd5b8151611e7281612700565b6000806040838503121561215457600080fd5b50508035926020909101359150565b60006020828403121561217557600080fd5b8135611e728161270e565b60006020828403121561219257600080fd5b8151611e728161270e565b6000602082840312156121af57600080fd5b813567ffffffffffffffff8111156121c657600080fd5b8201601f810184136121d757600080fd5b6112ff84823560208401611d74565b6000602082840312156121f857600080fd5b5035919050565b60006020828403121561221157600080fd5b5051919050565b600081518084526122308160208601602086016125da565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061225e57607f831692505b602080841082141561228057634e487b7160e01b600052602260045260246000fd5b81801561229457600181146122a5576122d2565b60ff198616895284890196506122d2565b60008881526020902060005b868110156122ca5781548b8201529085019083016122b1565b505084890196505b50505050505092915050565b60006122ea8286612244565b84516122fa8183602089016125da565b61230681830186612244565b979650505050505050565b95865260e09490941b6001600160e01b0319166020860152602485019290925260601b6bffffffffffffffffffffffff191660448401526058830152607882015260980190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238b90830184612218565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006123bc6060830184612218565b95945050505050565b6020808252825182820181905260009190848201906040850190845b818110156123fd578351835292840192918401916001016123e1565b50909695505050505050565b602081526000611e726020830184612218565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f4d696e74696e672077697468204d696e742050617373206973206e6f7420656e60408201526961626c6564207965742160b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612567576125676126d5565b604052919050565b6000821982111561258257612582612693565b500190565b600063ffffffff8083168185168083038211156125a6576125a6612693565b01949350505050565b6000826125be576125be6126a9565b500490565b6000828210156125d5576125d5612693565b500390565b60005b838110156125f55781810151838201526020016125dd565b83811115610c905750506000910152565b600181811c9082168061261a57607f821691505b6020821081141561263b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265557612655612693565b5060010190565b60008261266b5761266b6126a9565b500690565b600063ffffffff80841680612687576126876126a9565b92169190910692915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a8957600080fd5b8015158114610a8957600080fd5b6001600160e01b031981168114610a8957600080fdfea2646970667358221220137702a4e5d1b93ae7d998a30906f687e223587971a128c9dd8e1ab29630606a64736f6c63430008070033

Deployed Bytecode Sourcemap

51882:6978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37225:305;;;;;;:::i;:::-;;:::i;:::-;;;12852:14:1;;12845:22;12827:41;;12815:2;12800:18;37225:305:0;;;;;;;;58037:110;;;;;;:::i;:::-;;:::i;:::-;;38086:100;;;:::i;:::-;;;;;;;:::i;39645:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10743:32:1;;;10725:51;;10713:2;10698:18;39645:221:0;10579:203:1;39168:411:0;;;;;;:::i;:::-;;:::i;52977:27::-;;;;;;;;;13025:25:1;;;13013:2;12998:18;52977:27:0;12879:177:1;40395:339:0;;;;;;:::i;:::-;;:::i;56237:106::-;;;;;;:::i;:::-;;:::i;57929:102::-;;;;;;:::i;:::-;;:::i;57631:255::-;;;;;;:::i;:::-;;:::i;40805:185::-;;;;;;:::i;:::-;;:::i;58442:415::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53449:30::-;;;;;-1:-1:-1;;;;;53449:30:0;;;37896:123;;;;;;:::i;:::-;37968:7;37995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37995:16:0;;37896:123;37594:208;;;;;;:::i;:::-;;:::i;17842:103::-;;;:::i;53296:113::-;;;:::i;54187:102::-;;;:::i;57132:215::-;;;;;;:::i;:::-;;:::i;17191:87::-;17264:6;;-1:-1:-1;;;;;17264:6:0;17191:87;;12736:210;;;;;;:::i;:::-;;:::i;38255:104::-;;;:::i;56001:31::-;;;;;;;;;;;;39938:155;;;;;;:::i;:::-;;:::i;53511:140::-;;;;;;:::i;:::-;;:::i;41061:328::-;;;;;;:::i;:::-;;:::i;56351:773::-;;;;;;:::i;:::-;;:::i;58178:258::-;;;;;;:::i;:::-;;:::i;53841:205::-;;;:::i;52932:38::-;;52965:5;52932:38;;40164:164;;;;;;:::i;:::-;-1:-1:-1;;;;;40285:25:0;;;40261:4;40285:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40164:164;18100:201;;;;;;:::i;:::-;;:::i;57405:220::-;;;;;;:::i;:::-;;:::i;37225:305::-;37327:4;-1:-1:-1;;;;;;37364:40:0;;-1:-1:-1;;;37364:40:0;;:105;;-1:-1:-1;;;;;;;37421:48:0;;-1:-1:-1;;;37421:48:0;37364:105;:158;;;-1:-1:-1;;;;;;;;;;29944:40:0;;;37486:36;37344:178;37225:305;-1:-1:-1;;37225:305:0:o;58037:110::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;;;;;;;;;58116:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58037:110:::0;:::o;38086:100::-;38140:13;38173:5;38166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38086:100;:::o;39645:221::-;39721:7;42988:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42988:16:0;39741:73;;;;-1:-1:-1;;;39741:73:0;;19580:2:1;39741:73:0;;;19562:21:1;19619:2;19599:18;;;19592:30;19658:34;19638:18;;;19631:62;-1:-1:-1;;;19709:18:1;;;19702:42;19761:19;;39741:73:0;19378:408:1;39741:73:0;-1:-1:-1;39834:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39834:24:0;;39645:221::o;39168:411::-;39249:13;37995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37995:16:0;;;;39307:11;;;;;39299:57;;;;-1:-1:-1;;;39299:57:0;;21533:2:1;39299:57:0;;;21515:21:1;21572:2;21552:18;;;21545:30;21611:34;21591:18;;;21584:62;-1:-1:-1;;;21662:18:1;;;21655:31;21703:19;;39299:57:0;21331:397:1;39299:57:0;15942:10;-1:-1:-1;;;;;39391:21:0;;;;:62;;-1:-1:-1;39416:37:0;39433:5;15942:10;40164:164;:::i;39416:37::-;39369:168;;;;-1:-1:-1;;;39369:168:0;;17266:2:1;39369:168:0;;;17248:21:1;17305:2;17285:18;;;17278:30;17344:34;17324:18;;;17317:62;17415:26;17395:18;;;17388:54;17459:19;;39369:168:0;17064:420:1;39369:168:0;39550:21;39559:2;39563:7;39550:8;:21::i;:::-;39238:341;39168:411;;:::o;40395:339::-;40590:41;15942:10;40623:7;40590:18;:41::i;:::-;40582:103;;;;-1:-1:-1;;;40582:103:0;;;;;;;:::i;:::-;40698:28;40708:4;40714:2;40718:7;40698:9;:28::i;56237:106::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;56308:19:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56308:27:0;;::::1;::::0;;;::::1;::::0;;56237:106::o;57929:102::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;58004:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;57631:255::-:0;57761:9;57756:123;57780:9;:16;57776:1;:20;57756:123;;;57818:49;57835:5;57842:3;57847:9;57857:1;57847:12;;;;;;;;:::i;:::-;;;;;;;57861:5;57818:16;:49::i;:::-;57798:3;;;;:::i;:::-;;;;57756:123;;;;57631:255;;;;:::o;40805:185::-;40943:39;40960:4;40966:2;40970:7;40943:39;;;;;;;;;;;;:16;:39::i;58442:415::-;58504:13;58530;58546:19;58556:8;58546:9;:19::i;:::-;58530:35;;58602:21;58637:8;58626:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58626:20:0;-1:-1:-1;58602:44:0;-1:-1:-1;58678:11:0;;58700:125;52965:5;58717:1;:13;58700:125;;;37968:7;37995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;58756:22:0;;;37995:16;;58756:22;58752:62;;;58800:1;58782:7;58790:6;58782:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;58803:8;;;;:::i;:::-;;;;58752:62;58732:3;;;;:::i;:::-;;;;58700:125;;;-1:-1:-1;58842:7:0;;58442:415;-1:-1:-1;;;;58442:415:0:o;37594:208::-;37666:7;-1:-1:-1;;;;;37694:19:0;;37686:74;;;;-1:-1:-1;;;37686:74:0;;18102:2:1;37686:74:0;;;18084:21:1;18141:2;18121:18;;;18114:30;18180:34;18160:18;;;18153:62;-1:-1:-1;;;18231:18:1;;;18224:40;18281:19;;37686:74:0;17900:406:1;37686:74:0;-1:-1:-1;;;;;;37778:16:0;;;;;:9;:16;;;;;;;37594:208::o;17842:103::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;17907:30:::1;17934:1;17907:18;:30::i;:::-;17842:103::o:0;53296:113::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;53349:51:::1;::::0;53357:10:::1;::::0;53378:21:::1;53349:51:::0;::::1;;;::::0;::::1;::::0;;;53378:21;53357:10;53349:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53296:113::o:0;54187:102::-;17264:6;;54245:4;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;-1:-1:-1;54269:12:0::1;::::0;54187:102;:::o;57132:215::-;53198:10;53212:9;53198:23;53190:55;;;;-1:-1:-1;;;53190:55:0;;18513:2:1;53190:55:0;;;18495:21:1;18552:2;18532:18;;;18525:30;-1:-1:-1;;;18571:18:1;;;18564:49;18630:18;;53190:55:0;18311:343:1;53190:55:0;56143:19:::1;::::0;;;::::1;;;56135:74;;;;-1:-1:-1::0;;;56135:74:0::1;;;;;;;:::i;:::-;57238:6:::2;57233:107;57254:12;:19;57250:1;:23;57233:107;;;57295:33;57312:12;57325:1;57312:15;;;;;;;;:::i;:::-;;;;;;;57295:16;:33::i;:::-;57275:3:::0;::::2;::::0;::::2;:::i;:::-;;;;57233:107;;12736:210:::0;12829:10;-1:-1:-1;;;;;12843:14:0;12829:28;;12821:72;;;;-1:-1:-1;;;12821:72:0;;21173:2:1;12821:72:0;;;21155:21:1;21212:2;21192:18;;;21185:30;21251:33;21231:18;;;21224:61;21302:18;;12821:72:0;20971:355:1;12821:72:0;54144:12;:25;-1:-1:-1;58037:110:0:o;38255:104::-;38311:13;38344:7;38337:14;;;;;:::i;39938:155::-;40033:52;15942:10;40066:8;40076;40033:18;:52::i;53511:140::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;53578:15:::1;:26:::0;;-1:-1:-1;;;;;53578:26:0;;::::1;-1:-1:-1::0;;;;;;53578:26:0;;::::1;::::0;::::1;::::0;;;53615:8:::1;:28:::0;;;;::::1;;::::0;;53511:140::o;41061:328::-;41236:41;15942:10;41269:7;41236:18;:41::i;:::-;41228:103;;;;-1:-1:-1;;;41228:103:0;;;;;;;:::i;:::-;41342:39;41356:4;41362:2;41366:7;41375:5;41342:13;:39::i;:::-;41061:328;;;;:::o;56351:773::-;53198:10;53212:9;53198:23;53190:55;;;;-1:-1:-1;;;53190:55:0;;18513:2:1;53190:55:0;;;18495:21:1;18552:2;18532:18;;;18525:30;-1:-1:-1;;;18571:18:1;;;18564:49;18630:18;;53190:55:0;18311:343:1;53190:55:0;56143:19:::1;::::0;;;::::1;;;56135:74;;;;-1:-1:-1::0;;;56135:74:0::1;;;;;;;:::i;:::-;56459:8:::2;::::0;:29:::2;::::0;-1:-1:-1;;;56459:29:0;;::::2;::::0;::::2;13025:25:1::0;;;-1:-1:-1;;;;;56459:8:0;;::::2;::::0;:16:::2;::::0;12998:18:1;;56459:29:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56445:43:0::2;:10;-1:-1:-1::0;;;;;56445:43:0::2;;56437:96;;;::::0;-1:-1:-1;;;56437:96:0;;20354:2:1;56437:96:0::2;::::0;::::2;20336:21:1::0;20393:2;20373:18;;;20366:30;20432:34;20412:18;;;20405:62;-1:-1:-1;;;20483:18:1;;;20476:38;20531:19;;56437:96:0::2;20152:404:1::0;56437:96:0::2;56564:11;;52965:5;56552:23;56544:61;;;::::0;-1:-1:-1;;;56544:61:0;;22353:2:1;56544:61:0::2;::::0;::::2;22335:21:1::0;22392:2;22372:18;;;22365:30;22431:27;22411:18;;;22404:55;22476:18;;56544:61:0::2;22151:349:1::0;56544:61:0::2;56811:8;::::0;:61:::2;::::0;-1:-1:-1;;;56811:61:0;;56833:10:::2;56811:61;::::0;::::2;11027:34:1::0;56853:4:0::2;11077:18:1::0;;;11070:43;11129:18;;;11122:34;;;-1:-1:-1;;;;;56811:8:0;;::::2;::::0;:21:::2;::::0;10962:18:1;;56811:61:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;56954:12;56969:30;56987:11;56969:17;:30::i;:::-;57010:11;:13:::0;;56954:45;;-1:-1:-1;57010:11:0::2;:13;::::0;::::2;:::i;:::-;;;;;;57036:26;57042:10;57054:7;57036:5;:26::i;:::-;57078:38;::::0;;13235:25:1;;;13291:2;13276:18;;13269:34;;;57083:10:0::2;::::0;57078:38:::2;::::0;13208:18:1;57078:38:0::2;;;;;;;56426:698;56351:773:::0;:::o;58178:258::-;42964:4;42988:16;;;:7;:16;;;;;;58241:13;;-1:-1:-1;;;;;42988:16:0;58267:59;;;;-1:-1:-1;;;58267:59:0;;19222:2:1;58267:59:0;;;19204:21:1;19261:2;19241:18;;;19234:30;19300:31;19280:18;;;19273:59;19349:18;;58267:59:0;19020:353:1;58267:59:0;58368:12;58382:26;58399:8;58382:16;:26::i;:::-;58410:16;58351:76;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58337:91;;58178:258;;;:::o;53841:205::-;17264:6;;53894:17;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;53965:3:::1;::::0;53932:29:::1;::::0;-1:-1:-1;;;53932:29:0;;53955:4:::1;53932:29;::::0;::::1;10725:51:1::0;53932:4:0::1;-1:-1:-1::0;;;;;53932:14:0::1;::::0;::::1;::::0;10698:18:1;;53932:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;53924:65;;;::::0;-1:-1:-1;;;53924:65:0;;14162:2:1;53924:65:0::1;::::0;::::1;14144:21:1::0;14201:2;14181:18;;;14174:30;-1:-1:-1;;;14220:18:1;;;14213:46;14276:18;;53924:65:0::1;13960:340:1::0;53924:65:0::1;54007:31;54025:7;;54034:3;;54007:17;:31::i;:::-;54000:38;;53841:205:::0;:::o;18100:201::-;17264:6;;-1:-1:-1;;;;;17264:6:0;15942:10;17411:23;17403:68;;;;-1:-1:-1;;;17403:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18189:22:0;::::1;18181:73;;;::::0;-1:-1:-1;;;18181:73:0;;15330:2:1;18181:73:0::1;::::0;::::1;15312:21:1::0;15369:2;15349:18;;;15342:30;15408:34;15388:18;;;15381:62;-1:-1:-1;;;15459:18:1;;;15452:36;15505:19;;18181:73:0::1;15128:402:1::0;18181:73:0::1;18265:28;18284:8;18265:18;:28::i;57405:220::-:0;57511:9;57506:112;57530:9;:16;57526:1;:20;57506:112;;;57568:38;57581:5;57588:3;57593:9;57603:1;57593:12;;;;;;;;:::i;:::-;;;;;;;57568;:38::i;:::-;57548:3;;;;:::i;:::-;;;;57506:112;;46881:174;46956:24;;;;:15;:24;;;;;;;;:29;;-1:-1:-1;;;;;;46956:29:0;-1:-1:-1;;;;;46956:29:0;;;;;;;;;37995:7;:16;;;;;;;47001:46;;46956:24;;37995:16;;;;;47001:46;;;46881:174;;:::o;43193:348::-;43286:4;42988:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42988:16:0;43303:73;;;;-1:-1:-1;;;43303:73:0;;16853:2:1;43303:73:0;;;16835:21:1;16892:2;16872:18;;;16865:30;16931:34;16911:18;;;16904:62;-1:-1:-1;;;16982:18:1;;;16975:42;17034:19;;43303:73:0;16651:408:1;43303:73:0;43387:13;37995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37995:16:0;;;;43445;;;;;:51;;;43489:7;-1:-1:-1;;;;;43465:31:0;:20;43477:7;43465:11;:20::i;:::-;-1:-1:-1;;;;;43465:31:0;;43445:51;:87;;;-1:-1:-1;;;;;;40285:25:0;;;40261:4;40285:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43500:32;43437:96;43193:348;-1:-1:-1;;;;43193:348:0:o;46185:578::-;37968:7;37995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46317:31:0;;;37995:16;;46317:31;46309:85;;;;-1:-1:-1;;;46309:85:0;;20763:2:1;46309:85:0;;;20745:21:1;20802:2;20782:18;;;20775:30;20841:34;20821:18;;;20814:62;-1:-1:-1;;;20892:18:1;;;20885:39;20941:19;;46309:85:0;20561:405:1;46309:85:0;-1:-1:-1;;;;;46413:16:0;;46405:65;;;;-1:-1:-1;;;46405:65:0;;16094:2:1;46405:65:0;;;16076:21:1;16133:2;16113:18;;;16106:30;16172:34;16152:18;;;16145:62;-1:-1:-1;;;16223:18:1;;;16216:34;16267:19;;46405:65:0;15892:400:1;46405:65:0;46587:29;46604:1;46608:7;46587:8;:29::i;:::-;-1:-1:-1;;;;;46629:15:0;;;;;;:9;:15;;;;;:20;;46648:1;;46629:15;:20;;46648:1;;46629:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46660:13:0;;;;;;:9;:13;;;;;:18;;46677:1;;46660:13;:18;;46677:1;;46660:18;:::i;:::-;;;;-1:-1:-1;;46689:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46689:21:0;-1:-1:-1;;;;;46689:21:0;;;;;;;;;46728:27;;46689:16;;46728:27;;;;;;;46185:578;;;:::o;18461:191::-;18554:6;;;-1:-1:-1;;;;;18571:17:0;;;-1:-1:-1;;;;;;18571:17:0;;;;;;;18604:40;;18554:6;;;18571:17;18554:6;;18604:40;;18535:16;;18604:40;18524:128;18461:191;:::o;47197:315::-;47352:8;-1:-1:-1;;;;;47343:17:0;:5;-1:-1:-1;;;;;47343:17:0;;;47335:55;;;;-1:-1:-1;;;47335:55:0;;16499:2:1;47335:55:0;;;16481:21:1;16538:2;16518:18;;;16511:30;16577:27;16557:18;;;16550:55;16622:18;;47335:55:0;16297:349:1;47335:55:0;-1:-1:-1;;;;;47401:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47401:46:0;;;;;;;;;;47463:41;;12827::1;;;47463::0;;12800:18:1;47463:41:0;;;;;;;47197:315;;;:::o;42271:::-;42428:28;42438:4;42444:2;42448:7;42428:9;:28::i;:::-;42475:48;42498:4;42504:2;42508:7;42517:5;42475:22;:48::i;:::-;42467:111;;;;-1:-1:-1;;;42467:111:0;;;;;;;:::i;54868:984::-;54928:4;54953:12;;54969:1;54953:17;;54945:65;;;;-1:-1:-1;;;54945:65:0;;14507:2:1;54945:65:0;;;14489:21:1;14546:2;14526:18;;;14519:30;14585:34;14565:18;;;14558:62;-1:-1:-1;;;14636:18:1;;;14629:33;14679:19;;54945:65:0;14305:399:1;54945:65:0;55021:21;55057:11;;52965:5;55045:23;;;;:::i;:::-;55021:47;-1:-1:-1;55150:14:0;55167:21;;:48;;55195:20;55214:1;55195:16;:20;:::i;:::-;55167:48;;;55191:1;55167:48;55299:12;;55313:5;;55282:94;;55150:65;;-1:-1:-1;55254:10:0;;55381:16;;55282:94;;55299:12;;55313:5;;;;;55320:8;;55330:10;;55342:16;;55360:15;;55282:94;;;:::i;:::-;;;;;;;;;;;;;55272:105;;;;;;55267:111;;:130;;;;:::i;:::-;55254:143;;55430:12;55469:7;55477:5;55469:14;;;;;;;:::i;:::-;;;:43;;55507:5;55469:43;;;55491:7;55499:5;55491:14;;;;;;;:::i;:::-;;;55469:43;55459:53;;55540:7;55548:9;55540:18;;;;;;;:::i;:::-;;;:23;:56;;55578:7;55586:9;55578:18;;;;;;;:::i;:::-;;;55540:56;;;55566:9;55540:56;55523:7;55531:5;55523:14;;;;;;;:::i;:::-;;:73;55670:12;;55684:5;;55653:94;;55609:16;;55753:2;;55653:94;;55684:5;;;;;55691:8;;55701:10;;55713:16;;55731:15;;55653:94;;;:::i;:::-;;;;;;;;;;;;;55643:105;;;;;;55635:114;;55628:127;;;;:::i;:::-;55781:5;:18;;55609:146;;-1:-1:-1;55609:146:0;;55781:5;;:18;;55609:146;;55781:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55837:7;55830:14;;;;;;;54868:984;;;:::o;44877:382::-;-1:-1:-1;;;;;44957:16:0;;44949:61;;;;-1:-1:-1;;;44949:61:0;;18861:2:1;44949:61:0;;;18843:21:1;;;18880:18;;;18873:30;18939:34;18919:18;;;18912:62;18991:18;;44949:61:0;18659:356:1;44949:61:0;42964:4;42988:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42988:16:0;:30;45021:58;;;;-1:-1:-1;;;45021:58:0;;15737:2:1;45021:58:0;;;15719:21:1;15776:2;15756:18;;;15749:30;15815;15795:18;;;15788:58;15863:18;;45021:58:0;15535:352:1;45021:58:0;-1:-1:-1;;;;;45150:13:0;;;;;;:9;:13;;;;;:18;;45167:1;;45150:13;:18;;45167:1;;45150:18;:::i;:::-;;;;-1:-1:-1;;45179:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45179:21:0;-1:-1:-1;;;;;45179:21:0;;;;;;;;45218:33;;45179:16;;;45218:33;;45179:16;;45218:33;44877:382;;:::o;13371:723::-;13427:13;13648:10;13644:53;;-1:-1:-1;;13675:10:0;;;;;;;;;;;;-1:-1:-1;;;13675:10:0;;;;;13371:723::o;13644:53::-;13722:5;13707:12;13763:78;13770:9;;13763:78;;13796:8;;;;:::i;:::-;;-1:-1:-1;13819:10:0;;-1:-1:-1;13827:2:0;13819:10;;:::i;:::-;;;13763:78;;;13851:19;13883:6;13873:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13873:17:0;;13851:39;;13901:154;13908:10;;13901:154;;13935:11;13945:1;13935:11;;:::i;:::-;;-1:-1:-1;14004:10:0;14012:2;14004:5;:10;:::i;:::-;13991:24;;:2;:24;:::i;:::-;13978:39;;13961:6;13968;13961:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13961:56:0;;;;;;;;-1:-1:-1;14032:11:0;14041:2;14032:11;;:::i;:::-;;;13901:154;;10853:1034;10930:17;10956:4;-1:-1:-1;;;;;10956:20:0;;10977:14;10993:4;11010:8;9683:1;10999:43;;;;;;;;13235:25:1;;;13291:2;13276:18;;13269:34;13223:2;13208:18;;13061:248;10999:43:0;;;;;;;;;;;;;10956:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11278:15:0;11361:16;;;:6;:16;;;;;;;;;1082:51;;;;;13545:25:1;;;13586:18;;;13579:34;;;11354:4:0;13629:18:1;;;13622:60;13698:18;;;;13691:34;;;1082:51:0;;;;;;;;;;13517:19:1;;;;1082:51:0;;;1072:62;;;;;;;;;11815:16;;;;;;;:20;;11834:1;11815:20;:::i;:::-;11796:16;;;;:6;:16;;;;;:39;11849:32;11803:8;11873:7;1652:41;;;;;;;9427:19:1;;;;9462:12;;;9455:28;;;;1652:41:0;;;;;;;;;9499:12:1;;;;1652:41:0;;1642:52;;;;;;1532:168;48077:799;48232:4;-1:-1:-1;;;;;48253:13:0;;19855:20;19903:8;48249:620;;48289:72;;-1:-1:-1;;;48289:72:0;;-1:-1:-1;;;;;48289:36:0;;;;;:72;;15942:10;;48340:4;;48346:7;;48355:5;;48289:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48289:72:0;;;;;;;;-1:-1:-1;;48289:72:0;;;;;;;;;;;;:::i;:::-;;;48285:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48531:13:0;;48527:272;;48574:60;;-1:-1:-1;;;48574:60:0;;;;;;;:::i;48527:272::-;48749:6;48743:13;48734:6;48730:2;48726:15;48719:38;48285:529;-1:-1:-1;;;;;;48412:51:0;-1:-1:-1;;;48412:51:0;;-1:-1:-1;48405:58:0;;48249:620;-1:-1:-1;48853:4:0;48077:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;635:18;631:2;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:1;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:1;425:723;-1:-1:-1;;;;;;;425:723:1:o;1153:220::-;1195:5;1248:3;1241:4;1233:6;1229:17;1225:27;1215:55;;1266:1;1263;1256:12;1215:55;1288:79;1363:3;1354:6;1341:20;1334:4;1326:6;1322:17;1288:79;:::i;:::-;1279:88;1153:220;-1:-1:-1;;;1153:220:1:o;1378:247::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1545:9;1532:23;1564:31;1589:5;1564:31;:::i;1630:251::-;1700:6;1753:2;1741:9;1732:7;1728:23;1724:32;1721:52;;;1769:1;1766;1759:12;1721:52;1801:9;1795:16;1820:31;1845:5;1820:31;:::i;1886:388::-;1954:6;1962;2015:2;2003:9;1994:7;1990:23;1986:32;1983:52;;;2031:1;2028;2021:12;1983:52;2070:9;2057:23;2089:31;2114:5;2089:31;:::i;:::-;2139:5;-1:-1:-1;2196:2:1;2181:18;;2168:32;2209:33;2168:32;2209:33;:::i;:::-;2261:7;2251:17;;;1886:388;;;;;:::o;2279:624::-;2381:6;2389;2397;2450:2;2438:9;2429:7;2425:23;2421:32;2418:52;;;2466:1;2463;2456:12;2418:52;2505:9;2492:23;2524:31;2549:5;2524:31;:::i;:::-;2574:5;-1:-1:-1;2631:2:1;2616:18;;2603:32;2644:33;2603:32;2644:33;:::i;:::-;2696:7;-1:-1:-1;2754:2:1;2739:18;;2726:32;2781:18;2770:30;;2767:50;;;2813:1;2810;2803:12;2767:50;2836:61;2889:7;2880:6;2869:9;2865:22;2836:61;:::i;:::-;2826:71;;;2279:624;;;;;:::o;2908:844::-;3028:6;3036;3044;3052;3105:3;3093:9;3084:7;3080:23;3076:33;3073:53;;;3122:1;3119;3112:12;3073:53;3161:9;3148:23;3180:31;3205:5;3180:31;:::i;:::-;3230:5;-1:-1:-1;3287:2:1;3272:18;;3259:32;3300:33;3259:32;3300:33;:::i;:::-;3352:7;-1:-1:-1;3410:2:1;3395:18;;3382:32;3433:18;3463:14;;;3460:34;;;3490:1;3487;3480:12;3460:34;3513:61;3566:7;3557:6;3546:9;3542:22;3513:61;:::i;:::-;3503:71;;3627:2;3616:9;3612:18;3599:32;3583:48;;3656:2;3646:8;3643:16;3640:36;;;3672:1;3669;3662:12;3640:36;;3695:51;3738:7;3727:8;3716:9;3712:24;3695:51;:::i;:::-;3685:61;;;2908:844;;;;;;;:::o;3757:456::-;3834:6;3842;3850;3903:2;3891:9;3882:7;3878:23;3874:32;3871:52;;;3919:1;3916;3909:12;3871:52;3958:9;3945:23;3977:31;4002:5;3977:31;:::i;:::-;4027:5;-1:-1:-1;4084:2:1;4069:18;;4056:32;4097:33;4056:32;4097:33;:::i;:::-;3757:456;;4149:7;;-1:-1:-1;;;4203:2:1;4188:18;;;;4175:32;;3757:456::o;4218:665::-;4313:6;4321;4329;4337;4390:3;4378:9;4369:7;4365:23;4361:33;4358:53;;;4407:1;4404;4397:12;4358:53;4446:9;4433:23;4465:31;4490:5;4465:31;:::i;:::-;4515:5;-1:-1:-1;4572:2:1;4557:18;;4544:32;4585:33;4544:32;4585:33;:::i;:::-;4637:7;-1:-1:-1;4691:2:1;4676:18;;4663:32;;-1:-1:-1;4746:2:1;4731:18;;4718:32;4773:18;4762:30;;4759:50;;;4805:1;4802;4795:12;4759:50;4828:49;4869:7;4860:6;4849:9;4845:22;4828:49;:::i;4888:382::-;4953:6;4961;5014:2;5002:9;4993:7;4989:23;4985:32;4982:52;;;5030:1;5027;5020:12;4982:52;5069:9;5056:23;5088:31;5113:5;5088:31;:::i;:::-;5138:5;-1:-1:-1;5195:2:1;5180:18;;5167:32;5208:30;5167:32;5208:30;:::i;5275:315::-;5343:6;5351;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5459:9;5446:23;5478:31;5503:5;5478:31;:::i;:::-;5528:5;5580:2;5565:18;;;;5552:32;;-1:-1:-1;;;5275:315:1:o;5595:348::-;5679:6;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5788:9;5775:23;5821:18;5813:6;5810:30;5807:50;;;5853:1;5850;5843:12;5807:50;5876:61;5929:7;5920:6;5909:9;5905:22;5876:61;:::i;5948:241::-;6004:6;6057:2;6045:9;6036:7;6032:23;6028:32;6025:52;;;6073:1;6070;6063:12;6025:52;6112:9;6099:23;6131:28;6153:5;6131:28;:::i;6194:245::-;6261:6;6314:2;6302:9;6293:7;6289:23;6285:32;6282:52;;;6330:1;6327;6320:12;6282:52;6362:9;6356:16;6381:28;6403:5;6381:28;:::i;6444:248::-;6512:6;6520;6573:2;6561:9;6552:7;6548:23;6544:32;6541:52;;;6589:1;6586;6579:12;6541:52;-1:-1:-1;;6612:23:1;;;6682:2;6667:18;;;6654:32;;-1:-1:-1;6444:248:1:o;6697:245::-;6755:6;6808:2;6796:9;6787:7;6783:23;6779:32;6776:52;;;6824:1;6821;6814:12;6776:52;6863:9;6850:23;6882:30;6906:5;6882:30;:::i;6947:249::-;7016:6;7069:2;7057:9;7048:7;7044:23;7040:32;7037:52;;;7085:1;7082;7075:12;7037:52;7117:9;7111:16;7136:30;7160:5;7136:30;:::i;7201:450::-;7270:6;7323:2;7311:9;7302:7;7298:23;7294:32;7291:52;;;7339:1;7336;7329:12;7291:52;7379:9;7366:23;7412:18;7404:6;7401:30;7398:50;;;7444:1;7441;7434:12;7398:50;7467:22;;7520:4;7512:13;;7508:27;-1:-1:-1;7498:55:1;;7549:1;7546;7539:12;7498:55;7572:73;7637:7;7632:2;7619:16;7614:2;7610;7606:11;7572:73;:::i;7656:180::-;7715:6;7768:2;7756:9;7747:7;7743:23;7739:32;7736:52;;;7784:1;7781;7774:12;7736:52;-1:-1:-1;7807:23:1;;7656:180;-1:-1:-1;7656:180:1:o;7841:184::-;7911:6;7964:2;7952:9;7943:7;7939:23;7935:32;7932:52;;;7980:1;7977;7970:12;7932:52;-1:-1:-1;8003:16:1;;7841:184;-1:-1:-1;7841:184:1:o;8030:257::-;8071:3;8109:5;8103:12;8136:6;8131:3;8124:19;8152:63;8208:6;8201:4;8196:3;8192:14;8185:4;8178:5;8174:16;8152:63;:::i;:::-;8269:2;8248:15;-1:-1:-1;;8244:29:1;8235:39;;;;8276:4;8231:50;;8030:257;-1:-1:-1;;8030:257:1:o;8292:973::-;8377:12;;8342:3;;8432:1;8452:18;;;;8505;;;;8532:61;;8586:4;8578:6;8574:17;8564:27;;8532:61;8612:2;8660;8652:6;8649:14;8629:18;8626:38;8623:161;;;8706:10;8701:3;8697:20;8694:1;8687:31;8741:4;8738:1;8731:15;8769:4;8766:1;8759:15;8623:161;8800:18;8827:104;;;;8945:1;8940:319;;;;8793:466;;8827:104;-1:-1:-1;;8860:24:1;;8848:37;;8905:16;;;;-1:-1:-1;8827:104:1;;8940:319;23293:1;23286:14;;;23330:4;23317:18;;9034:1;9048:165;9062:6;9059:1;9056:13;9048:165;;;9140:14;;9127:11;;;9120:35;9183:16;;;;9077:10;;9048:165;;;9052:3;;9242:6;9237:3;9233:16;9226:23;;8793:466;;;;;;;8292:973;;;;:::o;9522:456::-;9743:3;9771:38;9805:3;9797:6;9771:38;:::i;:::-;9838:6;9832:13;9854:52;9899:6;9895:2;9888:4;9880:6;9876:17;9854:52;:::i;:::-;9922:50;9964:6;9960:2;9956:15;9948:6;9922:50;:::i;:::-;9915:57;9522:456;-1:-1:-1;;;;;;;9522:456:1:o;9983:591::-;10250:19;;;10325:3;10303:16;;;;-1:-1:-1;;;;;;10299:43:1;10294:2;10285:12;;10278:65;10368:2;10359:12;;10352:28;;;;10418:2;10414:15;-1:-1:-1;;10410:53:1;10405:2;10396:12;;10389:75;10489:2;10480:12;;10473:28;10526:3;10517:13;;10510:29;10564:3;10555:13;;9983:591::o;11167:488::-;-1:-1:-1;;;;;11436:15:1;;;11418:34;;11488:15;;11483:2;11468:18;;11461:43;11535:2;11520:18;;11513:34;;;11583:3;11578:2;11563:18;;11556:31;;;11361:4;;11604:45;;11629:19;;11621:6;11604:45;:::i;:::-;11596:53;11167:488;-1:-1:-1;;;;;;11167:488:1:o;11660:385::-;11892:1;11888;11883:3;11879:11;11875:19;11867:6;11863:32;11852:9;11845:51;11932:6;11927:2;11916:9;11912:18;11905:34;11975:2;11970;11959:9;11955:18;11948:30;11826:4;11995:44;12035:2;12024:9;12020:18;12012:6;11995:44;:::i;:::-;11987:52;11660:385;-1:-1:-1;;;;;11660:385:1:o;12050:632::-;12221:2;12273:21;;;12343:13;;12246:18;;;12365:22;;;12192:4;;12221:2;12444:15;;;;12418:2;12403:18;;;12192:4;12487:169;12501:6;12498:1;12495:13;12487:169;;;12562:13;;12550:26;;12631:15;;;;12596:12;;;;12523:1;12516:9;12487:169;;;-1:-1:-1;12673:3:1;;12050:632;-1:-1:-1;;;;;;12050:632:1:o;13736:219::-;13885:2;13874:9;13867:21;13848:4;13905:44;13945:2;13934:9;13930:18;13922:6;13905:44;:::i;14709:414::-;14911:2;14893:21;;;14950:2;14930:18;;;14923:30;14989:34;14984:2;14969:18;;14962:62;-1:-1:-1;;;15055:2:1;15040:18;;15033:48;15113:3;15098:19;;14709:414::o;17489:406::-;17691:2;17673:21;;;17730:2;17710:18;;;17703:30;17769:34;17764:2;17749:18;;17742:62;-1:-1:-1;;;17835:2:1;17820:18;;17813:40;17885:3;17870:19;;17489:406::o;19791:356::-;19993:2;19975:21;;;20012:18;;;20005:30;20071:34;20066:2;20051:18;;20044:62;20138:2;20123:18;;19791:356::o;21733:413::-;21935:2;21917:21;;;21974:2;21954:18;;;21947:30;22013:34;22008:2;21993:18;;21986:62;-1:-1:-1;;;22079:2:1;22064:18;;22057:47;22136:3;22121:19;;21733:413::o;22940:275::-;23011:2;23005:9;23076:2;23057:13;;-1:-1:-1;;23053:27:1;23041:40;;23111:18;23096:34;;23132:22;;;23093:62;23090:88;;;23158:18;;:::i;:::-;23194:2;23187:22;22940:275;;-1:-1:-1;22940:275:1:o;23346:128::-;23386:3;23417:1;23413:6;23410:1;23407:13;23404:39;;;23423:18;;:::i;:::-;-1:-1:-1;23459:9:1;;23346:128::o;23479:228::-;23518:3;23546:10;23583:2;23580:1;23576:10;23613:2;23610:1;23606:10;23644:3;23640:2;23636:12;23631:3;23628:21;23625:47;;;23652:18;;:::i;:::-;23688:13;;23479:228;-1:-1:-1;;;;23479:228:1:o;23712:120::-;23752:1;23778;23768:35;;23783:18;;:::i;:::-;-1:-1:-1;23817:9:1;;23712:120::o;23837:125::-;23877:4;23905:1;23902;23899:8;23896:34;;;23910:18;;:::i;:::-;-1:-1:-1;23947:9:1;;23837:125::o;23967:258::-;24039:1;24049:113;24063:6;24060:1;24057:13;24049:113;;;24139:11;;;24133:18;24120:11;;;24113:39;24085:2;24078:10;24049:113;;;24180:6;24177:1;24174:13;24171:48;;;-1:-1:-1;;24215:1:1;24197:16;;24190:27;23967:258::o;24230:380::-;24309:1;24305:12;;;;24352;;;24373:61;;24427:4;24419:6;24415:17;24405:27;;24373:61;24480:2;24472:6;24469:14;24449:18;24446:38;24443:161;;;24526:10;24521:3;24517:20;24514:1;24507:31;24561:4;24558:1;24551:15;24589:4;24586:1;24579:15;24443:161;;24230:380;;;:::o;24615:135::-;24654:3;-1:-1:-1;;24675:17:1;;24672:43;;;24695:18;;:::i;:::-;-1:-1:-1;24742:1:1;24731:13;;24615:135::o;24755:112::-;24787:1;24813;24803:35;;24818:18;;:::i;:::-;-1:-1:-1;24852:9:1;;24755:112::o;24872:183::-;24903:1;24929:10;24966:2;24963:1;24959:10;24988:3;24978:37;;24995:18;;:::i;:::-;25033:10;;25029:20;;;;;24872:183;-1:-1:-1;;24872:183:1:o;25060:127::-;25121:10;25116:3;25112:20;25109:1;25102:31;25152:4;25149:1;25142:15;25176:4;25173:1;25166:15;25192:127;25253:10;25248:3;25244:20;25241:1;25234:31;25284:4;25281:1;25274:15;25308:4;25305:1;25298:15;25324:127;25385:10;25380:3;25376:20;25373:1;25366:31;25416:4;25413:1;25406:15;25440:4;25437:1;25430:15;25456:127;25517:10;25512:3;25508:20;25505:1;25498:31;25548:4;25545:1;25538:15;25572:4;25569:1;25562:15;25588:131;-1:-1:-1;;;;;25663:31:1;;25653:42;;25643:70;;25709:1;25706;25699:12;25724:118;25810:5;25803:13;25796:21;25789:5;25786:32;25776:60;;25832:1;25829;25822:12;25847:131;-1:-1:-1;;;;;;25921:32:1;;25911:43;;25901:71;;25968:1;25965;25958:12

Swarm Source

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