ETH Price: $2,857.10 (-10.15%)
Gas: 15 Gwei

Token

The Forgotten Cult (TFC)
 

Overview

Max Total Supply

3,333 TFC

Holders

1,153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TFC
0x5ab1807e587575c2dc3fda473b417e417660ae72
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TFC

Compiler Version
v0.8.9+commit.e5eed63a

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-19
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract Delegated is Ownable{
  mapping(address => bool) internal _delegates;

  constructor(){
    _delegates[owner()] = true;
  }

  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }

  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }

  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }
}

pragma solidity ^0.8.0;

abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

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

        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }

        delete length;
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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


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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _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 = ERC721B.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);
        _owners.push(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 = ERC721B.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        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(ERC721B.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);
        _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(ERC721B.ownerOf(tokenId), to, tokenId);
    }


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

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

pragma solidity ^0.8.0;
/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721EnumerableB is ERC721B, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

        uint count;
        uint length = _owners.length;
        for( uint i; i < length; ++i ){
            if( owner == _owners[i] ){
                if( count == index ){
                    delete count;
                    delete length;
                    return i;
                }
                else
                    ++count;
            }
        }

        delete count;
        delete length;
        require(false, "ERC721Enumerable: owner index out of bounds");
    }

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

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

pragma solidity ^0.8.0;
//▄▄▄▄▄ ▄ .▄▄▄▄ .    ·▄▄▄      ▄▄▄   ▄▄ •       ▄▄▄▄▄▄▄▄▄▄▄▄▄ . ▐ ▄      ▄▄· ▄• ▄▌▄▄▌  ▄▄▄▄▄
//•██  ██▪▐█▀▄.▀·    ▐▄▄·▪     ▀▄ █·▐█ ▀ ▪▪     •██  •██  ▀▄.▀·•█▌▐█    ▐█ ▌▪█▪██▌██•  •██  
// ▐█.▪██▀▐█▐▀▀▪▄    ██▪  ▄█▀▄ ▐▀▀▄ ▄█ ▀█▄ ▄█▀▄  ▐█.▪ ▐█.▪▐▀▀▪▄▐█▐▐▌    ██ ▄▄█▌▐█▌██▪   ▐█.▪
// ▐█▌·██▌▐▀▐█▄▄▌    ██▌.▐█▌.▐▌▐█•█▌▐█▄▪▐█▐█▌.▐▌ ▐█▌· ▐█▌·▐█▄▄▌██▐█▌    ▐███▌▐█▄█▌▐█▌▐▌ ▐█▌·
// ▀▀▀ ▀▀▀ · ▀▀▀     ▀▀▀  ▀█▄▀▪.▀  ▀·▀▀▀▀  ▀█▄▀▪ ▀▀▀  ▀▀▀  ▀▀▀ ▀▀ █▪    ·▀▀▀  ▀▀▀ .▀▀▀  ▀▀▀ 
//Ánthrōpos métron...Man is the measure of all things

