ETH Price: $2,681.22 (+1.94%)
Gas: 1 Gwei

Secret Society of Odd Fellows (SSOF)
 

Overview

TokenID

101

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
SecretSocietyofOddFellows

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-12
*/

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;

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

library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

/**
 * @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;
}

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

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

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

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

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




contract SecretSocietyofOddFellows is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint256;
  string private baseURI;
  address public collaborator;
  bool public isSaleStarted=false;
  string public notRevealedUri;
  uint256 public preSaleCost = 0.07 ether;
  uint256 public generalSaleCost = 0.08 ether;
  uint256 public maxSupply = 10011;
  uint256 public nftPerAddressLimitOnPreSale = 25;
  uint256 public nftPerAddressLimitOnGeneralSale = 25;
  bool public paused = false;
  bool public revealed = false;
  uint256 public generalSaleTime;
  mapping(address => uint256) public addressMintedPresaleBalance;
  mapping(address => uint256) public addressMintedGeneralsaleeBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri,
    address _collaborator
  ) ERC721(_name, _symbol) payable{
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    collaborator = _collaborator;
  }

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


    function mintAsOwner(uint _mintAmount) public {
        if(collaborator != msg.sender && owner() != msg.sender) revert("Caller is not the owner or collaborator");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Exceeds maximum Originators supply");
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint _mintAmount) public payable {
        require(isSaleStarted,"sale is not started");
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Exceeds maximum Originators supply");       
        
        if(block.timestamp < generalSaleTime) {
            require(msg.value >= preSaleCost * _mintAmount, "Insufficient funds");
            uint256 ownerMintedCount = addressMintedPresaleBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimitOnPreSale, "Max NFTs per address exceeded for pre-sale.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                addressMintedPresaleBalance[msg.sender]++;
                _safeMint(msg.sender, supply + i);
            }
        }
        else{
            
            uint256 ownerMintedCount = addressMintedGeneralsaleeBalance[msg.sender];
            require(msg.value >= generalSaleCost * _mintAmount, "Insufficient funds");
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimitOnGeneralSale, "Max NFTs per address exceeded for general-sale.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                addressMintedGeneralsaleeBalance[msg.sender]++;
                _safeMint(msg.sender, supply + i);
            }
        }
    }

  function walletOfOwner(address _owner) public view returns (uint256[] memory){
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function getMintFees(uint _mintAmount) public view returns(uint256) {
        if(block.timestamp < generalSaleTime) {
            return preSaleCost * _mintAmount;
        }else{
            return generalSaleCost * _mintAmount;
        }
  }
    
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory){
      
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
    
    if(revealed == false) {
        return string(abi.encodePacked(notRevealedUri, tokenId.toString()));
    }

    string memory currentBaseURI = _baseURI();
    return string(abi.encodePacked(currentBaseURI, tokenId.toString()));
  }

  function  getMintedCount(address user) public view returns(uint256) {
      return addressMintedGeneralsaleeBalance[user].add(addressMintedPresaleBalance[user]);
  }

  function reveal(bool _reveal) public onlyOwner {
      revealed = _reveal;
  }
  
  function startPresale() public onlyOwner {
      isSaleStarted = true;
      generalSaleTime = block.timestamp + 72 hours;
  }
  
  function stopPresale() public onlyOwner {
      isSaleStarted=false;
      generalSaleTime = 0;
  }

  function startGeneralsale() public onlyOwner {
      isSaleStarted = true;
  }


  function stopGeneralsale() public onlyOwner {
      isSaleStarted = false;
  }
  
  function setGeneralSaleNftcount(uint256 _limit) public onlyOwner {
     nftPerAddressLimitOnGeneralSale = _limit;
  }
  
  function setPreSaleNftcount(uint256 _limit) public onlyOwner {
    nftPerAddressLimitOnPreSale = _limit;
  }
  
  function setGeneralSaleCost(uint256 _newCost) public onlyOwner {
    generalSaleCost = _newCost;
  }

  function setPresaleCost(uint256 _newCost) public onlyOwner {
    preSaleCost = _newCost;
  }


  function setCollaborator(address _collaborator) public onlyOwner {
    collaborator = _collaborator;
  }



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

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"_collaborator","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedGeneralsaleeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedPresaleBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collaborator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalSaleTime","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":"_mintAmount","type":"uint256"}],"name":"getMintFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitOnGeneralSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitOnPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collaborator","type":"address"}],"name":"setCollaborator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setGeneralSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setGeneralSaleNftcount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPreSaleNftcount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startGeneralsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopGeneralsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040819052600c805460ff60a01b1916905566f8b0a10e470000600e5567011c37937e080000600f5561271b601055601960118190556012556013805461ffff19169055620030963881900390819083398101604081905262000064916200035b565b8451859085906200007d906000906020850190620001fe565b50805162000093906001906020840190620001fe565b5050506000620000a86200013760201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000101836200013b565b6200010c82620001a3565b600c80546001600160a01b0319166001600160a01b0392909216919091179055506200048b92505050565b3390565b600a546001600160a01b031633146200018a5760405162461bcd60e51b815260206004820181905260248201526000805160206200307683398151915260448201526064015b60405180910390fd5b80516200019f90600b906020840190620001fe565b5050565b600a546001600160a01b03163314620001ee5760405162461bcd60e51b8152602060048201819052602482015260008051602062003076833981519152604482015260640162000181565b80516200019f90600d9060208401905b8280546200020c9062000438565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b600082601f830112620002b657600080fd5b81516001600160401b0380821115620002d357620002d362000475565b604051601f8301601f19908116603f01168101908282118183101715620002fe57620002fe62000475565b816040528381526020925086838588010111156200031b57600080fd5b600091505b838210156200033f578582018301518183018401529082019062000320565b83821115620003515760008385830101525b9695505050505050565b600080600080600060a086880312156200037457600080fd5b85516001600160401b03808211156200038c57600080fd5b6200039a89838a01620002a4565b96506020880151915080821115620003b157600080fd5b620003bf89838a01620002a4565b95506040880151915080821115620003d657600080fd5b620003e489838a01620002a4565b94506060880151915080821115620003fb57600080fd5b506200040a88828901620002a4565b608088015190935090506001600160a01b03811681146200042a57600080fd5b809150509295509295909350565b600181811c908216806200044d57607f821691505b602082108114156200046f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bdb806200049b6000396000f3fe6080604052600436106102e45760003560e01c80635c975abb11610190578063b28a2c57116100dc578063d250c37411610095578063ec9efd2e1161006f578063ec9efd2e146108ab578063f2c4ce1e146108c0578063f2fde38b146108e0578063f450fb891461090057600080fd5b8063d250c37414610836578063d5abeb011461084c578063e985e9c51461086257600080fd5b8063b28a2c571461078b578063b580ae6b146107ab578063b5f0a357146107c0578063b88d4fde146107e0578063c87b56dd14610800578063cc9ff9c61461082057600080fd5b80638da5cb5b1161014957806395d89b411161012357806395d89b411461072357806397d6696b14610738578063a0712d6814610758578063a22cb4651461076b57600080fd5b80638da5cb5b146106c55780638fdcf942146106e3578063940cd05b1461070357600080fd5b80635c975abb146106205780636352211e1461063a57806367f141331461065a57806370a082311461067a578063715018a61461069a578063762b9ef7146106af57600080fd5b80632afa1da21161024f5780634232752b116102085780634e280492116101e25780634e280492146105ab5780634f6ccce7146105c157806351830227146105e157806355f804b31461060057600080fd5b80634232752b1461053157806342842e0e1461055e578063438b63001461057e57600080fd5b80632afa1da21461046e5780632f745c591461049b5780633604f93f146104bb5780633a669913146104db5780633b80b7d3146104fb5780633ccfd60b1461051c57600080fd5b8063081c8c44116102a1578063081c8c44146103cf578063095ea7b3146103e457806318160ddd146104045780631ad2ad1a1461042357806323b872dd1461043857806329efc9dd1461045857600080fd5b806301ffc9a7146102e957806302329a291461031e57806304c98b2b1461034057806306fdde03146103555780630734458014610377578063081812fc146103af575b600080fd5b3480156102f557600080fd5b506103096103043660046126be565b610920565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e6103393660046126a3565b61094b565b005b34801561034c57600080fd5b5061033e610991565b34801561036157600080fd5b5061036a6109e0565b60405161031591906128f9565b34801561038357600080fd5b50600c54610397906001600160a01b031681565b6040516001600160a01b039091168152602001610315565b3480156103bb57600080fd5b506103976103ca366004612741565b610a72565b3480156103db57600080fd5b5061036a610b07565b3480156103f057600080fd5b5061033e6103ff366004612679565b610b95565b34801561041057600080fd5b506008545b604051908152602001610315565b34801561042f57600080fd5b5061033e610cab565b34801561044457600080fd5b5061033e610453366004612597565b610ce9565b34801561046457600080fd5b5061041560145481565b34801561047a57600080fd5b50610415610489366004612549565b60166020526000908152604090205481565b3480156104a757600080fd5b506104156104b6366004612679565b610d1a565b3480156104c757600080fd5b5061033e6104d6366004612741565b610db0565b3480156104e757600080fd5b5061033e6104f6366004612549565b610ddf565b34801561050757600080fd5b50600c5461030990600160a01b900460ff1681565b34801561052857600080fd5b5061033e610e2b565b34801561053d57600080fd5b5061041561054c366004612549565b60156020526000908152604090205481565b34801561056a57600080fd5b5061033e610579366004612597565b610e88565b34801561058a57600080fd5b5061059e610599366004612549565b610ea3565b60405161031591906128b5565b3480156105b757600080fd5b5061041560125481565b3480156105cd57600080fd5b506104156105dc366004612741565b610f45565b3480156105ed57600080fd5b5060135461030990610100900460ff1681565b34801561060c57600080fd5b5061033e61061b3660046126f8565b610fd8565b34801561062c57600080fd5b506013546103099060ff1681565b34801561064657600080fd5b50610397610655366004612741565b611015565b34801561066657600080fd5b50610415610675366004612741565b61108c565b34801561068657600080fd5b50610415610695366004612549565b6110b9565b3480156106a657600080fd5b5061033e611140565b3480156106bb57600080fd5b5061041560115481565b3480156106d157600080fd5b50600a546001600160a01b0316610397565b3480156106ef57600080fd5b5061033e6106fe366004612741565b6111b4565b34801561070f57600080fd5b5061033e61071e3660046126a3565b6111e3565b34801561072f57600080fd5b5061036a611227565b34801561074457600080fd5b50610415610753366004612549565b611236565b61033e610766366004612741565b611263565b34801561077757600080fd5b5061033e61078636600461264f565b611588565b34801561079757600080fd5b5061033e6107a6366004612741565b61164d565b3480156107b757600080fd5b5061033e611742565b3480156107cc57600080fd5b5061033e6107db366004612741565b61177b565b3480156107ec57600080fd5b5061033e6107fb3660046125d3565b6117aa565b34801561080c57600080fd5b5061036a61081b366004612741565b6117dc565b34801561082c57600080fd5b50610415600e5481565b34801561084257600080fd5b50610415600f5481565b34801561085857600080fd5b5061041560105481565b34801561086e57600080fd5b5061030961087d366004612564565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108b757600080fd5b5061033e6118da565b3480156108cc57600080fd5b5061033e6108db3660046126f8565b611919565b3480156108ec57600080fd5b5061033e6108fb366004612549565b611956565b34801561090c57600080fd5b5061033e61091b366004612741565b611a41565b60006001600160e01b0319821663780e9d6360e01b1480610945575061094582611a70565b92915050565b600a546001600160a01b0316331461097e5760405162461bcd60e51b8152600401610975906129a0565b60405180910390fd5b6013805460ff1916911515919091179055565b600a546001600160a01b031633146109bb5760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b1916600160a01b1790556109db426203f480612a26565b601455565b6060600080546109ef90612ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90612ab4565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aeb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b506000908152600460205260409020546001600160a01b031690565b600d8054610b1490612ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090612ab4565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b505050505081565b6000610ba082611015565b9050806001600160a01b0316836001600160a01b03161415610c0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610975565b336001600160a01b0382161480610c2a5750610c2a813361087d565b610c9c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610975565b610ca68383611ac0565b505050565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b191690556000601455565b610cf33382611b2e565b610d0f5760405162461bcd60e51b8152600401610975906129d5565b610ca6838383611c25565b6000610d25836110b9565b8210610d875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610975565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dda5760405162461bcd60e51b8152600401610975906129a0565b601155565b600a546001600160a01b03163314610e095760405162461bcd60e51b8152600401610975906129a0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610e555760405162461bcd60e51b8152600401610975906129a0565b6040514790339082156108fc029083906000818181858888f19350505050158015610e84573d6000803e3d6000fd5b5050565b610ca6838383604051806020016040528060008152506117aa565b60606000610eb0836110b9565b905060008167ffffffffffffffff811115610ecd57610ecd612b76565b604051908082528060200260200182016040528015610ef6578160200160208202803683370190505b50905060005b82811015610f3d57610f0e8582610d1a565b828281518110610f2057610f20612b60565b602090810291909101015280610f3581612aef565b915050610efc565b509392505050565b6000610f5060085490565b8210610fb35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610975565b60088281548110610fc657610fc6612b60565b90600052602060002001549050919050565b600a546001600160a01b031633146110025760405162461bcd60e51b8152600401610975906129a0565b8051610e8490600b906020840190612413565b6000818152600260205260408120546001600160a01b0316806109455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610975565b60006014544210156110a65781600e546109459190612a52565b81600f546109459190612a52565b919050565b60006001600160a01b0382166111245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610975565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461116a5760405162461bcd60e51b8152600401610975906129a0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111de5760405162461bcd60e51b8152600401610975906129a0565b600e55565b600a546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610975906129a0565b601380549115156101000261ff0019909216919091179055565b6060600180546109ef90612ab4565b6001600160a01b038116600090815260156020908152604080832054601690925282205461094591611dd0565b600c54600160a01b900460ff166112b25760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610975565b60135460ff16156112fe5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610975565b600061130960085490565b6010549091506113198383612a26565b11156113375760405162461bcd60e51b81526004016109759061295e565b6014544210156114685781600e5461134f9190612a52565b3410156113935760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610975565b336000908152601560205260409020546011546113b08483612a26565b11156114125760405162461bcd60e51b815260206004820152602b60248201527f4d6178204e46547320706572206164647265737320657863656564656420666f60448201526a391038393296b9b0b6329760a91b6064820152608401610975565b60015b8381116114625733600090815260156020526040812080549161143783612aef565b9091555061145090503361144b8386612a26565b611de3565b8061145a81612aef565b915050611415565b50505050565b33600090815260166020526040902054600f54611486908490612a52565b3410156114ca5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610975565b6012546114d78483612a26565b111561153d5760405162461bcd60e51b815260206004820152602f60248201527f4d6178204e46547320706572206164647265737320657863656564656420666f60448201526e391033b2b732b930b616b9b0b6329760891b6064820152608401610975565b60015b8381116114625733600090815260166020526040812080549161156283612aef565b9091555061157690503361144b8386612a26565b8061158081612aef565b915050611540565b6001600160a01b0382163314156115e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610975565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b03163314801590611682575033611676600a546001600160a01b031690565b6001600160a01b031614155b156116df5760405162461bcd60e51b815260206004820152602760248201527f43616c6c6572206973206e6f7420746865206f776e6572206f7220636f6c6c616044820152663137b930ba37b960c91b6064820152608401610975565b60006116ea60085490565b6010549091506116fa8383612a26565b11156117185760405162461bcd60e51b81526004016109759061295e565b60015b828111610ca6576117303361144b8385612a26565b8061173a81612aef565b91505061171b565b600a546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b19169055565b600a546001600160a01b031633146117a55760405162461bcd60e51b8152600401610975906129a0565b600f55565b6117b43383611b2e565b6117d05760405162461bcd60e51b8152600401610975906129d5565b61146284848484611dfd565b6000818152600260205260409020546060906001600160a01b031661185b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610975565b601354610100900460ff1661189c57600d61187583611e30565b6040516020016118869291906127d1565b6040516020818303038152906040529050919050565b60006118a6611f2e565b9050806118b284611e30565b6040516020016118c39291906127a2565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146119045760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b1916600160a01b179055565b600a546001600160a01b031633146119435760405162461bcd60e51b8152600401610975906129a0565b8051610e8490600d906020840190612413565b600a546001600160a01b031633146119805760405162461bcd60e51b8152600401610975906129a0565b6001600160a01b0381166119e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610975565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611a6b5760405162461bcd60e51b8152600401610975906129a0565b601255565b60006001600160e01b031982166380ac58cd60e01b1480611aa157506001600160e01b03198216635b5e139f60e01b145b8061094557506301ffc9a760e01b6001600160e01b0319831614610945565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611af582611015565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ba75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b6000611bb283611015565b9050806001600160a01b0316846001600160a01b03161480611bed5750836001600160a01b0316611be284610a72565b6001600160a01b0316145b80611c1d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3882611015565b6001600160a01b031614611ca05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610975565b6001600160a01b038216611d025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b611d0d838383611f3d565b611d18600082611ac0565b6001600160a01b0383166000908152600360205260408120805460019290611d41908490612a71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6f908490612a26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ddc8284612a26565b9392505050565b610e84828260405180602001604052806000815250611ff5565b611e08848484611c25565b611e1484848484612028565b6114625760405162461bcd60e51b81526004016109759061290c565b606081611e545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7e5780611e6881612aef565b9150611e779050600a83612a3e565b9150611e58565b60008167ffffffffffffffff811115611e9957611e99612b76565b6040519080825280601f01601f191660200182016040528015611ec3576020820181803683370190505b5090505b8415611c1d57611ed8600183612a71565b9150611ee5600a86612b0a565b611ef0906030612a26565b60f81b818381518110611f0557611f05612b60565b60200101906001600160f81b031916908160001a905350611f27600a86612a3e565b9450611ec7565b6060600b80546109ef90612ab4565b6001600160a01b038316611f9857611f9381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fbb565b816001600160a01b0316836001600160a01b031614611fbb57611fbb8382612135565b6001600160a01b038216611fd257610ca6816121d2565b826001600160a01b0316826001600160a01b031614610ca657610ca68282612281565b611fff83836122c5565b61200c6000848484612028565b610ca65760405162461bcd60e51b81526004016109759061290c565b60006001600160a01b0384163b1561212a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206c903390899088908890600401612878565b602060405180830381600087803b15801561208657600080fd5b505af19250505080156120b6575060408051601f3d908101601f191682019092526120b3918101906126db565b60015b612110573d8080156120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5080516121085760405162461bcd60e51b81526004016109759061290c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c1d565b506001949350505050565b60006001612142846110b9565b61214c9190612a71565b60008381526007602052604090205490915080821461219f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e490600190612a71565b6000838152600960205260408120546008805493945090928490811061220c5761220c612b60565b90600052602060002001549050806008838154811061222d5761222d612b60565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226557612265612b4a565b6001900381819060005260206000200160009055905550505050565b600061228c836110b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661231b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610975565b6000818152600260205260409020546001600160a01b0316156123805760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610975565b61238c60008383611f3d565b6001600160a01b03821660009081526003602052604081208054600192906123b5908490612a26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241f90612ab4565b90600052602060002090601f0160209004810192826124415760008555612487565b82601f1061245a57805160ff1916838001178555612487565b82800160010185558215612487579182015b8281111561248757825182559160200191906001019061246c565b50612493929150612497565b5090565b5b808211156124935760008155600101612498565b600067ffffffffffffffff808411156124c7576124c7612b76565b604051601f8501601f19908116603f011681019082821181831017156124ef576124ef612b76565b8160405280935085815286868601111561250857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146110b457600080fd5b803580151581146110b457600080fd5b60006020828403121561255b57600080fd5b611ddc82612522565b6000806040838503121561257757600080fd5b61258083612522565b915061258e60208401612522565b90509250929050565b6000806000606084860312156125ac57600080fd5b6125b584612522565b92506125c360208501612522565b9150604084013590509250925092565b600080600080608085870312156125e957600080fd5b6125f285612522565b935061260060208601612522565b925060408501359150606085013567ffffffffffffffff81111561262357600080fd5b8501601f8101871361263457600080fd5b612643878235602084016124ac565b91505092959194509250565b6000806040838503121561266257600080fd5b61266b83612522565b915061258e60208401612539565b6000806040838503121561268c57600080fd5b61269583612522565b946020939093013593505050565b6000602082840312156126b557600080fd5b611ddc82612539565b6000602082840312156126d057600080fd5b8135611ddc81612b8c565b6000602082840312156126ed57600080fd5b8151611ddc81612b8c565b60006020828403121561270a57600080fd5b813567ffffffffffffffff81111561272157600080fd5b8201601f8101841361273257600080fd5b611c1d848235602084016124ac565b60006020828403121561275357600080fd5b5035919050565b60008151808452612772816020860160208601612a88565b601f01601f19169290920160200192915050565b60008151612798818560208601612a88565b9290920192915050565b600083516127b4818460208801612a88565b8351908301906127c8818360208801612a88565b01949350505050565b600080845481600182811c9150808316806127ed57607f831692505b602080841082141561280d57634e487b7160e01b86526022600452602486fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008b81526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505061286f8185612786565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ab9083018461275a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ed578351835292840192918401916001016128d1565b50909695505050505050565b602081526000611ddc602083018461275a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a3957612a39612b1e565b500190565b600082612a4d57612a4d612b34565b500490565b6000816000190483118215151615612a6c57612a6c612b1e565b500290565b600082821015612a8357612a83612b1e565b500390565b60005b83811015612aa3578181015183820152602001612a8b565b838111156114625750506000910152565b600181811c90821680612ac857607f821691505b60208210811415612ae957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0357612b03612b1e565b5060010190565b600082612b1957612b19612b34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ba257600080fd5b5056fea2646970667358221220adb38dc42b4af16ddaa72ea62db868c73173d18e35b3822dede0e2c585ea032964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000005f5cfa9e0c658425a245834da58b3e35d28c50e6000000000000000000000000000000000000000000000000000000000000001d53656372657420536f6369657479206f66204f64642046656c6c6f7773000000000000000000000000000000000000000000000000000000000000000000000453534f4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f72657665616c2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f6e6f7472657665616c2f6d657461646174612f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80635c975abb11610190578063b28a2c57116100dc578063d250c37411610095578063ec9efd2e1161006f578063ec9efd2e146108ab578063f2c4ce1e146108c0578063f2fde38b146108e0578063f450fb891461090057600080fd5b8063d250c37414610836578063d5abeb011461084c578063e985e9c51461086257600080fd5b8063b28a2c571461078b578063b580ae6b146107ab578063b5f0a357146107c0578063b88d4fde146107e0578063c87b56dd14610800578063cc9ff9c61461082057600080fd5b80638da5cb5b1161014957806395d89b411161012357806395d89b411461072357806397d6696b14610738578063a0712d6814610758578063a22cb4651461076b57600080fd5b80638da5cb5b146106c55780638fdcf942146106e3578063940cd05b1461070357600080fd5b80635c975abb146106205780636352211e1461063a57806367f141331461065a57806370a082311461067a578063715018a61461069a578063762b9ef7146106af57600080fd5b80632afa1da21161024f5780634232752b116102085780634e280492116101e25780634e280492146105ab5780634f6ccce7146105c157806351830227146105e157806355f804b31461060057600080fd5b80634232752b1461053157806342842e0e1461055e578063438b63001461057e57600080fd5b80632afa1da21461046e5780632f745c591461049b5780633604f93f146104bb5780633a669913146104db5780633b80b7d3146104fb5780633ccfd60b1461051c57600080fd5b8063081c8c44116102a1578063081c8c44146103cf578063095ea7b3146103e457806318160ddd146104045780631ad2ad1a1461042357806323b872dd1461043857806329efc9dd1461045857600080fd5b806301ffc9a7146102e957806302329a291461031e57806304c98b2b1461034057806306fdde03146103555780630734458014610377578063081812fc146103af575b600080fd5b3480156102f557600080fd5b506103096103043660046126be565b610920565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e6103393660046126a3565b61094b565b005b34801561034c57600080fd5b5061033e610991565b34801561036157600080fd5b5061036a6109e0565b60405161031591906128f9565b34801561038357600080fd5b50600c54610397906001600160a01b031681565b6040516001600160a01b039091168152602001610315565b3480156103bb57600080fd5b506103976103ca366004612741565b610a72565b3480156103db57600080fd5b5061036a610b07565b3480156103f057600080fd5b5061033e6103ff366004612679565b610b95565b34801561041057600080fd5b506008545b604051908152602001610315565b34801561042f57600080fd5b5061033e610cab565b34801561044457600080fd5b5061033e610453366004612597565b610ce9565b34801561046457600080fd5b5061041560145481565b34801561047a57600080fd5b50610415610489366004612549565b60166020526000908152604090205481565b3480156104a757600080fd5b506104156104b6366004612679565b610d1a565b3480156104c757600080fd5b5061033e6104d6366004612741565b610db0565b3480156104e757600080fd5b5061033e6104f6366004612549565b610ddf565b34801561050757600080fd5b50600c5461030990600160a01b900460ff1681565b34801561052857600080fd5b5061033e610e2b565b34801561053d57600080fd5b5061041561054c366004612549565b60156020526000908152604090205481565b34801561056a57600080fd5b5061033e610579366004612597565b610e88565b34801561058a57600080fd5b5061059e610599366004612549565b610ea3565b60405161031591906128b5565b3480156105b757600080fd5b5061041560125481565b3480156105cd57600080fd5b506104156105dc366004612741565b610f45565b3480156105ed57600080fd5b5060135461030990610100900460ff1681565b34801561060c57600080fd5b5061033e61061b3660046126f8565b610fd8565b34801561062c57600080fd5b506013546103099060ff1681565b34801561064657600080fd5b50610397610655366004612741565b611015565b34801561066657600080fd5b50610415610675366004612741565b61108c565b34801561068657600080fd5b50610415610695366004612549565b6110b9565b3480156106a657600080fd5b5061033e611140565b3480156106bb57600080fd5b5061041560115481565b3480156106d157600080fd5b50600a546001600160a01b0316610397565b3480156106ef57600080fd5b5061033e6106fe366004612741565b6111b4565b34801561070f57600080fd5b5061033e61071e3660046126a3565b6111e3565b34801561072f57600080fd5b5061036a611227565b34801561074457600080fd5b50610415610753366004612549565b611236565b61033e610766366004612741565b611263565b34801561077757600080fd5b5061033e61078636600461264f565b611588565b34801561079757600080fd5b5061033e6107a6366004612741565b61164d565b3480156107b757600080fd5b5061033e611742565b3480156107cc57600080fd5b5061033e6107db366004612741565b61177b565b3480156107ec57600080fd5b5061033e6107fb3660046125d3565b6117aa565b34801561080c57600080fd5b5061036a61081b366004612741565b6117dc565b34801561082c57600080fd5b50610415600e5481565b34801561084257600080fd5b50610415600f5481565b34801561085857600080fd5b5061041560105481565b34801561086e57600080fd5b5061030961087d366004612564565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108b757600080fd5b5061033e6118da565b3480156108cc57600080fd5b5061033e6108db3660046126f8565b611919565b3480156108ec57600080fd5b5061033e6108fb366004612549565b611956565b34801561090c57600080fd5b5061033e61091b366004612741565b611a41565b60006001600160e01b0319821663780e9d6360e01b1480610945575061094582611a70565b92915050565b600a546001600160a01b0316331461097e5760405162461bcd60e51b8152600401610975906129a0565b60405180910390fd5b6013805460ff1916911515919091179055565b600a546001600160a01b031633146109bb5760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b1916600160a01b1790556109db426203f480612a26565b601455565b6060600080546109ef90612ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90612ab4565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aeb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b506000908152600460205260409020546001600160a01b031690565b600d8054610b1490612ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090612ab4565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b505050505081565b6000610ba082611015565b9050806001600160a01b0316836001600160a01b03161415610c0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610975565b336001600160a01b0382161480610c2a5750610c2a813361087d565b610c9c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610975565b610ca68383611ac0565b505050565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b191690556000601455565b610cf33382611b2e565b610d0f5760405162461bcd60e51b8152600401610975906129d5565b610ca6838383611c25565b6000610d25836110b9565b8210610d875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610975565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dda5760405162461bcd60e51b8152600401610975906129a0565b601155565b600a546001600160a01b03163314610e095760405162461bcd60e51b8152600401610975906129a0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610e555760405162461bcd60e51b8152600401610975906129a0565b6040514790339082156108fc029083906000818181858888f19350505050158015610e84573d6000803e3d6000fd5b5050565b610ca6838383604051806020016040528060008152506117aa565b60606000610eb0836110b9565b905060008167ffffffffffffffff811115610ecd57610ecd612b76565b604051908082528060200260200182016040528015610ef6578160200160208202803683370190505b50905060005b82811015610f3d57610f0e8582610d1a565b828281518110610f2057610f20612b60565b602090810291909101015280610f3581612aef565b915050610efc565b509392505050565b6000610f5060085490565b8210610fb35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610975565b60088281548110610fc657610fc6612b60565b90600052602060002001549050919050565b600a546001600160a01b031633146110025760405162461bcd60e51b8152600401610975906129a0565b8051610e8490600b906020840190612413565b6000818152600260205260408120546001600160a01b0316806109455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610975565b60006014544210156110a65781600e546109459190612a52565b81600f546109459190612a52565b919050565b60006001600160a01b0382166111245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610975565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461116a5760405162461bcd60e51b8152600401610975906129a0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111de5760405162461bcd60e51b8152600401610975906129a0565b600e55565b600a546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610975906129a0565b601380549115156101000261ff0019909216919091179055565b6060600180546109ef90612ab4565b6001600160a01b038116600090815260156020908152604080832054601690925282205461094591611dd0565b600c54600160a01b900460ff166112b25760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610975565b60135460ff16156112fe5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610975565b600061130960085490565b6010549091506113198383612a26565b11156113375760405162461bcd60e51b81526004016109759061295e565b6014544210156114685781600e5461134f9190612a52565b3410156113935760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610975565b336000908152601560205260409020546011546113b08483612a26565b11156114125760405162461bcd60e51b815260206004820152602b60248201527f4d6178204e46547320706572206164647265737320657863656564656420666f60448201526a391038393296b9b0b6329760a91b6064820152608401610975565b60015b8381116114625733600090815260156020526040812080549161143783612aef565b9091555061145090503361144b8386612a26565b611de3565b8061145a81612aef565b915050611415565b50505050565b33600090815260166020526040902054600f54611486908490612a52565b3410156114ca5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610975565b6012546114d78483612a26565b111561153d5760405162461bcd60e51b815260206004820152602f60248201527f4d6178204e46547320706572206164647265737320657863656564656420666f60448201526e391033b2b732b930b616b9b0b6329760891b6064820152608401610975565b60015b8381116114625733600090815260166020526040812080549161156283612aef565b9091555061157690503361144b8386612a26565b8061158081612aef565b915050611540565b6001600160a01b0382163314156115e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610975565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b03163314801590611682575033611676600a546001600160a01b031690565b6001600160a01b031614155b156116df5760405162461bcd60e51b815260206004820152602760248201527f43616c6c6572206973206e6f7420746865206f776e6572206f7220636f6c6c616044820152663137b930ba37b960c91b6064820152608401610975565b60006116ea60085490565b6010549091506116fa8383612a26565b11156117185760405162461bcd60e51b81526004016109759061295e565b60015b828111610ca6576117303361144b8385612a26565b8061173a81612aef565b91505061171b565b600a546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b19169055565b600a546001600160a01b031633146117a55760405162461bcd60e51b8152600401610975906129a0565b600f55565b6117b43383611b2e565b6117d05760405162461bcd60e51b8152600401610975906129d5565b61146284848484611dfd565b6000818152600260205260409020546060906001600160a01b031661185b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610975565b601354610100900460ff1661189c57600d61187583611e30565b6040516020016118869291906127d1565b6040516020818303038152906040529050919050565b60006118a6611f2e565b9050806118b284611e30565b6040516020016118c39291906127a2565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146119045760405162461bcd60e51b8152600401610975906129a0565b600c805460ff60a01b1916600160a01b179055565b600a546001600160a01b031633146119435760405162461bcd60e51b8152600401610975906129a0565b8051610e8490600d906020840190612413565b600a546001600160a01b031633146119805760405162461bcd60e51b8152600401610975906129a0565b6001600160a01b0381166119e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610975565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611a6b5760405162461bcd60e51b8152600401610975906129a0565b601255565b60006001600160e01b031982166380ac58cd60e01b1480611aa157506001600160e01b03198216635b5e139f60e01b145b8061094557506301ffc9a760e01b6001600160e01b0319831614610945565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611af582611015565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ba75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b6000611bb283611015565b9050806001600160a01b0316846001600160a01b03161480611bed5750836001600160a01b0316611be284610a72565b6001600160a01b0316145b80611c1d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3882611015565b6001600160a01b031614611ca05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610975565b6001600160a01b038216611d025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b611d0d838383611f3d565b611d18600082611ac0565b6001600160a01b0383166000908152600360205260408120805460019290611d41908490612a71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6f908490612a26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ddc8284612a26565b9392505050565b610e84828260405180602001604052806000815250611ff5565b611e08848484611c25565b611e1484848484612028565b6114625760405162461bcd60e51b81526004016109759061290c565b606081611e545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7e5780611e6881612aef565b9150611e779050600a83612a3e565b9150611e58565b60008167ffffffffffffffff811115611e9957611e99612b76565b6040519080825280601f01601f191660200182016040528015611ec3576020820181803683370190505b5090505b8415611c1d57611ed8600183612a71565b9150611ee5600a86612b0a565b611ef0906030612a26565b60f81b818381518110611f0557611f05612b60565b60200101906001600160f81b031916908160001a905350611f27600a86612a3e565b9450611ec7565b6060600b80546109ef90612ab4565b6001600160a01b038316611f9857611f9381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fbb565b816001600160a01b0316836001600160a01b031614611fbb57611fbb8382612135565b6001600160a01b038216611fd257610ca6816121d2565b826001600160a01b0316826001600160a01b031614610ca657610ca68282612281565b611fff83836122c5565b61200c6000848484612028565b610ca65760405162461bcd60e51b81526004016109759061290c565b60006001600160a01b0384163b1561212a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206c903390899088908890600401612878565b602060405180830381600087803b15801561208657600080fd5b505af19250505080156120b6575060408051601f3d908101601f191682019092526120b3918101906126db565b60015b612110573d8080156120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5080516121085760405162461bcd60e51b81526004016109759061290c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c1d565b506001949350505050565b60006001612142846110b9565b61214c9190612a71565b60008381526007602052604090205490915080821461219f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e490600190612a71565b6000838152600960205260408120546008805493945090928490811061220c5761220c612b60565b90600052602060002001549050806008838154811061222d5761222d612b60565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226557612265612b4a565b6001900381819060005260206000200160009055905550505050565b600061228c836110b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661231b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610975565b6000818152600260205260409020546001600160a01b0316156123805760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610975565b61238c60008383611f3d565b6001600160a01b03821660009081526003602052604081208054600192906123b5908490612a26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241f90612ab4565b90600052602060002090601f0160209004810192826124415760008555612487565b82601f1061245a57805160ff1916838001178555612487565b82800160010185558215612487579182015b8281111561248757825182559160200191906001019061246c565b50612493929150612497565b5090565b5b808211156124935760008155600101612498565b600067ffffffffffffffff808411156124c7576124c7612b76565b604051601f8501601f19908116603f011681019082821181831017156124ef576124ef612b76565b8160405280935085815286868601111561250857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146110b457600080fd5b803580151581146110b457600080fd5b60006020828403121561255b57600080fd5b611ddc82612522565b6000806040838503121561257757600080fd5b61258083612522565b915061258e60208401612522565b90509250929050565b6000806000606084860312156125ac57600080fd5b6125b584612522565b92506125c360208501612522565b9150604084013590509250925092565b600080600080608085870312156125e957600080fd5b6125f285612522565b935061260060208601612522565b925060408501359150606085013567ffffffffffffffff81111561262357600080fd5b8501601f8101871361263457600080fd5b612643878235602084016124ac565b91505092959194509250565b6000806040838503121561266257600080fd5b61266b83612522565b915061258e60208401612539565b6000806040838503121561268c57600080fd5b61269583612522565b946020939093013593505050565b6000602082840312156126b557600080fd5b611ddc82612539565b6000602082840312156126d057600080fd5b8135611ddc81612b8c565b6000602082840312156126ed57600080fd5b8151611ddc81612b8c565b60006020828403121561270a57600080fd5b813567ffffffffffffffff81111561272157600080fd5b8201601f8101841361273257600080fd5b611c1d848235602084016124ac565b60006020828403121561275357600080fd5b5035919050565b60008151808452612772816020860160208601612a88565b601f01601f19169290920160200192915050565b60008151612798818560208601612a88565b9290920192915050565b600083516127b4818460208801612a88565b8351908301906127c8818360208801612a88565b01949350505050565b600080845481600182811c9150808316806127ed57607f831692505b602080841082141561280d57634e487b7160e01b86526022600452602486fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008b81526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505061286f8185612786565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ab9083018461275a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ed578351835292840192918401916001016128d1565b50909695505050505050565b602081526000611ddc602083018461275a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a3957612a39612b1e565b500190565b600082612a4d57612a4d612b34565b500490565b6000816000190483118215151615612a6c57612a6c612b1e565b500290565b600082821015612a8357612a83612b1e565b500390565b60005b83811015612aa3578181015183820152602001612a8b565b838111156114625750506000910152565b600181811c90821680612ac857607f821691505b60208210811415612ae957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0357612b03612b1e565b5060010190565b600082612b1957612b19612b34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ba257600080fd5b5056fea2646970667358221220adb38dc42b4af16ddaa72ea62db868c73173d18e35b3822dede0e2c585ea032964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000005f5cfa9e0c658425a245834da58b3e35d28c50e6000000000000000000000000000000000000000000000000000000000000001d53656372657420536f6369657479206f66204f64642046656c6c6f7773000000000000000000000000000000000000000000000000000000000000000000000453534f4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f72657665616c2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f6e6f7472657665616c2f6d657461646174612f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Secret Society of Odd Fellows
Arg [1] : _symbol (string): SSOF
Arg [2] : _initBaseURI (string): https://nft.oddfellowsnft.com/reveal/metadata/
Arg [3] : _initNotRevealedUri (string): https://nft.oddfellowsnft.com/notreveal/metadata/
Arg [4] : _collaborator (address): 0x5f5CFA9e0c658425a245834dA58B3e35d28C50E6

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000005f5cfa9e0c658425a245834da58b3e35d28c50e6
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [6] : 53656372657420536f6369657479206f66204f64642046656c6c6f7773000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 53534f4600000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [10] : 68747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f7265
Arg [11] : 7665616c2f6d657461646174612f000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [13] : 68747470733a2f2f6e66742e6f646466656c6c6f77736e66742e636f6d2f6e6f
Arg [14] : 7472657665616c2f6d657461646174612f000000000000000000000000000000


Deployed Bytecode Sourcemap

46722:5761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:237;;;;;;;;;;-1:-1:-1;40589:237:0;;;;;:::i;:::-;;:::i;:::-;;;7909:14:1;;7902:22;7884:41;;7872:2;7857:18;40589:237:0;;;;;;;;52259:73;;;;;;;;;;-1:-1:-1;52259:73:0;;;;;:::i;:::-;;:::i;:::-;;51035:129;;;;;;;;;;;;;:::i;29108:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46879:27::-;;;;;;;;;;-1:-1:-1;46879:27:0;;;;-1:-1:-1;;;;;46879:27:0;;;;;;-1:-1:-1;;;;;6570:32:1;;;6552:51;;6540:2;6525:18;46879:27:0;6406:203:1;30568:221:0;;;;;;;;;;-1:-1:-1;30568:221:0;;;;;:::i;:::-;;:::i;46947:28::-;;;;;;;;;;;;;:::i;30105:397::-;;;;;;;;;;-1:-1:-1;30105:397:0;;;;;:::i;:::-;;:::i;41242:113::-;;;;;;;;;;-1:-1:-1;41330:10:0;:17;41242:113;;;18198:25:1;;;18186:2;18171:18;41242:113:0;18052:177:1;51172:102:0;;;;;;;;;;;;;:::i;31458:305::-;;;;;;;;;;-1:-1:-1;31458:305:0;;;;;:::i;:::-;;:::i;47281:30::-;;;;;;;;;;;;;;;;47383:67;;;;;;;;;;-1:-1:-1;47383:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;40910:256;;;;;;;;;;-1:-1:-1;40910:256:0;;;;;:::i;:::-;;:::i;51583:110::-;;;;;;;;;;-1:-1:-1;51583:110:0;;;;;:::i;:::-;;:::i;51911:106::-;;;;;;;;;;-1:-1:-1;51911:106:0;;;;;:::i;:::-;;:::i;46911:31::-;;;;;;;;;;-1:-1:-1;46911:31:0;;;;-1:-1:-1;;;46911:31:0;;;;;;52340:140;;;;;;;;;;;;;:::i;47316:62::-;;;;;;;;;;-1:-1:-1;47316:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;31834:151;;;;;;;;;;-1:-1:-1;31834:151:0;;;;;:::i;:::-;;:::i;49748:329::-;;;;;;;;;;-1:-1:-1;49748:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47161:51::-;;;;;;;;;;;;;;;;41432:233;;;;;;;;;;-1:-1:-1;41432:233:0;;;;;:::i;:::-;;:::i;47248:28::-;;;;;;;;;;-1:-1:-1;47248:28:0;;;;;;;;;;;52027:98;;;;;;;;;;-1:-1:-1;52027:98:0;;;;;:::i;:::-;;:::i;47217:26::-;;;;;;;;;;-1:-1:-1;47217:26:0;;;;;;;;28802:239;;;;;;;;;;-1:-1:-1;28802:239:0;;;;;:::i;:::-;;:::i;50083:248::-;;;;;;;;;;-1:-1:-1;50083:248:0;;;;;:::i;:::-;;:::i;28532:208::-;;;;;;;;;;-1:-1:-1;28532:208:0;;;;;:::i;:::-;;:::i;18913:148::-;;;;;;;;;;;;;:::i;47109:47::-;;;;;;;;;;;;;;;;18262:87;;;;;;;;;;-1:-1:-1;18335:6:0;;-1:-1:-1;;;;;18335:6:0;18262:87;;51809:94;;;;;;;;;;-1:-1:-1;51809:94:0;;;;;:::i;:::-;;:::i;50947:80::-;;;;;;;;;;-1:-1:-1;50947:80:0;;;;;:::i;:::-;;:::i;29277:104::-;;;;;;;;;;;;;:::i;50774:167::-;;;;;;;;;;-1:-1:-1;50774:167:0;;;;;:::i;:::-;;:::i;48344:1398::-;;;;;;:::i;:::-;;:::i;30861:295::-;;;;;;;;;;-1:-1:-1;30861:295:0;;;;;:::i;:::-;;:::i;47911:425::-;;;;;;;;;;-1:-1:-1;47911:425:0;;;;;:::i;:::-;;:::i;51368:80::-;;;;;;;;;;;;;:::i;51701:102::-;;;;;;;;;;-1:-1:-1;51701:102:0;;;;;:::i;:::-;;:::i;32056:285::-;;;;;;;;;;-1:-1:-1;32056:285:0;;;;;:::i;:::-;;:::i;50341:427::-;;;;;;;;;;-1:-1:-1;50341:427:0;;;;;:::i;:::-;;:::i;46980:39::-;;;;;;;;;;;;;;;;47024:43;;;;;;;;;;;;;;;;47072:32;;;;;;;;;;;;;;;;31227:164;;;;;;;;;;-1:-1:-1;31227:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31348:25:0;;;31324:4;31348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31227:164;51280:80;;;;;;;;;;;;;:::i;52131:120::-;;;;;;;;;;-1:-1:-1;52131:120:0;;;;;:::i;:::-;;:::i;19216:244::-;;;;;;;;;;-1:-1:-1;19216:244:0;;;;;:::i;:::-;;:::i;51456:119::-;;;;;;;;;;-1:-1:-1;51456:119:0;;;;;:::i;:::-;;:::i;40589:237::-;40691:4;-1:-1:-1;;;;;;40715:50:0;;-1:-1:-1;;;40715:50:0;;:103;;;40782:36;40806:11;40782:23;:36::i;:::-;40708:110;40589:237;-1:-1:-1;;40589:237:0:o;52259:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;;;;;;;;;52311:6:::1;:15:::0;;-1:-1:-1;;52311:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52259:73::o;51035:129::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51085:13:::1;:20:::0;;-1:-1:-1;;;;51085:20:0::1;-1:-1:-1::0;;;51085:20:0::1;::::0;;51132:26:::1;:15;51150:8;51132:26;:::i;:::-;51114:15;:44:::0;51035:129::o;29108:100::-;29162:13;29195:5;29188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:100;:::o;30568:221::-;30644:7;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;30664:73;;;;-1:-1:-1;;;30664:73:0;;14310:2:1;30664:73:0;;;14292:21:1;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:42;14491:19;;30664:73:0;14108:408:1;30664:73:0;-1:-1:-1;30757:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30757:24:0;;30568:221::o;46947:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30105:397::-;30186:13;30202:23;30217:7;30202:14;:23::i;:::-;30186:39;;30250:5;-1:-1:-1;;;;;30244:11:0;:2;-1:-1:-1;;;;;30244:11:0;;;30236:57;;;;-1:-1:-1;;;30236:57:0;;16609:2:1;30236:57:0;;;16591:21:1;16648:2;16628:18;;;16621:30;16687:34;16667:18;;;16660:62;-1:-1:-1;;;16738:18:1;;;16731:31;16779:19;;30236:57:0;16407:397:1;30236:57:0;16986:10;-1:-1:-1;;;;;30314:21:0;;;;:62;;-1:-1:-1;30339:37:0;30356:5;16986:10;31227:164;:::i;30339:37::-;30306:154;;;;-1:-1:-1;;;30306:154:0;;12295:2:1;30306:154:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:34;12353:18;;;12346:62;12444:26;12424:18;;;12417:54;12488:19;;30306:154:0;12093:420:1;30306:154:0;30473:21;30482:2;30486:7;30473:8;:21::i;:::-;30175:327;30105:397;;:::o;51172:102::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51221:13:::1;:19:::0;;-1:-1:-1;;;;51221:19:0::1;::::0;;51235:5:::1;51221:13;51249:19:::0;51172:102::o;31458:305::-;31619:41;16986:10;31652:7;31619:18;:41::i;:::-;31611:103;;;;-1:-1:-1;;;31611:103:0;;;;;;;:::i;:::-;31727:28;31737:4;31743:2;31747:7;31727:9;:28::i;40910:256::-;41007:7;41043:23;41060:5;41043:16;:23::i;:::-;41035:5;:31;41027:87;;;;-1:-1:-1;;;41027:87:0;;8778:2:1;41027:87:0;;;8760:21:1;8817:2;8797:18;;;8790:30;8856:34;8836:18;;;8829:62;-1:-1:-1;;;8907:18:1;;;8900:41;8958:19;;41027:87:0;8576:407:1;41027:87:0;-1:-1:-1;;;;;;41132:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40910:256::o;51583:110::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51651:27:::1;:36:::0;51583:110::o;51911:106::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51983:12:::1;:28:::0;;-1:-1:-1;;;;;;51983:28:0::1;-1:-1:-1::0;;;;;51983:28:0;;;::::1;::::0;;;::::1;::::0;;51911:106::o;52340:140::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;52435:37:::1;::::0;52403:21:::1;::::0;52443:10:::1;::::0;52435:37;::::1;;;::::0;52403:21;;52388:12:::1;52435:37:::0;52388:12;52435:37;52403:21;52443:10;52435:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52377:103;52340:140::o:0;31834:151::-;31938:39;31955:4;31961:2;31965:7;31938:39;;;;;;;;;;;;:16;:39::i;49748:329::-;49808:16;49832:23;49858:17;49868:6;49858:9;:17::i;:::-;49832:43;;49882:25;49924:15;49910:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49910:30:0;;49882:58;;49952:9;49947:103;49967:15;49963:1;:19;49947:103;;;50012:30;50032:6;50040:1;50012:19;:30::i;:::-;49998:8;50007:1;49998:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49984:3;;;;:::i;:::-;;;;49947:103;;;-1:-1:-1;50063:8:0;49748:329;-1:-1:-1;;;49748:329:0:o;41432:233::-;41507:7;41543:30;41330:10;:17;;41242:113;41543:30;41535:5;:38;41527:95;;;;-1:-1:-1;;;41527:95:0;;17429:2:1;41527:95:0;;;17411:21:1;17468:2;17448:18;;;17441:30;17507:34;17487:18;;;17480:62;-1:-1:-1;;;17558:18:1;;;17551:42;17610:19;;41527:95:0;17227:408:1;41527:95:0;41640:10;41651:5;41640:17;;;;;;;;:::i;:::-;;;;;;;;;41633:24;;41432:233;;;:::o;52027:98::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;52098:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28802:239::-:0;28874:7;28910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28910:16:0;28945:19;28937:73;;;;-1:-1:-1;;;28937:73:0;;13131:2:1;28937:73:0;;;13113:21:1;13170:2;13150:18;;;13143:30;13209:34;13189:18;;;13182:62;-1:-1:-1;;;13260:18:1;;;13253:39;13309:19;;28937:73:0;12929:405:1;50083:248:0;50142:7;50183:15;;50165;:33;50162:164;;;50236:11;50222;;:25;;;;:::i;50162:164::-;50303:11;50285:15;;:29;;;;:::i;50162:164::-;50083:248;;;:::o;28532:208::-;28604:7;-1:-1:-1;;;;;28632:19:0;;28624:74;;;;-1:-1:-1;;;28624:74:0;;12720:2:1;28624:74:0;;;12702:21:1;12759:2;12739:18;;;12732:30;12798:34;12778:18;;;12771:62;-1:-1:-1;;;12849:18:1;;;12842:40;12899:19;;28624:74:0;12518:406:1;28624:74:0;-1:-1:-1;;;;;;28716:16:0;;;;;:9;:16;;;;;;;28532:208::o;18913:148::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;19004:6:::1;::::0;18983:40:::1;::::0;19020:1:::1;::::0;-1:-1:-1;;;;;19004:6:0::1;::::0;18983:40:::1;::::0;19020:1;;18983:40:::1;19034:6;:19:::0;;-1:-1:-1;;;;;;19034:19:0::1;::::0;;18913:148::o;51809:94::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51875:11:::1;:22:::0;51809:94::o;50947:80::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51003:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;51003:18:0;;::::1;::::0;;;::::1;::::0;;50947:80::o;29277:104::-;29333:13;29366:7;29359:14;;;;;:::i;50774:167::-;-1:-1:-1;;;;;50901:33:0;;50833:7;50901:33;;;:27;:33;;;;;;;;;50858:32;:38;;;;;;:77;;:42;:77::i;48344:1398::-;48410:13;;-1:-1:-1;;;48410:13:0;;;;48402:44;;;;-1:-1:-1;;;48402:44:0;;16261:2:1;48402:44:0;;;16243:21:1;16300:2;16280:18;;;16273:30;-1:-1:-1;;;16319:18:1;;;16312:49;16378:18;;48402:44:0;16059:343:1;48402:44:0;48466:6;;;;48465:7;48457:42;;;;-1:-1:-1;;;48457:42:0;;15084:2:1;48457:42:0;;;15066:21:1;15123:2;15103:18;;;15096:30;-1:-1:-1;;;15142:18:1;;;15135:52;15204:18;;48457:42:0;14882:346:1;48457:42:0;48510:14;48527:13;41330:10;:17;;41242:113;48527:13;48583:9;;48510:30;;-1:-1:-1;48559:20:0;48568:11;48510:30;48559:20;:::i;:::-;:33;;48551:80;;;;-1:-1:-1;;;48551:80:0;;;;;;;:::i;:::-;48680:15;;48662;:33;48659:1076;;;48747:11;48733;;:25;;;;:::i;:::-;48720:9;:38;;48712:69;;;;-1:-1:-1;;;48712:69:0;;11948:2:1;48712:69:0;;;11930:21:1;11987:2;11967:18;;;11960:30;-1:-1:-1;;;12006:18:1;;;11999:48;12064:18;;48712:69:0;11746:342:1;48712:69:0;48851:10;48796:24;48823:39;;;:27;:39;;;;;;48919:27;;48885:30;48904:11;48823:39;48885:30;:::i;:::-;:61;;48877:117;;;;-1:-1:-1;;;48877:117:0;;17842:2:1;48877:117:0;;;17824:21:1;17881:2;17861:18;;;17854:30;17920:34;17900:18;;;17893:62;-1:-1:-1;;;17971:18:1;;;17964:41;18022:19;;48877:117:0;17640:407:1;48877:117:0;49026:1;49009:171;49034:11;49029:1;:16;49009:171;;49099:10;49071:39;;;;:27;:39;;;;;:41;;;;;;:::i;:::-;;;;-1:-1:-1;49131:33:0;;-1:-1:-1;49141:10:0;49153;49162:1;49153:6;:10;:::i;:::-;49131:9;:33::i;:::-;49047:3;;;;:::i;:::-;;;;49009:171;;;;48697:494;52435:37:::1;52377:103;52340:140::o:0;48659:1076::-;49294:10;49234:24;49261:44;;;:32;:44;;;;;;49341:15;;:29;;49359:11;;49341:29;:::i;:::-;49328:9;:42;;49320:73;;;;-1:-1:-1;;;49320:73:0;;11948:2:1;49320:73:0;;;11930:21:1;11987:2;11967:18;;;11960:30;-1:-1:-1;;;12006:18:1;;;11999:48;12064:18;;49320:73:0;11746:342:1;49320:73:0;49450:31;;49416:30;49435:11;49416:16;:30;:::i;:::-;:65;;49408:125;;;;-1:-1:-1;;;49408:125:0;;8362:2:1;49408:125:0;;;8344:21:1;8401:2;8381:18;;;8374:30;8440:34;8420:18;;;8413:62;-1:-1:-1;;;8491:18:1;;;8484:45;8546:19;;49408:125:0;8160:411:1;49408:125:0;49565:1;49548:176;49573:11;49568:1;:16;49548:176;;49643:10;49610:44;;;;:32;:44;;;;;:46;;;;;;:::i;:::-;;;;-1:-1:-1;49675:33:0;;-1:-1:-1;49685:10:0;49697;49706:1;49697:6;:10;:::i;49675:33::-;49586:3;;;;:::i;:::-;;;;49548:176;;30861:295;-1:-1:-1;;;;;30964:24:0;;16986:10;30964:24;;30956:62;;;;-1:-1:-1;;;30956:62:0;;11181:2:1;30956:62:0;;;11163:21:1;11220:2;11200:18;;;11193:30;11259:27;11239:18;;;11232:55;11304:18;;30956:62:0;10979:349:1;30956:62:0;16986:10;31031:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31031:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31031:53:0;;;;;;;;;;31100:48;;7884:41:1;;;31031:42:0;;16986:10;31100:48;;7857:18:1;31100:48:0;;;;;;;30861:295;;:::o;47911:425::-;47971:12;;-1:-1:-1;;;;;47971:12:0;47987:10;47971:26;;;;:51;;-1:-1:-1;48012:10:0;48001:7;18335:6;;-1:-1:-1;;;;;18335:6:0;;18262:87;48001:7;-1:-1:-1;;;;;48001:21:0;;;47971:51;47968:105;;;48024:49;;-1:-1:-1;;;48024:49:0;;13541:2:1;48024:49:0;;;13523:21:1;13580:2;13560:18;;;13553:30;13619:34;13599:18;;;13592:62;-1:-1:-1;;;13670:18:1;;;13663:37;13717:19;;48024:49:0;13339:403:1;47968:105:0;48084:14;48101:13;41330:10;:17;;41242:113;48101:13;48157:9;;48084:30;;-1:-1:-1;48133:20:0;48142:11;48084:30;48133:20;:::i;:::-;:33;;48125:80;;;;-1:-1:-1;;;48125:80:0;;;;;;;:::i;:::-;48243:1;48226:103;48251:11;48246:1;:16;48226:103;;48284:33;48294:10;48306;48315:1;48306:6;:10;:::i;48284:33::-;48264:3;;;;:::i;:::-;;;;48226:103;;51368:80;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51421:13:::1;:21:::0;;-1:-1:-1;;;;51421:21:0::1;::::0;;51368:80::o;51701:102::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51771:15:::1;:26:::0;51701:102::o;32056:285::-;32188:41;16986:10;32221:7;32188:18;:41::i;:::-;32180:103;;;;-1:-1:-1;;;32180:103:0;;;;;;;:::i;:::-;32294:39;32308:4;32314:2;32318:7;32327:5;32294:13;:39::i;50341:427::-;33873:4;33897:16;;;:7;:16;;;;;;50414:13;;-1:-1:-1;;;;;33897:16:0;50443:75;;;;-1:-1:-1;;;50443:75:0;;15845:2:1;50443:75:0;;;15827:21:1;15884:2;15864:18;;;15857:30;15923:34;15903:18;;;15896:62;-1:-1:-1;;;15974:18:1;;;15967:45;16029:19;;50443:75:0;15643:411:1;50443:75:0;50534:8;;;;;;;50531:108;;50595:14;50611:18;:7;:16;:18::i;:::-;50578:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50564:67;;50341:427;;;:::o;50531:108::-;50647:28;50678:10;:8;:10::i;:::-;50647:41;;50726:14;50742:18;:7;:16;:18::i;:::-;50709:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50695:67;;;50341:427;;;:::o;51280:80::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51334:13:::1;:20:::0;;-1:-1:-1;;;;51334:20:0::1;-1:-1:-1::0;;;51334:20:0::1;::::0;;51280:80::o;52131:120::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;52213:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;19216:244::-:0;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19305:22:0;::::1;19297:73;;;::::0;-1:-1:-1;;;19297:73:0;;9609:2:1;19297:73:0::1;::::0;::::1;9591:21:1::0;9648:2;9628:18;;;9621:30;9687:34;9667:18;;;9660:62;-1:-1:-1;;;9738:18:1;;;9731:36;9784:19;;19297:73:0::1;9407:402:1::0;19297:73:0::1;19407:6;::::0;19386:38:::1;::::0;-1:-1:-1;;;;;19386:38:0;;::::1;::::0;19407:6:::1;::::0;19386:38:::1;::::0;19407:6:::1;::::0;19386:38:::1;19435:6;:17:::0;;-1:-1:-1;;;;;;19435:17:0::1;-1:-1:-1::0;;;;;19435:17:0;;;::::1;::::0;;;::::1;::::0;;19216:244::o;51456:119::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51529:31:::1;:40:::0;51456:119::o;28176:292::-;28278:4;-1:-1:-1;;;;;;28302:40:0;;-1:-1:-1;;;28302:40:0;;:105;;-1:-1:-1;;;;;;;28359:48:0;;-1:-1:-1;;;28359:48:0;28302:105;:158;;;-1:-1:-1;;;;;;;;;;10559:40:0;;;28424:36;10450:157;37685:174;37760:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37760:29:0;-1:-1:-1;;;;;37760:29:0;;;;;;;;:24;;37814:23;37760:24;37814:14;:23::i;:::-;-1:-1:-1;;;;;37805:46:0;;;;;;;;;;;37685:174;;:::o;34102:348::-;34195:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;34212:73;;;;-1:-1:-1;;;34212:73:0;;11535:2:1;34212:73:0;;;11517:21:1;11574:2;11554:18;;;11547:30;11613:34;11593:18;;;11586:62;-1:-1:-1;;;11664:18:1;;;11657:42;11716:19;;34212:73:0;11333:408:1;34212:73:0;34296:13;34312:23;34327:7;34312:14;:23::i;:::-;34296:39;;34365:5;-1:-1:-1;;;;;34354:16:0;:7;-1:-1:-1;;;;;34354:16:0;;:51;;;;34398:7;-1:-1:-1;;;;;34374:31:0;:20;34386:7;34374:11;:20::i;:::-;-1:-1:-1;;;;;34374:31:0;;34354:51;:87;;;-1:-1:-1;;;;;;31348:25:0;;;31324:4;31348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34409:32;34346:96;34102:348;-1:-1:-1;;;;34102:348:0:o;37023:544::-;37148:4;-1:-1:-1;;;;;37121:31:0;:23;37136:7;37121:14;:23::i;:::-;-1:-1:-1;;;;;37121:31:0;;37113:85;;;;-1:-1:-1;;;37113:85:0;;15435:2:1;37113:85:0;;;15417:21:1;15474:2;15454:18;;;15447:30;15513:34;15493:18;;;15486:62;-1:-1:-1;;;15564:18:1;;;15557:39;15613:19;;37113:85:0;15233:405:1;37113:85:0;-1:-1:-1;;;;;37217:16:0;;37209:65;;;;-1:-1:-1;;;37209:65:0;;10776:2:1;37209:65:0;;;10758:21:1;10815:2;10795:18;;;10788:30;10854:34;10834:18;;;10827:62;-1:-1:-1;;;10905:18:1;;;10898:34;10949:19;;37209:65:0;10574:400:1;37209:65:0;37287:39;37308:4;37314:2;37318:7;37287:20;:39::i;:::-;37391:29;37408:1;37412:7;37391:8;:29::i;:::-;-1:-1:-1;;;;;37433:15:0;;;;;;:9;:15;;;;;:20;;37452:1;;37433:15;:20;;37452:1;;37433:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37464:13:0;;;;;;:9;:13;;;;;:18;;37481:1;;37464:13;:18;;37481:1;;37464:18;:::i;:::-;;;;-1:-1:-1;;37493:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37493:21:0;-1:-1:-1;;;;;37493:21:0;;;;;;;;;37532:27;;37493:16;;37532:27;;;;;;;37023:544;;;:::o;22168:98::-;22226:7;22253:5;22257:1;22253;:5;:::i;:::-;22246:12;22168:98;-1:-1:-1;;;22168:98:0:o;34792:110::-;34868:26;34878:2;34882:7;34868:26;;;;;;;;;;;;:9;:26::i;33223:272::-;33337:28;33347:4;33353:2;33357:7;33337:9;:28::i;:::-;33384:48;33407:4;33413:2;33417:7;33426:5;33384:22;:48::i;:::-;33376:111;;;;-1:-1:-1;;;33376:111:0;;;;;;;:::i;717:723::-;773:13;994:10;990:53;;-1:-1:-1;;1021:10:0;;;;;;;;;;;;-1:-1:-1;;;1021:10:0;;;;;717:723::o;990:53::-;1068:5;1053:12;1109:78;1116:9;;1109:78;;1142:8;;;;:::i;:::-;;-1:-1:-1;1165:10:0;;-1:-1:-1;1173:2:0;1165:10;;:::i;:::-;;;1109:78;;;1197:19;1229:6;1219:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1219:17:0;;1197:39;;1247:154;1254:10;;1247:154;;1281:11;1291:1;1281:11;;:::i;:::-;;-1:-1:-1;1350:10:0;1358:2;1350:5;:10;:::i;:::-;1337:24;;:2;:24;:::i;:::-;1324:39;;1307:6;1314;1307:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1307:56:0;;;;;;;;-1:-1:-1;1378:11:0;1387:2;1378:11;;:::i;:::-;;;1247:154;;47799:102;47859:13;47888:7;47881:14;;;;;:::i;42278:555::-;-1:-1:-1;;;;;42450:18:0;;42446:187;;42485:40;42517:7;43660:10;:17;;43633:24;;;;:15;:24;;;;;:44;;;43688:24;;;;;;;;;;;;43556:164;42485:40;42446:187;;;42555:2;-1:-1:-1;;;;;42547:10:0;:4;-1:-1:-1;;;;;42547:10:0;;42543:90;;42574:47;42607:4;42613:7;42574:32;:47::i;:::-;-1:-1:-1;;;;;42647:16:0;;42643:183;;42680:45;42717:7;42680:36;:45::i;42643:183::-;42753:4;-1:-1:-1;;;;;42747:10:0;:2;-1:-1:-1;;;;;42747:10:0;;42743:83;;42774:40;42802:2;42806:7;42774:27;:40::i;35129:250::-;35225:18;35231:2;35235:7;35225:5;:18::i;:::-;35262:54;35293:1;35297:2;35301:7;35310:5;35262:22;:54::i;:::-;35254:117;;;;-1:-1:-1;;;35254:117:0;;;;;;;:::i;38424:843::-;38545:4;-1:-1:-1;;;;;38571:13:0;;3451:20;3490:8;38567:693;;38607:72;;-1:-1:-1;;;38607:72:0;;-1:-1:-1;;;;;38607:36:0;;;;;:72;;16986:10;;38658:4;;38664:7;;38673:5;;38607:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38607:72:0;;;;;;;;-1:-1:-1;;38607:72:0;;;;;;;;;;;;:::i;:::-;;;38603:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38853:13:0;;38849:341;;38896:60;;-1:-1:-1;;;38896:60:0;;;;;;;:::i;38849:341::-;39140:6;39134:13;39125:6;39121:2;39117:15;39110:38;38603:602;-1:-1:-1;;;;;;38730:55:0;-1:-1:-1;;;38730:55:0;;-1:-1:-1;38723:62:0;;38567:693;-1:-1:-1;39244:4:0;38424:843;;;;;;:::o;44347:988::-;44613:22;44663:1;44638:22;44655:4;44638:16;:22::i;:::-;:26;;;;:::i;:::-;44675:18;44696:26;;;:17;:26;;;;;;44613:51;;-1:-1:-1;44829:28:0;;;44825:328;;-1:-1:-1;;;;;44896:18:0;;44874:19;44896:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44947:30;;;;;;:44;;;45064:30;;:17;:30;;;;;:43;;;44825:328;-1:-1:-1;45249:26:0;;;;:17;:26;;;;;;;;45242:33;;;-1:-1:-1;;;;;45293:18:0;;;;;:12;:18;;;;;:34;;;;;;;45286:41;44347:988::o;45630:1079::-;45908:10;:17;45883:22;;45908:21;;45928:1;;45908:21;:::i;:::-;45940:18;45961:24;;;:15;:24;;;;;;46334:10;:26;;45883:46;;-1:-1:-1;45961:24:0;;45883:46;;46334:26;;;;;;:::i;:::-;;;;;;;;;46312:48;;46398:11;46373:10;46384;46373:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46478:28;;;:15;:28;;;;;;;:41;;;46650:24;;;;;46643:31;46685:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45701:1008;;;45630:1079;:::o;43134:221::-;43219:14;43236:20;43253:2;43236:16;:20::i;:::-;-1:-1:-1;;;;;43267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43134:221:0:o;35715:382::-;-1:-1:-1;;;;;35795:16:0;;35787:61;;;;-1:-1:-1;;;35787:61:0;;13949:2:1;35787:61:0;;;13931:21:1;;;13968:18;;;13961:30;14027:34;14007:18;;;14000:62;14079:18;;35787:61:0;13747:356:1;35787:61:0;33873:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;:30;35859:58;;;;-1:-1:-1;;;35859:58:0;;10419:2:1;35859:58:0;;;10401:21:1;10458:2;10438:18;;;10431:30;10497;10477:18;;;10470:58;10545:18;;35859:58:0;10217:352:1;35859:58:0;35930:45;35959:1;35963:2;35967:7;35930:20;:45::i;:::-;-1:-1:-1;;;;;35988:13:0;;;;;;:9;:13;;;;;:18;;36005:1;;35988:13;:18;;36005:1;;35988:18;:::i;:::-;;;;-1:-1:-1;;36017:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36017:21:0;-1:-1:-1;;;;;36017:21:0;;;;;;;;36056:33;;36017:16;;;36056:33;;36017:16;;36056:33;35715:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:470::-;4931:3;4969:6;4963:13;4985:53;5031:6;5026:3;5019:4;5011:6;5007:17;4985:53;:::i;:::-;5101:13;;5060:16;;;;5123:57;5101:13;5060:16;5157:4;5145:17;;5123:57;:::i;:::-;5196:20;;4752:470;-1:-1:-1;;;;4752:470:1:o;5227:1174::-;5403:3;5432:1;5465:6;5459:13;5495:3;5517:1;5545:9;5541:2;5537:18;5527:28;;5605:2;5594:9;5590:18;5627;5617:61;;5671:4;5663:6;5659:17;5649:27;;5617:61;5697:2;5745;5737:6;5734:14;5714:18;5711:38;5708:165;;;-1:-1:-1;;;5772:33:1;;5828:4;5825:1;5818:15;5858:4;5779:3;5846:17;5708:165;5889:18;5916:104;;;;6034:1;6029:320;;;;5882:467;;5916:104;-1:-1:-1;;5949:24:1;;5937:37;;5994:16;;;;-1:-1:-1;5916:104:1;;6029:320;18307:1;18300:14;;;18344:4;18331:18;;6124:1;6138:165;6152:6;6149:1;6146:13;6138:165;;;6230:14;;6217:11;;;6210:35;6273:16;;;;6167:10;;6138:165;;;6142:3;;6332:6;6327:3;6323:16;6316:23;;5882:467;;;;;;;6365:30;6391:3;6383:6;6365:30;:::i;:::-;6358:37;5227:1174;-1:-1:-1;;;;;5227:1174:1:o;6614:488::-;-1:-1:-1;;;;;6883:15:1;;;6865:34;;6935:15;;6930:2;6915:18;;6908:43;6982:2;6967:18;;6960:34;;;7030:3;7025:2;7010:18;;7003:31;;;6808:4;;7051:45;;7076:19;;7068:6;7051:45;:::i;:::-;7043:53;6614:488;-1:-1:-1;;;;;;6614:488:1:o;7107:632::-;7278:2;7330:21;;;7400:13;;7303:18;;;7422:22;;;7249:4;;7278:2;7501:15;;;;7475:2;7460:18;;;7249:4;7544:169;7558:6;7555:1;7552:13;7544:169;;;7619:13;;7607:26;;7688:15;;;;7653:12;;;;7580:1;7573:9;7544:169;;;-1:-1:-1;7730:3:1;;7107:632;-1:-1:-1;;;;;;7107:632:1:o;7936:219::-;8085:2;8074:9;8067:21;8048:4;8105:44;8145:2;8134:9;8130:18;8122:6;8105:44;:::i;8988:414::-;9190:2;9172:21;;;9229:2;9209:18;;;9202:30;9268:34;9263:2;9248:18;;9241:62;-1:-1:-1;;;9334:2:1;9319:18;;9312:48;9392:3;9377:19;;8988:414::o;9814:398::-;10016:2;9998:21;;;10055:2;10035:18;;;10028:30;10094:34;10089:2;10074:18;;10067:62;-1:-1:-1;;;10160:2:1;10145:18;;10138:32;10202:3;10187:19;;9814:398::o;14521:356::-;14723:2;14705:21;;;14742:18;;;14735:30;14801:34;14796:2;14781:18;;14774:62;14868:2;14853:18;;14521:356::o;16809:413::-;17011:2;16993:21;;;17050:2;17030:18;;;17023:30;17089:34;17084:2;17069:18;;17062:62;-1:-1:-1;;;17155:2:1;17140:18;;17133:47;17212:3;17197:19;;16809:413::o;18360:128::-;18400:3;18431:1;18427:6;18424:1;18421:13;18418:39;;;18437:18;;:::i;:::-;-1:-1:-1;18473:9:1;;18360:128::o;18493:120::-;18533:1;18559;18549:35;;18564:18;;:::i;:::-;-1:-1:-1;18598:9:1;;18493:120::o;18618:168::-;18658:7;18724:1;18720;18716:6;18712:14;18709:1;18706:21;18701:1;18694:9;18687:17;18683:45;18680:71;;;18731:18;;:::i;:::-;-1:-1:-1;18771:9:1;;18618:168::o;18791:125::-;18831:4;18859:1;18856;18853:8;18850:34;;;18864:18;;:::i;:::-;-1:-1:-1;18901:9:1;;18791:125::o;18921:258::-;18993:1;19003:113;19017:6;19014:1;19011:13;19003:113;;;19093:11;;;19087:18;19074:11;;;19067:39;19039:2;19032:10;19003:113;;;19134:6;19131:1;19128:13;19125:48;;;-1:-1:-1;;19169:1:1;19151:16;;19144:27;18921:258::o;19184:380::-;19263:1;19259:12;;;;19306;;;19327:61;;19381:4;19373:6;19369:17;19359:27;;19327:61;19434:2;19426:6;19423:14;19403:18;19400:38;19397:161;;;19480:10;19475:3;19471:20;19468:1;19461:31;19515:4;19512:1;19505:15;19543:4;19540:1;19533:15;19397:161;;19184:380;;;:::o;19569:135::-;19608:3;-1:-1:-1;;19629:17:1;;19626:43;;;19649:18;;:::i;:::-;-1:-1:-1;19696:1:1;19685:13;;19569:135::o;19709:112::-;19741:1;19767;19757:35;;19772:18;;:::i;:::-;-1:-1:-1;19806:9:1;;19709:112::o;19826:127::-;19887:10;19882:3;19878:20;19875:1;19868:31;19918:4;19915:1;19908:15;19942:4;19939:1;19932:15;19958:127;20019:10;20014:3;20010:20;20007:1;20000:31;20050:4;20047:1;20040:15;20074:4;20071:1;20064:15;20090:127;20151:10;20146:3;20142:20;20139:1;20132:31;20182:4;20179:1;20172:15;20206:4;20203:1;20196:15;20222:127;20283:10;20278:3;20274:20;20271:1;20264:31;20314:4;20311:1;20304:15;20338:4;20335:1;20328:15;20354:127;20415:10;20410:3;20406:20;20403:1;20396:31;20446:4;20443:1;20436:15;20470:4;20467:1;20460:15;20486:131;-1:-1:-1;;;;;;20560:32:1;;20550:43;;20540:71;;20607:1;20604;20597:12;20540:71;20486:131;:::o

Swarm Source

ipfs://adb38dc42b4af16ddaa72ea62db868c73173d18e35b3822dede0e2c585ea0329
Loading...
Loading
Loading...
Loading
[ 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.