contract TFC is Delegated, ERC721EnumerableB, PaymentSplitter {
  using Strings for uint;

  uint public MAX_SUPPLY = 3333;

  bool public isActive   = true;
  uint public maxSummon   = 3;
  uint public price      = 0 ether;

  string private _baseTokenURI = '';
  string private _tokenURISuffix = '';

  mapping(address => uint[]) private _balances;

  address[] private addressList = [0x5058B704C352980ece01720cE7A5a1b49469A460];
  uint[] private shareList = [100];

  constructor()
    Delegated()
    ERC721B("The Forgotten Cult", "TFC")
    PaymentSplitter(addressList, shareList)  {
  }

  //external
  fallback() external payable {}

  function mint( uint quantity ) external payable {
    require( isActive,                      "Sale is not active"        );
    require( quantity <= maxSummon,          "Summon too big"             );
    require( msg.value >= price * quantity, "Ether sent is not correct" );

    uint256 supply = totalSupply();
    require( supply + quantity <= MAX_SUPPLY, "Summon/order exceeds supply" );
    for(uint i = 0; i < quantity; ++i){
      _safeMint( msg.sender, supply++, "" );
    }
  }

  //external delegated
  function gift(uint[] calldata quantity, address[] calldata recipient) external onlyDelegates{
    require(quantity.length == recipient.length, "Must provide equal quantities and recipients" );

    uint totalQuantity = 0;
    uint256 supply = totalSupply();
    for(uint i = 0; i < quantity.length; ++i){
      totalQuantity += quantity[i];
    }
    require( supply + totalQuantity <= MAX_SUPPLY, "Mint/order exceeds supply" );
    delete totalQuantity;

    for(uint i = 0; i < recipient.length; ++i){
      for(uint j = 0; j < quantity[i]; ++j){
        _safeMint( recipient[i], supply++, "Sent with love" );
      }
    }
  }

  function setActive(bool isActive_) external onlyDelegates{
    if( isActive != isActive_ )
      isActive = isActive_;
  }

  function setSummon (uint maxOrder_) external onlyDelegates{
    if( maxSummon != maxOrder_ )
      maxSummon = maxOrder_;
  }

  function setPrice(uint price_ ) external onlyDelegates{
    if( price != price_ )
      price = price_;
  }

  function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix) external onlyDelegates{
    _baseTokenURI = _newBaseURI;
    _tokenURISuffix = _newSuffix;
  }


  //external owner
  function setMaxSupply(uint maxSupply) external onlyOwner{
    if( MAX_SUPPLY != maxSupply ){
      require(maxSupply >= totalSupply(), "Specified supply is lower than current balance" );
      MAX_SUPPLY = maxSupply;
    }
  }


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

  function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
    require(index < ERC721B.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
    return _balances[owner][index];
  }

  function tokenURI(uint tokenId) external view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), _tokenURISuffix));
  }


  //internal
  function _beforeTokenTransfer(
      address from,
      address to,
      uint256 tokenId
  ) internal override virtual {
    address zero = address(0);
    if( from != zero || to == zero ){
      //find this token and remove it
      uint length = _balances[from].length;
      for( uint i; i < length; ++i ){
        if( _balances[from][i] == tokenId ){
          _balances[from][i] = _balances[from][length - 1];
          _balances[from].pop();
          break;
        }
      }
      delete length;
    }

    if( from == zero || to != zero ){
      _balances[to].push( tokenId );
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSummon","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive_","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOrder_","type":"uint256"}],"name":"setSummon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610d05600c55600d805460ff191660011790556003600e556000600f81905560a060408190526080829052620000399160109190620005b8565b506040805160208101918290526000908190526200005a91601191620005b8565b506040805160208101909152735058b704c352980ece01720ce7a5a1b49469a46081526200008d90601390600162000647565b50604080516020810190915260648152620000ad9060149060016200069f565b50348015620000bb57600080fd5b5060138054806020026020016040519081016040528092919081815260200182805480156200011457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000f5575b505050505060148054806020026020016040519081016040528092919081815260200182805480156200016757602002820191906000526020600020905b81548152602001906001019080831162000152575b505050505060405180604001604052806012815260200171151a1948119bdc99dbdd1d195b8810dd5b1d60721b8152506040518060400160405280600381526020016254464360e81b815250620001cd620001c76200037660201b60201c565b6200037a565b6001806000620001e56000546001600160a01b031690565b6001600160a01b03168152602080820192909252604001600020805460ff1916921515929092179091558251620002239160029190850190620005b8565b50805162000239906003906020840190620005b8565b5050508051825114620002ae5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003015760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002a5565b60005b82518110156200036d5762000358838281518110620003275762000327620006f9565b6020026020010151838381518110620003445762000344620006f9565b6020026020010151620003ca60201b60201c565b80620003648162000725565b91505062000304565b5050506200079b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620004375760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002a5565b60008111620004895760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002a5565b6001600160a01b03821660009081526009602052604090205415620005055760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002a5565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560009081526009602052604090208190556007546200056f90829062000743565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005c6906200075e565b90600052602060002090601f016020900481019282620005ea576000855562000635565b82601f106200060557805160ff191683800117855562000635565b8280016001018555821562000635579182015b828111156200063557825182559160200191906001019062000618565b5062000643929150620006e2565b5090565b82805482825590600052602060002090810192821562000635579160200282015b828111156200063557825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000668565b82805482825590600052602060002090810192821562000635579160200282015b8281111562000635578251829060ff16905591602001919060010190620006c0565b5b80821115620006435760008155600101620006e3565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200073c576200073c6200070f565b5060010190565b600082198211156200075957620007596200070f565b500190565b600181811c908216806200077357607f821691505b602082108114156200079557634e487b7160e01b600052602260045260246000fd5b50919050565b6129aa80620007ab6000396000f3fe6080604052600436106102115760003560e01c806370a0823111610117578063a0712d68116100a5578063c87b56dd1161006c578063c87b56dd1461066c578063ce7c2ac21461068c578063e33b7de3146106c2578063e985e9c5146106d7578063f2fde38b1461072057005b8063a0712d68146105e3578063a22cb465146105f6578063acec338a14610616578063b88d4fde14610636578063b91774aa1461065657005b806391b7f5ed116100e957806391b7f5ed1461054257806395d89b411461056257806396ea3a47146105775780639852595c14610597578063a035b1fe146105cd57005b806370a08231146104cf578063715018a6146104ef5780638b83209b146105045780638da5cb5b1461052457005b80632f745c591161019f5780634f6ccce7116101665780634f6ccce71461042f5780636352211e1461044f5780636790a9de1461046f57806368714d441461048f5780636f8b44b0146104af57005b80632f745c59146103a457806332cb6b0c146103c45780633a98ef39146103da57806342842e0e146103ef5780634a994eef1461040f57005b8063095ea7b3116101e3578063095ea7b31461030b57806318160ddd1461032b578063191655871461034a57806322f3e2d41461036a57806323b872dd1461038457005b806301ffc9a71461025c57806306fdde031461029157806307779627146102b3578063081812fc146102d357005b3661025a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561026857600080fd5b5061027c6102773660046121ad565b610740565b60405190151581526020015b60405180910390f35b34801561029d57600080fd5b506102a661076b565b6040516102889190612229565b3480156102bf57600080fd5b5061027c6102ce366004612251565b6107fd565b3480156102df57600080fd5b506102f36102ee36600461226e565b610854565b6040516001600160a01b039091168152602001610288565b34801561031757600080fd5b5061025a610326366004612287565b6108dc565b34801561033757600080fd5b506004545b604051908152602001610288565b34801561035657600080fd5b5061025a610365366004612251565b6109f2565b34801561037657600080fd5b50600d5461027c9060ff1681565b34801561039057600080fd5b5061025a61039f3660046122b3565b610bc3565b3480156103b057600080fd5b5061033c6103bf366004612287565b610bf4565b3480156103d057600080fd5b5061033c600c5481565b3480156103e657600080fd5b5060075461033c565b3480156103fb57600080fd5b5061025a61040a3660046122b3565b610c9e565b34801561041b57600080fd5b5061025a61042a366004612304565b610cb9565b34801561043b57600080fd5b5061033c61044a36600461226e565b610d0e565b34801561045b57600080fd5b506102f361046a36600461226e565b610d80565b34801561047b57600080fd5b5061025a61048a366004612382565b610e0c565b34801561049b57600080fd5b5061025a6104aa36600461226e565b610e5b565b3480156104bb57600080fd5b5061025a6104ca36600461226e565b610e9c565b3480156104db57600080fd5b5061033c6104ea366004612251565b610f3d565b3480156104fb57600080fd5b5061025a610f81565b34801561051057600080fd5b506102f361051f36600461226e565b610fb7565b34801561053057600080fd5b506000546001600160a01b03166102f3565b34801561054e57600080fd5b5061025a61055d36600461226e565b610fe7565b34801561056e57600080fd5b506102a6611024565b34801561058357600080fd5b5061025a610592366004612433565b611033565b3480156105a357600080fd5b5061033c6105b2366004612251565b6001600160a01b03166000908152600a602052604090205490565b3480156105d957600080fd5b5061033c600f5481565b61025a6105f136600461226e565b61122f565b34801561060257600080fd5b5061025a610611366004612304565b6113bf565b34801561062257600080fd5b5061025a610631366004612493565b611484565b34801561064257600080fd5b5061025a6106513660046124c4565b6114d6565b34801561066257600080fd5b5061033c600e5481565b34801561067857600080fd5b506102a661068736600461226e565b61150e565b34801561069857600080fd5b5061033c6106a7366004612251565b6001600160a01b031660009081526009602052604090205490565b3480156106ce57600080fd5b5060085461033c565b3480156106e357600080fd5b5061027c6106f23660046125a4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072c57600080fd5b5061025a61073b366004612251565b6115b2565b60006001600160e01b0319821663780e9d6360e01b148061076557506107658261164a565b92915050565b60606002805461077a906125dd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906125dd565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600080546001600160a01b031633146108315760405162461bcd60e51b815260040161082890612618565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b600061085f8261169a565b6108c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b506000908152600560205260409020546001600160a01b031690565b60006108e782610d80565b9050806001600160a01b0316836001600160a01b031614156109555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610828565b336001600160a01b0382161480610971575061097181336106f2565b6109e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610828565b6109ed83836116e4565b505050565b6001600160a01b038116600090815260096020526040902054610a665760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610828565b600060085447610a769190612663565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610aad908561267b565b610ab791906126b0565b610ac191906126c4565b905080610b245760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610828565b6001600160a01b0383166000908152600a6020526040902054610b48908290612663565b6001600160a01b0384166000908152600a6020526040902055600854610b6f908290612663565b600855610b7c8382611752565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610bcd338261186b565b610be95760405162461bcd60e51b8152600401610828906126db565b6109ed838383611955565b6000610bff83611ab6565b8210610c615760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610828565b6001600160a01b0383166000908152601260205260409020805483908110610c8b57610c8b61272c565b9060005260206000200154905092915050565b6109ed838383604051806020016040528060008152506114d6565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161082890612618565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000610d1960045490565b8210610d7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610828565b5090565b60008060048381548110610d9657610d9661272c565b6000918252602090912001546001600160a01b03169050806107655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610828565b3360009081526001602052604090205460ff16610e3b5760405162461bcd60e51b815260040161082890612742565b610e4760108585612107565b50610e5460118383612107565b5050505050565b3360009081526001602052604090205460ff16610e8a5760405162461bcd60e51b815260040161082890612742565b80600e5414610e9957600e8190555b50565b6000546001600160a01b03163314610ec65760405162461bcd60e51b815260040161082890612618565b80600c5414610e9957600454811015610f385760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b6064820152608401610828565b600c55565b60006001600160a01b038216610f655760405162461bcd60e51b81526004016108289061276c565b506001600160a01b031660009081526012602052604090205490565b6000546001600160a01b03163314610fab5760405162461bcd60e51b815260040161082890612618565b610fb56000611b45565b565b6000600b8281548110610fcc57610fcc61272c565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff166110165760405162461bcd60e51b815260040161082890612742565b80600f5414610e9957600f55565b60606003805461077a906125dd565b3360009081526001602052604090205460ff166110625760405162461bcd60e51b815260040161082890612742565b8281146110c65760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b6064820152608401610828565b6000806110d260045490565b905060005b85811015611115578686828181106110f1576110f161272c565b90506020020135836111039190612663565b925061110e816127b6565b90506110d7565b50600c546111238383612663565b11156111715760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610828565b6000915060005b838110156112265760005b8787838181106111955761119561272c565b90506020020135811015611215576112058686848181106111b8576111b861272c565b90506020020160208101906111cd9190612251565b846111d7816127b6565b95506040518060400160405280600e81526020016d53656e742077697468206c6f766560901b815250611b95565b61120e816127b6565b9050611183565b5061121f816127b6565b9050611178565b50505050505050565b600d5460ff166112765760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610828565b600e548111156112b95760405162461bcd60e51b815260206004820152600e60248201526d53756d6d6f6e20746f6f2062696760901b6044820152606401610828565b80600f546112c7919061267b565b3410156113165760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610828565b600061132160045490565b600c549091506113318383612663565b111561137f5760405162461bcd60e51b815260206004820152601b60248201527f53756d6d6f6e2f6f72646572206578636565647320737570706c7900000000006044820152606401610828565b60005b828110156109ed576113af3383611398816127b6565b945060405180602001604052806000815250611b95565b6113b8816127b6565b9050611382565b6001600160a01b0382163314156114185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff166114b35760405162461bcd60e51b815260040161082890612742565b600d5460ff16151581151514610e9957600d805482151560ff1990911617905550565b6114e0338361186b565b6114fc5760405162461bcd60e51b8152600401610828906126db565b61150884848484611bc8565b50505050565b60606115198261169a565b61157d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b601061158883611bfb565b601160405160200161159c9392919061286b565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146115dc5760405162461bcd60e51b815260040161082890612618565b6001600160a01b0381166116415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b610e9981611b45565b60006001600160e01b031982166380ac58cd60e01b148061167b57506001600160e01b03198216635b5e139f60e01b145b8061076557506301ffc9a760e01b6001600160e01b0319831614610765565b60045460009082108015610765575060006001600160a01b0316600483815481106116c7576116c761272c565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171982610d80565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156117a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610828565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b50509050806109ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610828565b60006118768261169a565b6118d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b60006118e283610d80565b9050806001600160a01b0316846001600160a01b0316148061191d5750836001600160a01b031661191284610854565b6001600160a01b0316145b8061194d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196882610d80565b6001600160a01b0316146119d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610828565b6001600160a01b038216611a325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610828565b611a3d838383611cf9565b611a486000826116e4565b8160048281548110611a5c57611a5c61272c565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006001600160a01b038216611ade5760405162461bcd60e51b81526004016108289061276c565b600454600090815b81811015611b3c5760048181548110611b0157611b0161272c565b6000918252602090912001546001600160a01b0386811691161415611b2c57611b29836127b6565b92505b611b35816127b6565b9050611ae6565b50909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611b9f8383611ec6565b611bac6000848484611ffa565b6109ed5760405162461bcd60e51b81526004016108289061289e565b611bd3848484611955565b611bdf84848484611ffa565b6115085760405162461bcd60e51b81526004016108289061289e565b606081611c1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c495780611c33816127b6565b9150611c429050600a836126b0565b9150611c23565b60008167ffffffffffffffff811115611c6457611c646124ae565b6040519080825280601f01601f191660200182016040528015611c8e576020820181803683370190505b5090505b841561194d57611ca36001836126c4565b9150611cb0600a866128f0565b611cbb906030612663565b60f81b818381518110611cd057611cd061272c565b60200101906001600160f81b031916908160001a905350611cf2600a866126b0565b9450611c92565b60006001600160a01b038416151580611d235750806001600160a01b0316836001600160a01b0316145b15611e60576001600160a01b038416600090815260126020526040812054905b81811015611e5d576001600160a01b0386166000908152601260205260409020805485919083908110611d7857611d7861272c565b90600052602060002001541415611e4d576001600160a01b0386166000908152601260205260409020611dac6001846126c4565b81548110611dbc57611dbc61272c565b906000526020600020015460126000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611dfd57611dfd61272c565b60009182526020808320909101929092556001600160a01b0388168152601290915260409020805480611e3257611e32612904565b60019003818190600052602060002001600090559055611e5d565b611e56816127b6565b9050611d43565b50505b806001600160a01b0316846001600160a01b03161480611e925750806001600160a01b0316836001600160a01b031614155b1561150857506001600160a01b03919091166000908152601260209081526040822080546001810182559083529120015550565b6001600160a01b038216611f1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610828565b611f258161169a565b15611f725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610828565b611f7e60008383611cf9565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156120fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061203e90339089908890889060040161291a565b602060405180830381600087803b15801561205857600080fd5b505af1925050508015612088575060408051601f3d908101601f1916820190925261208591810190612957565b60015b6120e2573d8080156120b6576040519150601f19603f3d011682016040523d82523d6000602084013e6120bb565b606091505b5080516120da5760405162461bcd60e51b81526004016108289061289e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061194d565b506001949350505050565b828054612113906125dd565b90600052602060002090601f016020900481019282612135576000855561217b565b82601f1061214e5782800160ff1982351617855561217b565b8280016001018555821561217b579182015b8281111561217b578235825591602001919060010190612160565b50610d7c9291505b80821115610d7c5760008155600101612183565b6001600160e01b031981168114610e9957600080fd5b6000602082840312156121bf57600080fd5b81356121ca81612197565b9392505050565b60005b838110156121ec5781810151838201526020016121d4565b838111156115085750506000910152565b600081518084526122158160208601602086016121d1565b601f01601f19169290920160200192915050565b6020815260006121ca60208301846121fd565b6001600160a01b0381168114610e9957600080fd5b60006020828403121561226357600080fd5b81356121ca8161223c565b60006020828403121561228057600080fd5b5035919050565b6000806040838503121561229a57600080fd5b82356122a58161223c565b946020939093013593505050565b6000806000606084860312156122c857600080fd5b83356122d38161223c565b925060208401356122e38161223c565b929592945050506040919091013590565b8035801515811461084f57600080fd5b6000806040838503121561231757600080fd5b82356123228161223c565b9150612330602084016122f4565b90509250929050565b60008083601f84011261234b57600080fd5b50813567ffffffffffffffff81111561236357600080fd5b60208301915083602082850101111561237b57600080fd5b9250929050565b6000806000806040858703121561239857600080fd5b843567ffffffffffffffff808211156123b057600080fd5b6123bc88838901612339565b909650945060208701359150808211156123d557600080fd5b506123e287828801612339565b95989497509550505050565b60008083601f84011261240057600080fd5b50813567ffffffffffffffff81111561241857600080fd5b6020830191508360208260051b850101111561237b57600080fd5b6000806000806040858703121561244957600080fd5b843567ffffffffffffffff8082111561246157600080fd5b61246d888389016123ee565b9096509450602087013591508082111561248657600080fd5b506123e2878288016123ee565b6000602082840312156124a557600080fd5b6121ca826122f4565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124da57600080fd5b84356124e58161223c565b935060208501356124f58161223c565b925060408501359150606085013567ffffffffffffffff8082111561251957600080fd5b818701915087601f83011261252d57600080fd5b81358181111561253f5761253f6124ae565b604051601f8201601f19908116603f01168101908382118183101715612567576125676124ae565b816040528281528a602084870101111561258057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125b757600080fd5b82356125c28161223c565b915060208301356125d28161223c565b809150509250929050565b600181811c908216806125f157607f821691505b6020821081141561261257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126765761267661264d565b500190565b60008160001904831182151516156126955761269561264d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bf576126bf61269a565b500490565b6000828210156126d6576126d661264d565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60006000198214156127ca576127ca61264d565b5060010190565b8054600090600181811c90808316806127eb57607f831692505b602080841082141561280d57634e487b7160e01b600052602260045260246000fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008881526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505092915050565b600061287782866127d1565b84516128878183602089016121d1565b612893818301866127d1565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826128ff576128ff61269a565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294d908301846121fd565b9695505050505050565b60006020828403121561296957600080fd5b81516121ca8161219756fea26469706673582212201d8a00bc8c29e5a69638c8bba236d7592e8eaec8e0e95df24dd7318c49b8bc6f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102115760003560e01c806370a0823111610117578063a0712d68116100a5578063c87b56dd1161006c578063c87b56dd1461066c578063ce7c2ac21461068c578063e33b7de3146106c2578063e985e9c5146106d7578063f2fde38b1461072057005b8063a0712d68146105e3578063a22cb465146105f6578063acec338a14610616578063b88d4fde14610636578063b91774aa1461065657005b806391b7f5ed116100e957806391b7f5ed1461054257806395d89b411461056257806396ea3a47146105775780639852595c14610597578063a035b1fe146105cd57005b806370a08231146104cf578063715018a6146104ef5780638b83209b146105045780638da5cb5b1461052457005b80632f745c591161019f5780634f6ccce7116101665780634f6ccce71461042f5780636352211e1461044f5780636790a9de1461046f57806368714d441461048f5780636f8b44b0146104af57005b80632f745c59146103a457806332cb6b0c146103c45780633a98ef39146103da57806342842e0e146103ef5780634a994eef1461040f57005b8063095ea7b3116101e3578063095ea7b31461030b57806318160ddd1461032b578063191655871461034a57806322f3e2d41461036a57806323b872dd1461038457005b806301ffc9a71461025c57806306fdde031461029157806307779627146102b3578063081812fc146102d357005b3661025a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561026857600080fd5b5061027c6102773660046121ad565b610740565b60405190151581526020015b60405180910390f35b34801561029d57600080fd5b506102a661076b565b6040516102889190612229565b3480156102bf57600080fd5b5061027c6102ce366004612251565b6107fd565b3480156102df57600080fd5b506102f36102ee36600461226e565b610854565b6040516001600160a01b039091168152602001610288565b34801561031757600080fd5b5061025a610326366004612287565b6108dc565b34801561033757600080fd5b506004545b604051908152602001610288565b34801561035657600080fd5b5061025a610365366004612251565b6109f2565b34801561037657600080fd5b50600d5461027c9060ff1681565b34801561039057600080fd5b5061025a61039f3660046122b3565b610bc3565b3480156103b057600080fd5b5061033c6103bf366004612287565b610bf4565b3480156103d057600080fd5b5061033c600c5481565b3480156103e657600080fd5b5060075461033c565b3480156103fb57600080fd5b5061025a61040a3660046122b3565b610c9e565b34801561041b57600080fd5b5061025a61042a366004612304565b610cb9565b34801561043b57600080fd5b5061033c61044a36600461226e565b610d0e565b34801561045b57600080fd5b506102f361046a36600461226e565b610d80565b34801561047b57600080fd5b5061025a61048a366004612382565b610e0c565b34801561049b57600080fd5b5061025a6104aa36600461226e565b610e5b565b3480156104bb57600080fd5b5061025a6104ca36600461226e565b610e9c565b3480156104db57600080fd5b5061033c6104ea366004612251565b610f3d565b3480156104fb57600080fd5b5061025a610f81565b34801561051057600080fd5b506102f361051f36600461226e565b610fb7565b34801561053057600080fd5b506000546001600160a01b03166102f3565b34801561054e57600080fd5b5061025a61055d36600461226e565b610fe7565b34801561056e57600080fd5b506102a6611024565b34801561058357600080fd5b5061025a610592366004612433565b611033565b3480156105a357600080fd5b5061033c6105b2366004612251565b6001600160a01b03166000908152600a602052604090205490565b3480156105d957600080fd5b5061033c600f5481565b61025a6105f136600461226e565b61122f565b34801561060257600080fd5b5061025a610611366004612304565b6113bf565b34801561062257600080fd5b5061025a610631366004612493565b611484565b34801561064257600080fd5b5061025a6106513660046124c4565b6114d6565b34801561066257600080fd5b5061033c600e5481565b34801561067857600080fd5b506102a661068736600461226e565b61150e565b34801561069857600080fd5b5061033c6106a7366004612251565b6001600160a01b031660009081526009602052604090205490565b3480156106ce57600080fd5b5060085461033c565b3480156106e357600080fd5b5061027c6106f23660046125a4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072c57600080fd5b5061025a61073b366004612251565b6115b2565b60006001600160e01b0319821663780e9d6360e01b148061076557506107658261164a565b92915050565b60606002805461077a906125dd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906125dd565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600080546001600160a01b031633146108315760405162461bcd60e51b815260040161082890612618565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b600061085f8261169a565b6108c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b506000908152600560205260409020546001600160a01b031690565b60006108e782610d80565b9050806001600160a01b0316836001600160a01b031614156109555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610828565b336001600160a01b0382161480610971575061097181336106f2565b6109e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610828565b6109ed83836116e4565b505050565b6001600160a01b038116600090815260096020526040902054610a665760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610828565b600060085447610a769190612663565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610aad908561267b565b610ab791906126b0565b610ac191906126c4565b905080610b245760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610828565b6001600160a01b0383166000908152600a6020526040902054610b48908290612663565b6001600160a01b0384166000908152600a6020526040902055600854610b6f908290612663565b600855610b7c8382611752565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610bcd338261186b565b610be95760405162461bcd60e51b8152600401610828906126db565b6109ed838383611955565b6000610bff83611ab6565b8210610c615760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610828565b6001600160a01b0383166000908152601260205260409020805483908110610c8b57610c8b61272c565b9060005260206000200154905092915050565b6109ed838383604051806020016040528060008152506114d6565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161082890612618565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000610d1960045490565b8210610d7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610828565b5090565b60008060048381548110610d9657610d9661272c565b6000918252602090912001546001600160a01b03169050806107655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610828565b3360009081526001602052604090205460ff16610e3b5760405162461bcd60e51b815260040161082890612742565b610e4760108585612107565b50610e5460118383612107565b5050505050565b3360009081526001602052604090205460ff16610e8a5760405162461bcd60e51b815260040161082890612742565b80600e5414610e9957600e8190555b50565b6000546001600160a01b03163314610ec65760405162461bcd60e51b815260040161082890612618565b80600c5414610e9957600454811015610f385760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b6064820152608401610828565b600c55565b60006001600160a01b038216610f655760405162461bcd60e51b81526004016108289061276c565b506001600160a01b031660009081526012602052604090205490565b6000546001600160a01b03163314610fab5760405162461bcd60e51b815260040161082890612618565b610fb56000611b45565b565b6000600b8281548110610fcc57610fcc61272c565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff166110165760405162461bcd60e51b815260040161082890612742565b80600f5414610e9957600f55565b60606003805461077a906125dd565b3360009081526001602052604090205460ff166110625760405162461bcd60e51b815260040161082890612742565b8281146110c65760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b6064820152608401610828565b6000806110d260045490565b905060005b85811015611115578686828181106110f1576110f161272c565b90506020020135836111039190612663565b925061110e816127b6565b90506110d7565b50600c546111238383612663565b11156111715760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610828565b6000915060005b838110156112265760005b8787838181106111955761119561272c565b90506020020135811015611215576112058686848181106111b8576111b861272c565b90506020020160208101906111cd9190612251565b846111d7816127b6565b95506040518060400160405280600e81526020016d53656e742077697468206c6f766560901b815250611b95565b61120e816127b6565b9050611183565b5061121f816127b6565b9050611178565b50505050505050565b600d5460ff166112765760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610828565b600e548111156112b95760405162461bcd60e51b815260206004820152600e60248201526d53756d6d6f6e20746f6f2062696760901b6044820152606401610828565b80600f546112c7919061267b565b3410156113165760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610828565b600061132160045490565b600c549091506113318383612663565b111561137f5760405162461bcd60e51b815260206004820152601b60248201527f53756d6d6f6e2f6f72646572206578636565647320737570706c7900000000006044820152606401610828565b60005b828110156109ed576113af3383611398816127b6565b945060405180602001604052806000815250611b95565b6113b8816127b6565b9050611382565b6001600160a01b0382163314156114185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff166114b35760405162461bcd60e51b815260040161082890612742565b600d5460ff16151581151514610e9957600d805482151560ff1990911617905550565b6114e0338361186b565b6114fc5760405162461bcd60e51b8152600401610828906126db565b61150884848484611bc8565b50505050565b60606115198261169a565b61157d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b601061158883611bfb565b601160405160200161159c9392919061286b565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146115dc5760405162461bcd60e51b815260040161082890612618565b6001600160a01b0381166116415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b610e9981611b45565b60006001600160e01b031982166380ac58cd60e01b148061167b57506001600160e01b03198216635b5e139f60e01b145b8061076557506301ffc9a760e01b6001600160e01b0319831614610765565b60045460009082108015610765575060006001600160a01b0316600483815481106116c7576116c761272c565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171982610d80565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156117a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610828565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b50509050806109ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610828565b60006118768261169a565b6118d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b60006118e283610d80565b9050806001600160a01b0316846001600160a01b0316148061191d5750836001600160a01b031661191284610854565b6001600160a01b0316145b8061194d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196882610d80565b6001600160a01b0316146119d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610828565b6001600160a01b038216611a325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610828565b611a3d838383611cf9565b611a486000826116e4565b8160048281548110611a5c57611a5c61272c565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006001600160a01b038216611ade5760405162461bcd60e51b81526004016108289061276c565b600454600090815b81811015611b3c5760048181548110611b0157611b0161272c565b6000918252602090912001546001600160a01b0386811691161415611b2c57611b29836127b6565b92505b611b35816127b6565b9050611ae6565b50909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611b9f8383611ec6565b611bac6000848484611ffa565b6109ed5760405162461bcd60e51b81526004016108289061289e565b611bd3848484611955565b611bdf84848484611ffa565b6115085760405162461bcd60e51b81526004016108289061289e565b606081611c1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c495780611c33816127b6565b9150611c429050600a836126b0565b9150611c23565b60008167ffffffffffffffff811115611c6457611c646124ae565b6040519080825280601f01601f191660200182016040528015611c8e576020820181803683370190505b5090505b841561194d57611ca36001836126c4565b9150611cb0600a866128f0565b611cbb906030612663565b60f81b818381518110611cd057611cd061272c565b60200101906001600160f81b031916908160001a905350611cf2600a866126b0565b9450611c92565b60006001600160a01b038416151580611d235750806001600160a01b0316836001600160a01b0316145b15611e60576001600160a01b038416600090815260126020526040812054905b81811015611e5d576001600160a01b0386166000908152601260205260409020805485919083908110611d7857611d7861272c565b90600052602060002001541415611e4d576001600160a01b0386166000908152601260205260409020611dac6001846126c4565b81548110611dbc57611dbc61272c565b906000526020600020015460126000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611dfd57611dfd61272c565b60009182526020808320909101929092556001600160a01b0388168152601290915260409020805480611e3257611e32612904565b60019003818190600052602060002001600090559055611e5d565b611e56816127b6565b9050611d43565b50505b806001600160a01b0316846001600160a01b03161480611e925750806001600160a01b0316836001600160a01b031614155b1561150857506001600160a01b03919091166000908152601260209081526040822080546001810182559083529120015550565b6001600160a01b038216611f1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610828565b611f258161169a565b15611f725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610828565b611f7e60008383611cf9565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156120fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061203e90339089908890889060040161291a565b602060405180830381600087803b15801561205857600080fd5b505af1925050508015612088575060408051601f3d908101601f1916820190925261208591810190612957565b60015b6120e2573d8080156120b6576040519150601f19603f3d011682016040523d82523d6000602084013e6120bb565b606091505b5080516120da5760405162461bcd60e51b81526004016108289061289e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061194d565b506001949350505050565b828054612113906125dd565b90600052602060002090601f016020900481019282612135576000855561217b565b82601f1061214e5782800160ff1982351617855561217b565b8280016001018555821561217b579182015b8281111561217b578235825591602001919060010190612160565b50610d7c9291505b80821115610d7c5760008155600101612183565b6001600160e01b031981168114610e9957600080fd5b6000602082840312156121bf57600080fd5b81356121ca81612197565b9392505050565b60005b838110156121ec5781810151838201526020016121d4565b838111156115085750506000910152565b600081518084526122158160208601602086016121d1565b601f01601f19169290920160200192915050565b6020815260006121ca60208301846121fd565b6001600160a01b0381168114610e9957600080fd5b60006020828403121561226357600080fd5b81356121ca8161223c565b60006020828403121561228057600080fd5b5035919050565b6000806040838503121561229a57600080fd5b82356122a58161223c565b946020939093013593505050565b6000806000606084860312156122c857600080fd5b83356122d38161223c565b925060208401356122e38161223c565b929592945050506040919091013590565b8035801515811461084f57600080fd5b6000806040838503121561231757600080fd5b82356123228161223c565b9150612330602084016122f4565b90509250929050565b60008083601f84011261234b57600080fd5b50813567ffffffffffffffff81111561236357600080fd5b60208301915083602082850101111561237b57600080fd5b9250929050565b6000806000806040858703121561239857600080fd5b843567ffffffffffffffff808211156123b057600080fd5b6123bc88838901612339565b909650945060208701359150808211156123d557600080fd5b506123e287828801612339565b95989497509550505050565b60008083601f84011261240057600080fd5b50813567ffffffffffffffff81111561241857600080fd5b6020830191508360208260051b850101111561237b57600080fd5b6000806000806040858703121561244957600080fd5b843567ffffffffffffffff8082111561246157600080fd5b61246d888389016123ee565b9096509450602087013591508082111561248657600080fd5b506123e2878288016123ee565b6000602082840312156124a557600080fd5b6121ca826122f4565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124da57600080fd5b84356124e58161223c565b935060208501356124f58161223c565b925060408501359150606085013567ffffffffffffffff8082111561251957600080fd5b818701915087601f83011261252d57600080fd5b81358181111561253f5761253f6124ae565b604051601f8201601f19908116603f01168101908382118183101715612567576125676124ae565b816040528281528a602084870101111561258057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125b757600080fd5b82356125c28161223c565b915060208301356125d28161223c565b809150509250929050565b600181811c908216806125f157607f821691505b6020821081141561261257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126765761267661264d565b500190565b60008160001904831182151516156126955761269561264d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bf576126bf61269a565b500490565b6000828210156126d6576126d661264d565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60006000198214156127ca576127ca61264d565b5060010190565b8054600090600181811c90808316806127eb57607f831692505b602080841082141561280d57634e487b7160e01b600052602260045260246000fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008881526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505092915050565b600061287782866127d1565b84516128878183602089016121d1565b612893818301866127d1565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826128ff576128ff61269a565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294d908301846121fd565b9695505050505050565b60006020828403121561296957600080fd5b81516121ca8161219756fea26469706673582212201d8a00bc8c29e5a69638c8bba236d7592e8eaec8e0e95df24dd7318c49b8bc6f64736f6c63430008090033

Deployed Bytecode Sourcemap

49885:4060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5685:40;753:10;5685:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;5715:9:0;270:2:1;255:18;;248:34;161:18;5685:40:0;;;;;;;49885:4060;;;47217:225;;;;;;;;;;-1:-1:-1;47217:225:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;47217:225:0;;;;;;;;36506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34246:112::-;;;;;;;;;;-1:-1:-1;34246:112:0;;;;;:::i;:::-;;:::i;37319:221::-;;;;;;;;;;-1:-1:-1;37319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2359:32:1;;;2341:51;;2329:2;2314:18;37319:221:0;2195:203:1;36841:412:0;;;;;;;;;;-1:-1:-1;36841:412:0;;;;;:::i;:::-;;:::i;48325:110::-;;;;;;;;;;-1:-1:-1;48413:7:0;:14;48325:110;;;2869:25:1;;;2857:2;2842:18;48325:110:0;2723:177:1;6891:613:0;;;;;;;;;;-1:-1:-1;6891:613:0;;;;;:::i;:::-;;:::i;50017:29::-;;;;;;;;;;-1:-1:-1;50017:29:0;;;;;;;;38211:339;;;;;;;;;;-1:-1:-1;38211:339:0;;;;;:::i;:::-;;:::i;52777:252::-;;;;;;;;;;-1:-1:-1;52777:252:0;;;;;:::i;:::-;;:::i;49981:29::-;;;;;;;;;;;;;;;;5816:91;;;;;;;;;;-1:-1:-1;5887:12:0;;5816:91;;38621:185;;;;;;;;;;-1:-1:-1;38621:185:0;;;;;:::i;:::-;;:::i;34364:116::-;;;;;;;;;;-1:-1:-1;34364:116:0;;;;;:::i;:::-;;:::i;48512:222::-;;;;;;;;;;-1:-1:-1;48512:222:0;;;;;:::i;:::-;;:::i;36200:239::-;;;;;;;;;;-1:-1:-1;36200:239:0;;;;;:::i;:::-;;:::i;52113:174::-;;;;;;;;;;-1:-1:-1;52113:174:0;;;;;:::i;:::-;;:::i;51863:128::-;;;;;;;;;;-1:-1:-1;51863:128:0;;;;;:::i;:::-;;:::i;52315:231::-;;;;;;;;;;-1:-1:-1;52315:231:0;;;;;:::i;:::-;;:::i;52566:205::-;;;;;;;;;;-1:-1:-1;52566:205:0;;;;;:::i;:::-;;:::i;2475:94::-;;;;;;;;;;;;;:::i;6591:100::-;;;;;;;;;;-1:-1:-1;6591:100:0;;;;;:::i;:::-;;:::i;1824:87::-;;;;;;;;;;-1:-1:-1;1870:7:0;1897:6;-1:-1:-1;;;;;1897:6:0;1824:87;;51997:110;;;;;;;;;;-1:-1:-1;51997:110:0;;;;;:::i;:::-;;:::i;36675:104::-;;;;;;;;;;;;;:::i;51081:645::-;;;;;;;;;;-1:-1:-1;51081:645:0;;;;;:::i;:::-;;:::i;6391:109::-;;;;;;;;;;-1:-1:-1;6391:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;6474:18:0;6447:7;6474:18;;;:9;:18;;;;;;;6391:109;50083:32;;;;;;;;;;;;;;;;50554:497;;;;;;:::i;:::-;;:::i;37612:295::-;;;;;;;;;;-1:-1:-1;37612:295:0;;;;;:::i;:::-;;:::i;51732:125::-;;;;;;;;;;-1:-1:-1;51732:125:0;;;;;:::i;:::-;;:::i;38877:328::-;;;;;;;;;;-1:-1:-1;38877:328:0;;;;;:::i;:::-;;:::i;50051:27::-;;;;;;;;;;;;;;;;53035:266;;;;;;;;;;-1:-1:-1;53035:266:0;;;;;:::i;:::-;;:::i;6187:105::-;;;;;;;;;;-1:-1:-1;6187:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;6268:16:0;6241:7;6268:16;;;:7;:16;;;;;;;6187:105;6001:95;;;;;;;;;;-1:-1:-1;6074:14:0;;6001:95;;37978:164;;;;;;;;;;-1:-1:-1;37978:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38099:25:0;;;38075:4;38099:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37978:164;2724:192;;;;;;;;;;-1:-1:-1;2724:192:0;;;;;:::i;:::-;;:::i;47217:225::-;47320:4;-1:-1:-1;;;;;;47344:50:0;;-1:-1:-1;;;47344:50:0;;:90;;;47398:36;47422:11;47398:23;:36::i;:::-;47337:97;47217:225;-1:-1:-1;;47217:225:0:o;36506:100::-;36560:13;36593:5;36586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36506:100;:::o;34246:112::-;34316:4;1897:6;;-1:-1:-1;;;;;1897:6:0;753:10;2044:23;2036:68;;;;-1:-1:-1;;;2036:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;34336:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;2115:1;34246:112:::0;;;:::o;37319:221::-;37395:7;37423:16;37431:7;37423;:16::i;:::-;37415:73;;;;-1:-1:-1;;;37415:73:0;;9269:2:1;37415:73:0;;;9251:21:1;9308:2;9288:18;;;9281:30;9347:34;9327:18;;;9320:62;-1:-1:-1;;;9398:18:1;;;9391:42;9450:19;;37415:73:0;9067:408:1;37415:73:0;-1:-1:-1;37508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37508:24:0;;37319:221::o;36841:412::-;36922:13;36938:24;36954:7;36938:15;:24::i;:::-;36922:40;;36987:5;-1:-1:-1;;;;;36981:11:0;:2;-1:-1:-1;;;;;36981:11:0;;;36973:57;;;;-1:-1:-1;;;36973:57:0;;9682:2:1;36973:57:0;;;9664:21:1;9721:2;9701:18;;;9694:30;9760:34;9740:18;;;9733:62;-1:-1:-1;;;9811:18:1;;;9804:31;9852:19;;36973:57:0;9480:397:1;36973:57:0;753:10;-1:-1:-1;;;;;37065:21:0;;;;:62;;-1:-1:-1;37090:37:0;37107:5;753:10;37978:164;:::i;37090:37::-;37043:168;;;;-1:-1:-1;;;37043:168:0;;10084:2:1;37043:168:0;;;10066:21:1;10123:2;10103:18;;;10096:30;10162:34;10142:18;;;10135:62;10233:26;10213:18;;;10206:54;10277:19;;37043:168:0;9882:420:1;37043:168:0;37224:21;37233:2;37237:7;37224:8;:21::i;:::-;36911:342;36841:412;;:::o;6891:613::-;-1:-1:-1;;;;;6967:16:0;;6986:1;6967:16;;;:7;:16;;;;;;6959:71;;;;-1:-1:-1;;;6959:71:0;;10509:2:1;6959:71:0;;;10491:21:1;10548:2;10528:18;;;10521:30;10587:34;10567:18;;;10560:62;-1:-1:-1;;;10638:18:1;;;10631:36;10684:19;;6959:71:0;10307:402:1;6959:71:0;7043:21;7091:14;;7067:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;7186:18:0;;7116:15;7186:18;;;:9;:18;;;;;;;;;7171:12;;7151:7;:16;;;;;;;7043:62;;-1:-1:-1;7116:15:0;;7135:32;;7043:62;7135:32;:::i;:::-;7134:49;;;;:::i;:::-;:70;;;;:::i;:::-;7116:88;-1:-1:-1;7225:12:0;7217:68;;;;-1:-1:-1;;;7217:68:0;;11741:2:1;7217:68:0;;;11723:21:1;11780:2;11760:18;;;11753:30;11819:34;11799:18;;;11792:62;-1:-1:-1;;;11870:18:1;;;11863:41;11921:19;;7217:68:0;11539:407:1;7217:68:0;-1:-1:-1;;;;;7319:18:0;;;;;;:9;:18;;;;;;:28;;7340:7;;7319:28;:::i;:::-;-1:-1:-1;;;;;7298:18:0;;;;;;:9;:18;;;;;:49;7375:14;;:24;;7392:7;;7375:24;:::i;:::-;7358:14;:41;7412:35;7430:7;7439;7412:17;:35::i;:::-;7463:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;7463:33:0;;161:18:1;7463:33:0;;;;;;;6948:556;;6891:613;:::o;38211:339::-;38406:41;753:10;38439:7;38406:18;:41::i;:::-;38398:103;;;;-1:-1:-1;;;38398:103:0;;;;;;;:::i;:::-;38514:28;38524:4;38530:2;38534:7;38514:9;:28::i;52777:252::-;52874:15;52914:24;52932:5;52914:17;:24::i;:::-;52906:5;:32;52898:88;;;;-1:-1:-1;;;52898:88:0;;12858:2:1;52898:88:0;;;12840:21:1;12897:2;12877:18;;;12870:30;12936:34;12916:18;;;12909:62;-1:-1:-1;;;12987:18:1;;;12980:41;13038:19;;52898:88:0;12656:407:1;52898:88:0;-1:-1:-1;;;;;53000:16:0;;;;;;:9;:16;;;;;:23;;53017:5;;53000:23;;;;;;:::i;:::-;;;;;;;;;52993:30;;52777:252;;;;:::o;38621:185::-;38759:39;38776:4;38782:2;38786:7;38759:39;;;;;;;;;;;;:16;:39::i;34364:116::-;1870:7;1897:6;-1:-1:-1;;;;;1897:6:0;753:10;2044:23;2036:68;;;;-1:-1:-1;;;2036:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34444:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:30;;-1:-1:-1;;34444:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34364:116::o;48512:222::-;48587:7;48623:31;48413:7;:14;;48325:110;48623:31;48615:5;:39;48607:96;;;;-1:-1:-1;;;48607:96:0;;13402:2:1;48607:96:0;;;13384:21:1;13441:2;13421:18;;;13414:30;13480:34;13460:18;;;13453:62;-1:-1:-1;;;13531:18:1;;;13524:42;13583:19;;48607:96:0;13200:408:1;48607:96:0;-1:-1:-1;48721:5:0;48512:222::o;36200:239::-;36272:7;36292:13;36308:7;36316;36308:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36308:16:0;;-1:-1:-1;36343:19:0;36335:73;;;;-1:-1:-1;;;36335:73:0;;13815:2:1;36335:73:0;;;13797:21:1;13854:2;13834:18;;;13827:30;13893:34;13873:18;;;13866:62;-1:-1:-1;;;13944:18:1;;;13937:39;13993:19;;36335:73:0;13613:405:1;52113:174:0;34178:10;34167:22;;;;:10;:22;;;;;;;;34159:52;;;;-1:-1:-1;;;34159:52:0;;;;;;;:::i;:::-;52219:27:::1;:13;52235:11:::0;;52219:27:::1;:::i;:::-;-1:-1:-1::0;52253:28:0::1;:15;52271:10:::0;;52253:28:::1;:::i;:::-;;52113:174:::0;;;;:::o;51863:128::-;34178:10;34167:22;;;;:10;:22;;;;;;;;34159:52;;;;-1:-1:-1;;;34159:52:0;;;;;;;:::i;:::-;51945:9:::1;51932;;:22;51928:57;;51964:9;:21:::0;;;51928:57:::1;51863:128:::0;:::o;52315:231::-;1870:7;1897:6;-1:-1:-1;;;;;1897:6:0;753:10;2044:23;2036:68;;;;-1:-1:-1;;;2036:68:0;;;;;;;:::i;:::-;52396:9:::1;52382:10;;:23;52378:163;;48413:7:::0;:14;52424:9:::1;:26;;52416:86;;;::::0;-1:-1:-1;;;52416:86:0;;14570:2:1;52416:86:0::1;::::0;::::1;14552:21:1::0;14609:2;14589:18;;;14582:30;14648:34;14628:18;;;14621:62;-1:-1:-1;;;14699:18:1;;;14692:44;14753:19;;52416:86:0::1;14368:410:1::0;52416:86:0::1;52511:10;:22:::0;52315:231::o;52566:205::-;52638:7;-1:-1:-1;;;;;52662:19:0;;52654:74;;;;-1:-1:-1;;;52654:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52742:16:0;;;;;:9;:16;;;;;:23;;52566:205::o;2475:94::-;1870:7;1897:6;-1:-1:-1;;;;;1897:6:0;753:10;2044:23;2036:68;;;;-1:-1:-1;;;2036:68:0;;;;;;;:::i;:::-;2540:21:::1;2558:1;2540:9;:21::i;:::-;2475:94::o:0;6591:100::-;6642:7;6669;6677:5;6669:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6669:14:0;;6591:100;-1:-1:-1;;6591:100:0:o;51997:110::-;34178:10;34167:22;;;;:10;:22;;;;;;;;34159:52;;;;-1:-1:-1;;;34159:52:0;;;;;;;:::i;:::-;52071:6:::1;52062:5;;:15;52058:43;;52087:5;:14:::0;51997:110::o;36675:104::-;36731:13;36764:7;36757:14;;;;;:::i;51081:645::-;34178:10;34167:22;;;;:10;:22;;;;;;;;34159:52;;;;-1:-1:-1;;;34159:52:0;;;;;;;:::i;:::-;51188:35;;::::1;51180:93;;;::::0;-1:-1:-1;;;51180:93:0;;15396:2:1;51180:93:0::1;::::0;::::1;15378:21:1::0;15435:2;15415:18;;;15408:30;15474:34;15454:18;;;15447:62;-1:-1:-1;;;15525:18:1;;;15518:42;15577:19;;51180:93:0::1;15194:408:1::0;51180:93:0::1;51282:18;51311:14:::0;51328:13:::1;48413:7:::0;:14;;48325:110;51328:13:::1;51311:30;;51352:6;51348:86;51364:19:::0;;::::1;51348:86;;;51415:8;;51424:1;51415:11;;;;;;;:::i;:::-;;;;;;;51398:28;;;;;:::i;:::-;::::0;-1:-1:-1;51385:3:0::1;::::0;::::1;:::i;:::-;;;51348:86;;;-1:-1:-1::0;51475:10:0::1;::::0;51449:22:::1;51458:13:::0;51449:6;:22:::1;:::i;:::-;:36;;51440:76;;;::::0;-1:-1:-1;;;51440:76:0;;15949:2:1;51440:76:0::1;::::0;::::1;15931:21:1::0;15988:2;15968:18;;;15961:30;16027:27;16007:18;;;16000:55;16072:18;;51440:76:0::1;15747:349:1::0;51440:76:0::1;51523:20;;;51556:6;51552:169;51568:20:::0;;::::1;51552:169;;;51607:6;51603:111;51623:8;;51632:1;51623:11;;;;;;;:::i;:::-;;;;;;;51619:1;:15;51603:111;;;51651:53;51662:9;;51672:1;51662:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51676:8:::0;::::1;::::0;::::1;:::i;:::-;;;51651:53;;;;;;;;;;;;;-1:-1:-1::0;;;51651:53:0::1;;::::0;:9:::1;:53::i;:::-;51636:3;::::0;::::1;:::i;:::-;;;51603:111;;;-1:-1:-1::0;51590:3:0::1;::::0;::::1;:::i;:::-;;;51552:169;;;;51173:553;;51081:645:::0;;;;:::o;50554:497::-;50618:8;;;;50609:69;;;;-1:-1:-1;;;50609:69:0;;16303:2:1;50609:69:0;;;16285:21:1;16342:2;16322:18;;;16315:30;-1:-1:-1;;;16361:18:1;;;16354:48;16419:18;;50609:69:0;16101:342:1;50609:69:0;50706:9;;50694:8;:21;;50685:71;;;;-1:-1:-1;;;50685:71:0;;16650:2:1;50685:71:0;;;16632:21:1;16689:2;16669:18;;;16662:30;-1:-1:-1;;;16708:18:1;;;16701:44;16762:18;;50685:71:0;16448:338:1;50685:71:0;50793:8;50785:5;;:16;;;;:::i;:::-;50772:9;:29;;50763:69;;;;-1:-1:-1;;;50763:69:0;;16993:2:1;50763:69:0;;;16975:21:1;17032:2;17012:18;;;17005:30;17071:27;17051:18;;;17044:55;17116:18;;50763:69:0;16791:349:1;50763:69:0;50841:14;50858:13;48413:7;:14;;48325:110;50858:13;50908:10;;50841:30;;-1:-1:-1;50887:17:0;50896:8;50841:30;50887:17;:::i;:::-;:31;;50878:73;;;;-1:-1:-1;;;50878:73:0;;17347:2:1;50878:73:0;;;17329:21:1;17386:2;17366:18;;;17359:30;17425:29;17405:18;;;17398:57;17472:18;;50878:73:0;17145:351:1;50878:73:0;50962:6;50958:88;50978:8;50974:1;:12;50958:88;;;51001:37;51012:10;51024:8;;;;:::i;:::-;;;51001:37;;;;;;;;;;;;:9;:37::i;:::-;50988:3;;;:::i;:::-;;;50958:88;;37612:295;-1:-1:-1;;;;;37715:24:0;;753:10;37715:24;;37707:62;;;;-1:-1:-1;;;37707:62:0;;17703:2:1;37707:62:0;;;17685:21:1;17742:2;17722:18;;;17715:30;17781:27;17761:18;;;17754:55;17826:18;;37707:62:0;17501:349:1;37707:62:0;753:10;37782:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37782:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37782:53:0;;;;;;;;;;37851:48;;819:41:1;;;37782:42:0;;753:10;37851:48;;792:18:1;37851:48:0;;;;;;;37612:295;;:::o;51732:125::-;34178:10;34167:22;;;;:10;:22;;;;;;;;34159:52;;;;-1:-1:-1;;;34159:52:0;;;;;;;:::i;:::-;51800:8:::1;::::0;::::1;;:21;;::::0;::::1;;;51796:55;;51831:8;:20:::0;;;::::1;;-1:-1:-1::0;;51831:20:0;;::::1;;::::0;;51732:125;:::o;38877:328::-;39052:41;753:10;39085:7;39052:18;:41::i;:::-;39044:103;;;;-1:-1:-1;;;39044:103:0;;;;;;;:::i;:::-;39158:39;39172:4;39178:2;39182:7;39191:5;39158:13;:39::i;:::-;38877:328;;;;:::o;53035:266::-;53107:13;53137:16;53145:7;53137;:16::i;:::-;53129:76;;;;-1:-1:-1;;;53129:76:0;;18057:2:1;53129:76:0;;;18039:21:1;18096:2;18076:18;;;18069:30;18135:34;18115:18;;;18108:62;-1:-1:-1;;;18186:18:1;;;18179:45;18241:19;;53129:76:0;17855:411:1;53129:76:0;53243:13;53258:18;:7;:16;:18::i;:::-;53278:15;53226:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53212:83;;53035:266;;;:::o;2724:192::-;1870:7;1897:6;-1:-1:-1;;;;;1897:6:0;753:10;2044:23;2036:68;;;;-1:-1:-1;;;2036:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2813:22:0;::::1;2805:73;;;::::0;-1:-1:-1;;;2805:73:0;;20038:2:1;2805:73:0::1;::::0;::::1;20020:21:1::0;20077:2;20057:18;;;20050:30;20116:34;20096:18;;;20089:62;-1:-1:-1;;;20167:18:1;;;20160:36;20213:19;;2805:73:0::1;19836:402:1::0;2805:73:0::1;2889:19;2899:8;2889:9;:19::i;35351:305::-:0;35453:4;-1:-1:-1;;;;;;35490:40:0;;-1:-1:-1;;;35490:40:0;;:105;;-1:-1:-1;;;;;;;35547:48:0;;-1:-1:-1;;;35547:48:0;35490:105;:158;;;-1:-1:-1;;;;;;;;;;27011:40:0;;;35612:36;26902:157;40715:155;40814:7;:14;40780:4;;40804:24;;:58;;;;;40860:1;-1:-1:-1;;;;;40832:30:0;:7;40840;40832:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;40832:16:0;:30;;40797:65;40715:155;-1:-1:-1;;40715:155:0:o;44604:175::-;44679:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44679:29:0;-1:-1:-1;;;;;44679:29:0;;;;;;;;:24;;44733;44679;44733:15;:24::i;:::-;-1:-1:-1;;;;;44724:47:0;;;;;;;;;;;44604:175;;:::o;18156:317::-;18271:6;18246:21;:31;;18238:73;;;;-1:-1:-1;;;18238:73:0;;20445:2:1;18238:73:0;;;20427:21:1;20484:2;20464:18;;;20457:30;20523:31;20503:18;;;20496:59;20572:18;;18238:73:0;20243:353:1;18238:73:0;18325:12;18343:9;-1:-1:-1;;;;;18343:14:0;18365:6;18343:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18324:52;;;18395:7;18387:78;;;;-1:-1:-1;;;18387:78:0;;21013:2:1;18387:78:0;;;20995:21:1;21052:2;21032:18;;;21025:30;21091:34;21071:18;;;21064:62;21162:28;21142:18;;;21135:56;21208:19;;18387:78:0;20811:422:1;41037:349:0;41130:4;41155:16;41163:7;41155;:16::i;:::-;41147:73;;;;-1:-1:-1;;;41147:73:0;;21440:2:1;41147:73:0;;;21422:21:1;21479:2;21459:18;;;21452:30;21518:34;21498:18;;;21491:62;-1:-1:-1;;;21569:18:1;;;21562:42;21621:19;;41147:73:0;21238:408:1;41147:73:0;41231:13;41247:24;41263:7;41247:15;:24::i;:::-;41231:40;;41301:5;-1:-1:-1;;;;;41290:16:0;:7;-1:-1:-1;;;;;41290:16:0;;:51;;;;41334:7;-1:-1:-1;;;;;41310:31:0;:20;41322:7;41310:11;:20::i;:::-;-1:-1:-1;;;;;41310:31:0;;41290:51;:87;;;-1:-1:-1;;;;;;38099:25:0;;;38075:4;38099:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41345:32;41282:96;41037:349;-1:-1:-1;;;;41037:349:0:o;43969:517::-;44129:4;-1:-1:-1;;;;;44101:32:0;:24;44117:7;44101:15;:24::i;:::-;-1:-1:-1;;;;;44101:32:0;;44093:86;;;;-1:-1:-1;;;44093:86:0;;21853:2:1;44093:86:0;;;21835:21:1;21892:2;21872:18;;;21865:30;21931:34;21911:18;;;21904:62;-1:-1:-1;;;21982:18:1;;;21975:39;22031:19;;44093:86:0;21651:405:1;44093:86:0;-1:-1:-1;;;;;44198:16:0;;44190:65;;;;-1:-1:-1;;;44190:65:0;;22263:2:1;44190:65:0;;;22245:21:1;22302:2;22282:18;;;22275:30;22341:34;22321:18;;;22314:62;-1:-1:-1;;;22392:18:1;;;22385:34;22436:19;;44190:65:0;22061:400:1;44190:65:0;44268:39;44289:4;44295:2;44299:7;44268:20;:39::i;:::-;44372:29;44389:1;44393:7;44372:8;:29::i;:::-;44431:2;44412:7;44420;44412:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;44412:21:0;-1:-1:-1;;;;;44412:21:0;;;;;;44451:27;;44470:7;;44451:27;;;;;;;;;;44412:16;44451:27;43969:517;;;:::o;35720:418::-;35792:7;-1:-1:-1;;;;;35820:19:0;;35812:74;;;;-1:-1:-1;;;35812:74:0;;;;;;;:::i;:::-;35938:7;:14;35899:10;;;35963:119;35984:6;35980:1;:10;35963:119;;;36023:7;36031:1;36023:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36014:19:0;;;36023:10;;36014:19;36010:61;;;36050:7;;;:::i;:::-;;;36010:61;35992:3;;;:::i;:::-;;;35963:119;;;-1:-1:-1;36125:5:0;;35720:418;-1:-1:-1;;;35720:418:0:o;2924:173::-;2980:16;2999:6;;-1:-1:-1;;;;;3016:17:0;;;-1:-1:-1;;;;;;3016:17:0;;;;;;3049:40;;2999:6;;;;;;;3049:40;;2980:16;3049:40;2969:128;2924:173;:::o;42067:321::-;42197:18;42203:2;42207:7;42197:5;:18::i;:::-;42248:54;42279:1;42283:2;42287:7;42296:5;42248:22;:54::i;:::-;42226:154;;;;-1:-1:-1;;;42226:154:0;;;;;;;:::i;40087:315::-;40244:28;40254:4;40260:2;40264:7;40244:9;:28::i;:::-;40291:48;40314:4;40320:2;40324:7;40333:5;40291:22;:48::i;:::-;40283:111;;;;-1:-1:-1;;;40283:111:0;;;;;;;:::i;24418:723::-;24474:13;24695:10;24691:53;;-1:-1:-1;;24722:10:0;;;;;;;;;;;;-1:-1:-1;;;24722:10:0;;;;;24418:723::o;24691:53::-;24769:5;24754:12;24810:78;24817:9;;24810:78;;24843:8;;;;:::i;:::-;;-1:-1:-1;24866:10:0;;-1:-1:-1;24874:2:0;24866:10;;:::i;:::-;;;24810:78;;;24898:19;24930:6;24920:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24920:17:0;;24898:39;;24948:154;24955:10;;24948:154;;24982:11;24992:1;24982:11;;:::i;:::-;;-1:-1:-1;25051:10:0;25059:2;25051:5;:10;:::i;:::-;25038:24;;:2;:24;:::i;:::-;25025:39;;25008:6;25015;25008:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25008:56:0;;;;;;;;-1:-1:-1;25079:11:0;25088:2;25079:11;;:::i;:::-;;;24948:154;;53323:619;53455:12;-1:-1:-1;;;;;53491:12:0;;;;;:26;;;53513:4;-1:-1:-1;;;;;53507:10:0;:2;-1:-1:-1;;;;;53507:10:0;;53491:26;53487:364;;;-1:-1:-1;;;;;53581:15:0;;53567:11;53581:15;;;:9;:15;;;;;:22;;53612:210;53629:6;53625:1;:10;53612:210;;;-1:-1:-1;;;;;53657:15:0;;;;;;:9;:15;;;;;:18;;53679:7;;53657:15;53673:1;;53657:18;;;;;;:::i;:::-;;;;;;;;;:29;53653:160;;;-1:-1:-1;;;;;53722:15:0;;;;;;:9;:15;;;;;53738:10;53747:1;53738:6;:10;:::i;:::-;53722:27;;;;;;;;:::i;:::-;;;;;;;;;53701:9;:15;53711:4;-1:-1:-1;;;;;53701:15:0;-1:-1:-1;;;;;53701:15:0;;;;;;;;;;;;53717:1;53701:18;;;;;;;;:::i;:::-;;;;;;;;;;;;:48;;;;-1:-1:-1;;;;;53762:15:0;;;;:9;:15;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53796:5;;53653:160;53637:3;;;:::i;:::-;;;53612:210;;;-1:-1:-1;;53487:364:0;53871:4;-1:-1:-1;;;;;53863:12:0;:4;-1:-1:-1;;;;;53863:12:0;;:26;;;;53885:4;-1:-1:-1;;;;;53879:10:0;:2;-1:-1:-1;;;;;53879:10:0;;;53863:26;53859:78;;;-1:-1:-1;;;;;;53900:13:0;;;;;;;;:9;:13;;;;;;;:29;;;;;;;;;;;;;;-1:-1:-1;53323:619:0:o;42724:346::-;-1:-1:-1;;;;;42804:16:0;;42796:61;;;;-1:-1:-1;;;42796:61:0;;23336:2:1;42796:61:0;;;23318:21:1;;;23355:18;;;23348:30;23414:34;23394:18;;;23387:62;23466:18;;42796:61:0;23134:356:1;42796:61:0;42877:16;42885:7;42877;:16::i;:::-;42876:17;42868:58;;;;-1:-1:-1;;;42868:58:0;;23697:2:1;42868:58:0;;;23679:21:1;23736:2;23716:18;;;23709:30;23775;23755:18;;;23748:58;23823:18;;42868:58:0;23495:352:1;42868:58:0;42939:45;42968:1;42972:2;42976:7;42939:20;:45::i;:::-;42995:7;:16;;;;;;;-1:-1:-1;42995:16:0;;;;;;;-1:-1:-1;;;;;;42995:16:0;-1:-1:-1;;;;;42995:16:0;;;;;;;;43029:33;;43054:7;;-1:-1:-1;43029:33:0;;-1:-1:-1;;43029:33:0;42724:346;;:::o;45346:799::-;45501:4;-1:-1:-1;;;;;45522:13:0;;17157:20;17205:8;45518:620;;45558:72;;-1:-1:-1;;;45558:72:0;;-1:-1:-1;;;;;45558:36:0;;;;;:72;;753:10;;45609:4;;45615:7;;45624:5;;45558:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45558:72:0;;;;;;;;-1:-1:-1;;45558:72:0;;;;;;;;;;;;:::i;:::-;;;45554:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45800:13:0;;45796:272;;45843:60;;-1:-1:-1;;;45843:60:0;;;;;;;:::i;45796:272::-;46018:6;46012:13;46003:6;45999:2;45995:15;45988:38;45554:529;-1:-1:-1;;;;;;45681:51:0;-1:-1:-1;;;45681:51:0;;-1:-1:-1;45674:58:0;;45518:620;-1:-1:-1;46122:4:0;45346:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;:::-;663:5;429:245;-1:-1:-1;;;429:245:1:o;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:131::-;-1:-1:-1;;;;;1697:31:1;;1687:42;;1677:70;;1743:1;1740;1733:12;1758:247;1817:6;1870:2;1858:9;1849:7;1845:23;1841:32;1838:52;;;1886:1;1883;1876:12;1838:52;1925:9;1912:23;1944:31;1969:5;1944:31;:::i;2010:180::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;-1:-1:-1;2161:23:1;;2010:180;-1:-1:-1;2010:180:1:o;2403:315::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;2587:9;2574:23;2606:31;2631:5;2606:31;:::i;:::-;2656:5;2708:2;2693:18;;;;2680:32;;-1:-1:-1;;;2403:315:1:o;3165:456::-;3242:6;3250;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3366:9;3353:23;3385:31;3410:5;3385:31;:::i;:::-;3435:5;-1:-1:-1;3492:2:1;3477:18;;3464:32;3505:33;3464:32;3505:33;:::i;:::-;3165:456;;3557:7;;-1:-1:-1;;;3611:2:1;3596:18;;;;3583:32;;3165:456::o;3626:160::-;3691:20;;3747:13;;3740:21;3730:32;;3720:60;;3776:1;3773;3766:12;3791:315;3856:6;3864;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3972:9;3959:23;3991:31;4016:5;3991:31;:::i;:::-;4041:5;-1:-1:-1;4065:35:1;4096:2;4081:18;;4065:35;:::i;:::-;4055:45;;3791:315;;;;;:::o;4111:348::-;4163:8;4173:6;4227:3;4220:4;4212:6;4208:17;4204:27;4194:55;;4245:1;4242;4235:12;4194:55;-1:-1:-1;4268:20:1;;4311:18;4300:30;;4297:50;;;4343:1;4340;4333:12;4297:50;4380:4;4372:6;4368:17;4356:29;;4432:3;4425:4;4416:6;4408;4404:19;4400:30;4397:39;4394:59;;;4449:1;4446;4439:12;4394:59;4111:348;;;;;:::o;4464:721::-;4556:6;4564;4572;4580;4633:2;4621:9;4612:7;4608:23;4604:32;4601:52;;;4649:1;4646;4639:12;4601:52;4689:9;4676:23;4718:18;4759:2;4751:6;4748:14;4745:34;;;4775:1;4772;4765:12;4745:34;4814:59;4865:7;4856:6;4845:9;4841:22;4814:59;:::i;:::-;4892:8;;-1:-1:-1;4788:85:1;-1:-1:-1;4980:2:1;4965:18;;4952:32;;-1:-1:-1;4996:16:1;;;4993:36;;;5025:1;5022;5015:12;4993:36;;5064:61;5117:7;5106:8;5095:9;5091:24;5064:61;:::i;:::-;4464:721;;;;-1:-1:-1;5144:8:1;-1:-1:-1;;;;4464:721:1:o;5190:367::-;5253:8;5263:6;5317:3;5310:4;5302:6;5298:17;5294:27;5284:55;;5335:1;5332;5325:12;5284:55;-1:-1:-1;5358:20:1;;5401:18;5390:30;;5387:50;;;5433:1;5430;5423:12;5387:50;5470:4;5462:6;5458:17;5446:29;;5530:3;5523:4;5513:6;5510:1;5506:14;5498:6;5494:27;5490:38;5487:47;5484:67;;;5547:1;5544;5537:12;5562:773;5684:6;5692;5700;5708;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5817:9;5804:23;5846:18;5887:2;5879:6;5876:14;5873:34;;;5903:1;5900;5893:12;5873:34;5942:70;6004:7;5995:6;5984:9;5980:22;5942:70;:::i;:::-;6031:8;;-1:-1:-1;5916:96:1;-1:-1:-1;6119:2:1;6104:18;;6091:32;;-1:-1:-1;6135:16:1;;;6132:36;;;6164:1;6161;6154:12;6132:36;;6203:72;6267:7;6256:8;6245:9;6241:24;6203:72;:::i;6340:180::-;6396:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:52;;;6465:1;6462;6455:12;6417:52;6488:26;6504:9;6488:26;:::i;6525:127::-;6586:10;6581:3;6577:20;6574:1;6567:31;6617:4;6614:1;6607:15;6641:4;6638:1;6631:15;6657:1266;6752:6;6760;6768;6776;6829:3;6817:9;6808:7;6804:23;6800:33;6797:53;;;6846:1;6843;6836:12;6797:53;6885:9;6872:23;6904:31;6929:5;6904:31;:::i;:::-;6954:5;-1:-1:-1;7011:2:1;6996:18;;6983:32;7024:33;6983:32;7024:33;:::i;:::-;7076:7;-1:-1:-1;7130:2:1;7115:18;;7102:32;;-1:-1:-1;7185:2:1;7170:18;;7157:32;7208:18;7238:14;;;7235:34;;;7265:1;7262;7255:12;7235:34;7303:6;7292:9;7288:22;7278:32;;7348:7;7341:4;7337:2;7333:13;7329:27;7319:55;;7370:1;7367;7360:12;7319:55;7406:2;7393:16;7428:2;7424;7421:10;7418:36;;;7434:18;;:::i;:::-;7509:2;7503:9;7477:2;7563:13;;-1:-1:-1;;7559:22:1;;;7583:2;7555:31;7551:40;7539:53;;;7607:18;;;7627:22;;;7604:46;7601:72;;;7653:18;;:::i;:::-;7693:10;7689:2;7682:22;7728:2;7720:6;7713:18;7768:7;7763:2;7758;7754;7750:11;7746:20;7743:33;7740:53;;;7789:1;7786;7779:12;7740:53;7845:2;7840;7836;7832:11;7827:2;7819:6;7815:15;7802:46;7890:1;7885:2;7880;7872:6;7868:15;7864:24;7857:35;7911:6;7901:16;;;;;;;6657:1266;;;;;;;:::o;7928:388::-;7996:6;8004;8057:2;8045:9;8036:7;8032:23;8028:32;8025:52;;;8073:1;8070;8063:12;8025:52;8112:9;8099:23;8131:31;8156:5;8131:31;:::i;:::-;8181:5;-1:-1:-1;8238:2:1;8223:18;;8210:32;8251:33;8210:32;8251:33;:::i;:::-;8303:7;8293:17;;;7928:388;;;;;:::o;8321:380::-;8400:1;8396:12;;;;8443;;;8464:61;;8518:4;8510:6;8506:17;8496:27;;8464:61;8571:2;8563:6;8560:14;8540:18;8537:38;8534:161;;;8617:10;8612:3;8608:20;8605:1;8598:31;8652:4;8649:1;8642:15;8680:4;8677:1;8670:15;8534:161;;8321:380;;;:::o;8706:356::-;8908:2;8890:21;;;8927:18;;;8920:30;8986:34;8981:2;8966:18;;8959:62;9053:2;9038:18;;8706:356::o;10714:127::-;10775:10;10770:3;10766:20;10763:1;10756:31;10806:4;10803:1;10796:15;10830:4;10827:1;10820:15;10846:128;10886:3;10917:1;10913:6;10910:1;10907:13;10904:39;;;10923:18;;:::i;:::-;-1:-1:-1;10959:9:1;;10846:128::o;10979:168::-;11019:7;11085:1;11081;11077:6;11073:14;11070:1;11067:21;11062:1;11055:9;11048:17;11044:45;11041:71;;;11092:18;;:::i;:::-;-1:-1:-1;11132:9:1;;10979:168::o;11152:127::-;11213:10;11208:3;11204:20;11201:1;11194:31;11244:4;11241:1;11234:15;11268:4;11265:1;11258:15;11284:120;11324:1;11350;11340:35;;11355:18;;:::i;:::-;-1:-1:-1;11389:9:1;;11284:120::o;11409:125::-;11449:4;11477:1;11474;11471:8;11468:34;;;11482:18;;:::i;:::-;-1:-1:-1;11519:9:1;;11409:125::o;12238:413::-;12440:2;12422:21;;;12479:2;12459:18;;;12452:30;12518:34;12513:2;12498:18;;12491:62;-1:-1:-1;;;12584:2:1;12569:18;;12562:47;12641:3;12626:19;;12238:413::o;13068:127::-;13129:10;13124:3;13120:20;13117:1;13110:31;13160:4;13157:1;13150:15;13184:4;13181:1;13174:15;14023:340;14225:2;14207:21;;;14264:2;14244:18;;;14237:30;-1:-1:-1;;;14298:2:1;14283:18;;14276:46;14354:2;14339:18;;14023:340::o;14783:406::-;14985:2;14967:21;;;15024:2;15004:18;;;14997:30;15063:34;15058:2;15043:18;;15036:62;-1:-1:-1;;;15129:2:1;15114:18;;15107:40;15179:3;15164:19;;14783:406::o;15607:135::-;15646:3;-1:-1:-1;;15667:17:1;;15664:43;;;15687:18;;:::i;:::-;-1:-1:-1;15734:1:1;15723:13;;15607:135::o;18397:973::-;18482:12;;18447:3;;18537:1;18557:18;;;;18610;;;;18637:61;;18691:4;18683:6;18679:17;18669:27;;18637:61;18717:2;18765;18757:6;18754:14;18734:18;18731:38;18728:161;;;18811:10;18806:3;18802:20;18799:1;18792:31;18846:4;18843:1;18836:15;18874:4;18871:1;18864:15;18728:161;18905:18;18932:104;;;;19050:1;19045:319;;;;18898:466;;18932:104;-1:-1:-1;;18965:24:1;;18953:37;;19010:16;;;;-1:-1:-1;18932:104:1;;19045:319;18344:1;18337:14;;;18381:4;18368:18;;19139:1;19153:165;19167:6;19164:1;19161:13;19153:165;;;19245:14;;19232:11;;;19225:35;19288:16;;;;19182:10;;19153:165;;;19157:3;;19347:6;19342:3;19338:16;19331:23;;18898:466;;;;;;;18397:973;;;;:::o;19375:456::-;19596:3;19624:38;19658:3;19650:6;19624:38;:::i;:::-;19691:6;19685:13;19707:52;19752:6;19748:2;19741:4;19733:6;19729:17;19707:52;:::i;:::-;19775:50;19817:6;19813:2;19809:15;19801:6;19775:50;:::i;:::-;19768:57;19375:456;-1:-1:-1;;;;;;;19375:456:1:o;22466:414::-;22668:2;22650:21;;;22707:2;22687:18;;;22680:30;22746:34;22741:2;22726:18;;22719:62;-1:-1:-1;;;22812:2:1;22797:18;;22790:48;22870:3;22855:19;;22466:414::o;22885:112::-;22917:1;22943;22933:35;;22948:18;;:::i;:::-;-1:-1:-1;22982:9:1;;22885:112::o;23002:127::-;23063:10;23058:3;23054:20;23051:1;23044:31;23094:4;23091:1;23084:15;23118:4;23115:1;23108:15;23852:489;-1:-1:-1;;;;;24121:15:1;;;24103:34;;24173:15;;24168:2;24153:18;;24146:43;24220:2;24205:18;;24198:34;;;24268:3;24263:2;24248:18;;24241:31;;;24046:4;;24289:46;;24315:19;;24307:6;24289:46;:::i;:::-;24281:54;23852:489;-1:-1:-1;;;;;;23852:489:1:o;24346:249::-;24415:6;24468:2;24456:9;24447:7;24443:23;24439:32;24436:52;;;24484:1;24481;24474:12;24436:52;24516:9;24510:16;24535:30;24559:5;24535:30;:::i

Swarm Source

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