ETH Price: $3,388.62 (-2.04%)
Gas: 4 Gwei

Token

The Adventures of Santa Claus (SANTA)
 

Overview

Max Total Supply

0 SANTA

Holders

573

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SANTA
0x043230d5d7aa5c6abfc21ae24dea8b2351a82a59
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:
SANTA

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// File: santa.sol



pragma solidity ^0.8.13;







contract SANTA is Ownable, ERC721Burnable, DefaultOperatorFilterer {

    string private baseURI;

    string public uriSuffix = '.json';

    uint256 public max_supply = 638;

    uint256 public amountMintPerAccount = 2;

    uint256 public currentToken = 0;



    event MintSuccessful(address user);



    constructor() ERC721("The Adventures of Santa Claus", "SANTA") { 

    }



    function mint() external {

        require(balanceOf(msg.sender) < amountMintPerAccount);

        require(currentToken < max_supply);



        currentToken += 1;

        _safeMint(msg.sender, currentToken);

        

        emit MintSuccessful(msg.sender);

    }





    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {

        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');



        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))

            : '';

    }



     function setBaseURI(string memory baseURI_) external onlyOwner {

      baseURI = baseURI_;

    }





    function _baseURI() internal view virtual override returns (string memory) {

      return baseURI;

    }



    function contractURI() public pure returns (string memory) {

        return "ipfs://QmZ3vs13kZgm5NkJSDfbTFPzc9TH3ur9TSmdfou31e2dfB/";

    }



    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {

        super.transferFrom(from, to, tokenId);

    }



    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {

        super.safeTransferFrom(from, to, tokenId);

    }



    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)

        public

        override

        onlyAllowedOperator(from)

    {

        super.safeTransferFrom(from, to, tokenId, data);

    }

    

    function withdraw() external onlyOwner {

        payable(msg.sender).transfer(address(this).balance);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"MintSuccessful","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountMintPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentToken","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":"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":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600891906200029b565b5061027e6009556002600a556000600b553480156200004657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601d81526020017f54686520416476656e7475726573206f662053616e746120436c6175730000008152506040518060400160405280600581526020016453414e544160d81b815250620000cc620000c66200024760201b60201c565b6200024b565b8151620000e19060019060208501906200029b565b508051620000f79060029060208401906200029b565b5050506daaeb6d7670e522a718067333cd4e3b156200023f5780156200018d57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016e57600080fd5b505af115801562000183573d6000803e3d6000fd5b505050506200023f565b6001600160a01b03821615620001de5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000153565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050505b50506200037d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002a99062000341565b90600052602060002090601f016020900481019282620002cd576000855562000318565b82601f10620002e857805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000318578251825591602001919060010190620002fb565b50620003269291506200032a565b5090565b5b808211156200032657600081556001016200032b565b600181811c908216806200035657607f821691505b6020821081036200037757634e487b7160e01b600052602260045260246000fd5b50919050565b611f25806200038d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146102ef578063e8a3d48514610302578063e985e9c51461030a578063f2fde38b1461034657600080fd5b8063a22cb465146102c0578063a827b5ff146102d3578063b88d4fde146102dc57600080fd5b806370a082311461026c578063715018a61461028d578063836c081d146102955780638a333b501461029e5780638da5cb5b146102a757806395d89b41146102b857600080fd5b80633ccfd60b116101305780633ccfd60b1461021057806342842e0e1461021857806342966c681461022b5780635503a0e81461023e57806355f804b3146102465780636352211e1461025957600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e05780631249c58b146101f557806323b872dd146101fd575b600080fd5b61018b6101863660046118b4565b610359565b60405190151581526020015b60405180910390f35b6101a86103ab565b6040516101979190611929565b6101c86101c336600461193c565b61043d565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611971565b6104d7565b005b6101f36105ec565b6101f361020b36600461199b565b61066d565b6101f36107c9565b6101f361022636600461199b565b610822565b6101f361023936600461193c565b610973565b6101a86109e9565b6101f3610254366004611a63565b610a77565b6101c861026736600461193c565b610ab8565b61027f61027a366004611aac565b610b2f565b604051908152602001610197565b6101f3610bb6565b61027f600b5481565b61027f60095481565b6000546001600160a01b03166101c8565b6101a8610bec565b6101f36102ce366004611ad5565b610bfb565b61027f600a5481565b6101f36102ea366004611b0c565b610c06565b6101a86102fd36600461193c565b610d65565b6101a8610e43565b61018b610318366004611b88565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f3610354366004611aac565b610e63565b60006001600160e01b031982166380ac58cd60e01b148061038a57506001600160e01b03198216635b5e139f60e01b145b806103a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546103ba90611bbb565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611bbb565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104e282610ab8565b9050806001600160a01b0316836001600160a01b03160361054f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104b2565b336001600160a01b038216148061056b575061056b8133610318565b6105dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104b2565b6105e78383610efb565b505050565b600a546105f833610b2f565b1061060257600080fd5b600954600b541061061257600080fd5b6001600b60008282546106259190611c0b565b9250508190555061063833600b54610f69565b6040513381527ff5535ccd9f40eb4bc73fac8710dbb2effbf3329da83f62b35d9aa88161bb85ca9060200160405180910390a1565b826daaeb6d7670e522a718067333cd4e3b156107b857336001600160a01b038216036106a35761069e848484610f83565b6107c3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107169190611c23565b80156107995750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610775573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611c23565b6107b857604051633b79c77360e21b81523360048201526024016104b2565b6107c3848484610f83565b50505050565b6000546001600160a01b031633146107f35760405162461bcd60e51b81526004016104b290611c40565b60405133904780156108fc02916000818181858888f1935050505015801561081f573d6000803e3d6000fd5b50565b826daaeb6d7670e522a718067333cd4e3b1561096857336001600160a01b038216036108535761069e848484610fb3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c69190611c23565b80156109495750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109499190611c23565b61096857604051633b79c77360e21b81523360048201526024016104b2565b6107c3848484610fb3565b61097e335b82610fce565b6109e05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016104b2565b61081f816110c5565b600880546109f690611bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290611bbb565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b505050505081565b6000546001600160a01b03163314610aa15760405162461bcd60e51b81526004016104b290611c40565b8051610ab4906007906020840190611805565b5050565b6000818152600360205260408120546001600160a01b0316806103a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104b2565b60006001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104b2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610be05760405162461bcd60e51b81526004016104b290611c40565b610bea6000611160565b565b6060600280546103ba90611bbb565b610ab43383836111b0565b836daaeb6d7670e522a718067333cd4e3b15610d5257336001600160a01b03821603610c3d57610c388585858561127e565b610d5e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb09190611c23565b8015610d335750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d339190611c23565b610d5257604051633b79c77360e21b81523360048201526024016104b2565b610d5e8585858561127e565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610de45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104b2565b6000610dee6112b0565b90506000815111610e0e5760405180602001604052806000815250610e3c565b80610e18846112bf565b6008604051602001610e2c93929190611c75565b6040516020818303038152906040525b9392505050565b6060604051806060016040528060368152602001611eba60369139905090565b6000546001600160a01b03163314610e8d5760405162461bcd60e51b81526004016104b290611c40565b6001600160a01b038116610ef25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b2565b61081f81611160565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f3082610ab8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ab48282604051806020016040528060008152506113c0565b610f8c33610978565b610fa85760405162461bcd60e51b81526004016104b290611d38565b6105e78383836113f3565b6105e783838360405180602001604052806000815250610c06565b6000818152600360205260408120546001600160a01b03166110475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104b2565b600061105283610ab8565b9050806001600160a01b0316846001600160a01b0316148061109957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806110bd5750836001600160a01b03166110b28461043d565b6001600160a01b0316145b949350505050565b60006110d082610ab8565b90506110dd600083610efb565b6001600160a01b0381166000908152600460205260408120805460019290611106908490611d89565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036112115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104b2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112883383610fce565b6112a45760405162461bcd60e51b81526004016104b290611d38565b6107c38484848461158f565b6060600780546103ba90611bbb565b6060816000036112e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561131057806112fa81611da0565b91506113099050600a83611dcf565b91506112ea565b60008167ffffffffffffffff81111561132b5761132b6119d7565b6040519080825280601f01601f191660200182016040528015611355576020820181803683370190505b5090505b84156110bd5761136a600183611d89565b9150611377600a86611de3565b611382906030611c0b565b60f81b81838151811061139757611397611df7565b60200101906001600160f81b031916908160001a9053506113b9600a86611dcf565b9450611359565b6113ca83836115c2565b6113d76000848484611704565b6105e75760405162461bcd60e51b81526004016104b290611e0d565b826001600160a01b031661140682610ab8565b6001600160a01b03161461146a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104b2565b6001600160a01b0382166114cc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104b2565b6114d7600082610efb565b6001600160a01b0383166000908152600460205260408120805460019290611500908490611d89565b90915550506001600160a01b038216600090815260046020526040812080546001929061152e908490611c0b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61159a8484846113f3565b6115a684848484611704565b6107c35760405162461bcd60e51b81526004016104b290611e0d565b6001600160a01b0382166116185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104b2565b6000818152600360205260409020546001600160a01b03161561167d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104b2565b6001600160a01b03821660009081526004602052604081208054600192906116a6908490611c0b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611748903390899088908890600401611e5f565b6020604051808303816000875af1925050508015611783575060408051601f3d908101601f1916820190925261178091810190611e9c565b60015b6117e0573d8080156117b1576040519150601f19603f3d011682016040523d82523d6000602084013e6117b6565b606091505b5080516000036117d85760405162461bcd60e51b81526004016104b290611e0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110bd565b506001949350505050565b82805461181190611bbb565b90600052602060002090601f0160209004810192826118335760008555611879565b82601f1061184c57805160ff1916838001178555611879565b82800160010185558215611879579182015b8281111561187957825182559160200191906001019061185e565b50611885929150611889565b5090565b5b80821115611885576000815560010161188a565b6001600160e01b03198116811461081f57600080fd5b6000602082840312156118c657600080fd5b8135610e3c8161189e565b60005b838110156118ec5781810151838201526020016118d4565b838111156107c35750506000910152565b600081518084526119158160208601602086016118d1565b601f01601f19169290920160200192915050565b602081526000610e3c60208301846118fd565b60006020828403121561194e57600080fd5b5035919050565b80356001600160a01b038116811461196c57600080fd5b919050565b6000806040838503121561198457600080fd5b61198d83611955565b946020939093013593505050565b6000806000606084860312156119b057600080fd5b6119b984611955565b92506119c760208501611955565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a0857611a086119d7565b604051601f8501601f19908116603f01168101908282118183101715611a3057611a306119d7565b81604052809350858152868686011115611a4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a7557600080fd5b813567ffffffffffffffff811115611a8c57600080fd5b8201601f81018413611a9d57600080fd5b6110bd848235602084016119ed565b600060208284031215611abe57600080fd5b610e3c82611955565b801515811461081f57600080fd5b60008060408385031215611ae857600080fd5b611af183611955565b91506020830135611b0181611ac7565b809150509250929050565b60008060008060808587031215611b2257600080fd5b611b2b85611955565b9350611b3960208601611955565b925060408501359150606085013567ffffffffffffffff811115611b5c57600080fd5b8501601f81018713611b6d57600080fd5b611b7c878235602084016119ed565b91505092959194509250565b60008060408385031215611b9b57600080fd5b611ba483611955565b9150611bb260208401611955565b90509250929050565b600181811c90821680611bcf57607f821691505b602082108103611bef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1e57611c1e611bf5565b500190565b600060208284031215611c3557600080fd5b8151610e3c81611ac7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611c888285838a016118d1565b855191840191611c9b8184848a016118d1565b8554920191600090600181811c9080831680611cb857607f831692505b8583108103611cd557634e487b7160e01b85526022600452602485fd5b808015611ce95760018114611cfa57611d27565b60ff19851688528388019550611d27565b60008b81526020902060005b85811015611d1f5781548a820152908401908801611d06565b505083880195505b50939b9a5050505050505050505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082821015611d9b57611d9b611bf5565b500390565b600060018201611db257611db2611bf5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611dde57611dde611db9565b500490565b600082611df257611df2611db9565b500690565b634e487b7160e01b600052603260045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e92908301846118fd565b9695505050505050565b600060208284031215611eae57600080fd5b8151610e3c8161189e56fe697066733a2f2f516d5a33767331336b5a676d354e6b4a534466625446507a633954483375723954536d64666f75333165326466422fa2646970667358221220c5f299d2a654c121b1cff612ded6e58467c9d0350812c121e2ad2f3eff9d533c64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146102ef578063e8a3d48514610302578063e985e9c51461030a578063f2fde38b1461034657600080fd5b8063a22cb465146102c0578063a827b5ff146102d3578063b88d4fde146102dc57600080fd5b806370a082311461026c578063715018a61461028d578063836c081d146102955780638a333b501461029e5780638da5cb5b146102a757806395d89b41146102b857600080fd5b80633ccfd60b116101305780633ccfd60b1461021057806342842e0e1461021857806342966c681461022b5780635503a0e81461023e57806355f804b3146102465780636352211e1461025957600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e05780631249c58b146101f557806323b872dd146101fd575b600080fd5b61018b6101863660046118b4565b610359565b60405190151581526020015b60405180910390f35b6101a86103ab565b6040516101979190611929565b6101c86101c336600461193c565b61043d565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611971565b6104d7565b005b6101f36105ec565b6101f361020b36600461199b565b61066d565b6101f36107c9565b6101f361022636600461199b565b610822565b6101f361023936600461193c565b610973565b6101a86109e9565b6101f3610254366004611a63565b610a77565b6101c861026736600461193c565b610ab8565b61027f61027a366004611aac565b610b2f565b604051908152602001610197565b6101f3610bb6565b61027f600b5481565b61027f60095481565b6000546001600160a01b03166101c8565b6101a8610bec565b6101f36102ce366004611ad5565b610bfb565b61027f600a5481565b6101f36102ea366004611b0c565b610c06565b6101a86102fd36600461193c565b610d65565b6101a8610e43565b61018b610318366004611b88565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f3610354366004611aac565b610e63565b60006001600160e01b031982166380ac58cd60e01b148061038a57506001600160e01b03198216635b5e139f60e01b145b806103a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546103ba90611bbb565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611bbb565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104e282610ab8565b9050806001600160a01b0316836001600160a01b03160361054f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104b2565b336001600160a01b038216148061056b575061056b8133610318565b6105dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104b2565b6105e78383610efb565b505050565b600a546105f833610b2f565b1061060257600080fd5b600954600b541061061257600080fd5b6001600b60008282546106259190611c0b565b9250508190555061063833600b54610f69565b6040513381527ff5535ccd9f40eb4bc73fac8710dbb2effbf3329da83f62b35d9aa88161bb85ca9060200160405180910390a1565b826daaeb6d7670e522a718067333cd4e3b156107b857336001600160a01b038216036106a35761069e848484610f83565b6107c3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107169190611c23565b80156107995750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610775573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611c23565b6107b857604051633b79c77360e21b81523360048201526024016104b2565b6107c3848484610f83565b50505050565b6000546001600160a01b031633146107f35760405162461bcd60e51b81526004016104b290611c40565b60405133904780156108fc02916000818181858888f1935050505015801561081f573d6000803e3d6000fd5b50565b826daaeb6d7670e522a718067333cd4e3b1561096857336001600160a01b038216036108535761069e848484610fb3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c69190611c23565b80156109495750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109499190611c23565b61096857604051633b79c77360e21b81523360048201526024016104b2565b6107c3848484610fb3565b61097e335b82610fce565b6109e05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016104b2565b61081f816110c5565b600880546109f690611bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290611bbb565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b505050505081565b6000546001600160a01b03163314610aa15760405162461bcd60e51b81526004016104b290611c40565b8051610ab4906007906020840190611805565b5050565b6000818152600360205260408120546001600160a01b0316806103a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104b2565b60006001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104b2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610be05760405162461bcd60e51b81526004016104b290611c40565b610bea6000611160565b565b6060600280546103ba90611bbb565b610ab43383836111b0565b836daaeb6d7670e522a718067333cd4e3b15610d5257336001600160a01b03821603610c3d57610c388585858561127e565b610d5e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb09190611c23565b8015610d335750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d339190611c23565b610d5257604051633b79c77360e21b81523360048201526024016104b2565b610d5e8585858561127e565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610de45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104b2565b6000610dee6112b0565b90506000815111610e0e5760405180602001604052806000815250610e3c565b80610e18846112bf565b6008604051602001610e2c93929190611c75565b6040516020818303038152906040525b9392505050565b6060604051806060016040528060368152602001611eba60369139905090565b6000546001600160a01b03163314610e8d5760405162461bcd60e51b81526004016104b290611c40565b6001600160a01b038116610ef25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b2565b61081f81611160565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f3082610ab8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ab48282604051806020016040528060008152506113c0565b610f8c33610978565b610fa85760405162461bcd60e51b81526004016104b290611d38565b6105e78383836113f3565b6105e783838360405180602001604052806000815250610c06565b6000818152600360205260408120546001600160a01b03166110475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104b2565b600061105283610ab8565b9050806001600160a01b0316846001600160a01b0316148061109957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806110bd5750836001600160a01b03166110b28461043d565b6001600160a01b0316145b949350505050565b60006110d082610ab8565b90506110dd600083610efb565b6001600160a01b0381166000908152600460205260408120805460019290611106908490611d89565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036112115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104b2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112883383610fce565b6112a45760405162461bcd60e51b81526004016104b290611d38565b6107c38484848461158f565b6060600780546103ba90611bbb565b6060816000036112e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561131057806112fa81611da0565b91506113099050600a83611dcf565b91506112ea565b60008167ffffffffffffffff81111561132b5761132b6119d7565b6040519080825280601f01601f191660200182016040528015611355576020820181803683370190505b5090505b84156110bd5761136a600183611d89565b9150611377600a86611de3565b611382906030611c0b565b60f81b81838151811061139757611397611df7565b60200101906001600160f81b031916908160001a9053506113b9600a86611dcf565b9450611359565b6113ca83836115c2565b6113d76000848484611704565b6105e75760405162461bcd60e51b81526004016104b290611e0d565b826001600160a01b031661140682610ab8565b6001600160a01b03161461146a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104b2565b6001600160a01b0382166114cc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104b2565b6114d7600082610efb565b6001600160a01b0383166000908152600460205260408120805460019290611500908490611d89565b90915550506001600160a01b038216600090815260046020526040812080546001929061152e908490611c0b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61159a8484846113f3565b6115a684848484611704565b6107c35760405162461bcd60e51b81526004016104b290611e0d565b6001600160a01b0382166116185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104b2565b6000818152600360205260409020546001600160a01b03161561167d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104b2565b6001600160a01b03821660009081526004602052604081208054600192906116a6908490611c0b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611748903390899088908890600401611e5f565b6020604051808303816000875af1925050508015611783575060408051601f3d908101601f1916820190925261178091810190611e9c565b60015b6117e0573d8080156117b1576040519150601f19603f3d011682016040523d82523d6000602084013e6117b6565b606091505b5080516000036117d85760405162461bcd60e51b81526004016104b290611e0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110bd565b506001949350505050565b82805461181190611bbb565b90600052602060002090601f0160209004810192826118335760008555611879565b82601f1061184c57805160ff1916838001178555611879565b82800160010185558215611879579182015b8281111561187957825182559160200191906001019061185e565b50611885929150611889565b5090565b5b80821115611885576000815560010161188a565b6001600160e01b03198116811461081f57600080fd5b6000602082840312156118c657600080fd5b8135610e3c8161189e565b60005b838110156118ec5781810151838201526020016118d4565b838111156107c35750506000910152565b600081518084526119158160208601602086016118d1565b601f01601f19169290920160200192915050565b602081526000610e3c60208301846118fd565b60006020828403121561194e57600080fd5b5035919050565b80356001600160a01b038116811461196c57600080fd5b919050565b6000806040838503121561198457600080fd5b61198d83611955565b946020939093013593505050565b6000806000606084860312156119b057600080fd5b6119b984611955565b92506119c760208501611955565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a0857611a086119d7565b604051601f8501601f19908116603f01168101908282118183101715611a3057611a306119d7565b81604052809350858152868686011115611a4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a7557600080fd5b813567ffffffffffffffff811115611a8c57600080fd5b8201601f81018413611a9d57600080fd5b6110bd848235602084016119ed565b600060208284031215611abe57600080fd5b610e3c82611955565b801515811461081f57600080fd5b60008060408385031215611ae857600080fd5b611af183611955565b91506020830135611b0181611ac7565b809150509250929050565b60008060008060808587031215611b2257600080fd5b611b2b85611955565b9350611b3960208601611955565b925060408501359150606085013567ffffffffffffffff811115611b5c57600080fd5b8501601f81018713611b6d57600080fd5b611b7c878235602084016119ed565b91505092959194509250565b60008060408385031215611b9b57600080fd5b611ba483611955565b9150611bb260208401611955565b90509250929050565b600181811c90821680611bcf57607f821691505b602082108103611bef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1e57611c1e611bf5565b500190565b600060208284031215611c3557600080fd5b8151610e3c81611ac7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611c888285838a016118d1565b855191840191611c9b8184848a016118d1565b8554920191600090600181811c9080831680611cb857607f831692505b8583108103611cd557634e487b7160e01b85526022600452602485fd5b808015611ce95760018114611cfa57611d27565b60ff19851688528388019550611d27565b60008b81526020902060005b85811015611d1f5781548a820152908401908801611d06565b505083880195505b50939b9a5050505050505050505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082821015611d9b57611d9b611bf5565b500390565b600060018201611db257611db2611bf5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611dde57611dde611db9565b500490565b600082611df257611df2611db9565b500690565b634e487b7160e01b600052603260045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e92908301846118fd565b9695505050505050565b600060208284031215611eae57600080fd5b8151610e3c8161189e56fe697066733a2f2f516d5a33767331336b5a676d354e6b4a534466625446507a633954483375723954536d64666f75333165326466422fa2646970667358221220c5f299d2a654c121b1cff612ded6e58467c9d0350812c121e2ad2f3eff9d533c64736f6c634300080d0033

Deployed Bytecode Sourcemap

42669:2282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28701:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28701:305:0;;;;;;;;29646:100;;;:::i;:::-;;;;;;;:::i;31206:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31206:221:0;1528:203:1;30729:411:0;;;;;;:::i;:::-;;:::i;:::-;;43083:286;;;:::i;44211:167::-;;;;;;:::i;:::-;;:::i;44833:113::-;;;:::i;44390:175::-;;;;;;:::i;:::-;;:::i;42354:242::-;;;;;;:::i;:::-;;:::i;42776:33::-;;;:::i;43814:102::-;;;;;;:::i;:::-;;:::i;29340:239::-;;;;;;:::i;:::-;;:::i;29070:208::-;;;;;;:::i;:::-;;:::i;:::-;;;4068:25:1;;;4056:2;4041:18;29070:208:0;3922:177:1;24353:103:0;;;:::i;42906:31::-;;;;;;42818;;;;;;23702:87;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;23702:87;;29815:104;;;:::i;31499:155::-;;;;;;:::i;:::-;;:::i;42858:39::-;;;;;;44577:240;;;;;;:::i;:::-;;:::i;43385:416::-;;;;;;:::i;:::-;;:::i;44054:145::-;;;:::i;31725:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31846:25:0;;;31822:4;31846:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31725:164;24611:201;;;;;;:::i;:::-;;:::i;28701:305::-;28803:4;-1:-1:-1;;;;;;28840:40:0;;-1:-1:-1;;;28840:40:0;;:105;;-1:-1:-1;;;;;;;28897:48:0;;-1:-1:-1;;;28897:48:0;28840:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;28962:36;28820:178;28701:305;-1:-1:-1;;28701:305:0:o;29646:100::-;29700:13;29733:5;29726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29646:100;:::o;31206:221::-;31282:7;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;31302:73;;;;-1:-1:-1;;;31302:73:0;;6071:2:1;31302:73:0;;;6053:21:1;6110:2;6090:18;;;6083:30;6149:34;6129:18;;;6122:62;-1:-1:-1;;;6200:18:1;;;6193:42;6252:19;;31302:73:0;;;;;;;;;-1:-1:-1;31395:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31395:24:0;;31206:221::o;30729:411::-;30810:13;30826:23;30841:7;30826:14;:23::i;:::-;30810:39;;30874:5;-1:-1:-1;;;;;30868:11:0;:2;-1:-1:-1;;;;;30868:11:0;;30860:57;;;;-1:-1:-1;;;30860:57:0;;6484:2:1;30860:57:0;;;6466:21:1;6523:2;6503:18;;;6496:30;6562:34;6542:18;;;6535:62;-1:-1:-1;;;6613:18:1;;;6606:31;6654:19;;30860:57:0;6282:397:1;30860:57:0;22506:10;-1:-1:-1;;;;;30952:21:0;;;;:62;;-1:-1:-1;30977:37:0;30994:5;22506:10;31725:164;:::i;30977:37::-;30930:168;;;;-1:-1:-1;;;30930:168:0;;6886:2:1;30930:168:0;;;6868:21:1;6925:2;6905:18;;;6898:30;6964:34;6944:18;;;6937:62;7035:26;7015:18;;;7008:54;7079:19;;30930:168:0;6684:420:1;30930:168:0;31111:21;31120:2;31124:7;31111:8;:21::i;:::-;30799:341;30729:411;;:::o;43083:286::-;43153:20;;43129:21;43139:10;43129:9;:21::i;:::-;:44;43121:53;;;;;;43210:10;;43195:12;;:25;43187:34;;;;;;43254:1;43238:12;;:17;;;;;;;:::i;:::-;;;;;;;;43268:35;43278:10;43290:12;;43268:9;:35::i;:::-;43333:26;;43348:10;1674:51:1;;43333:26:0;;1662:2:1;1647:18;43333:26:0;;;;;;;43083:286::o;44211:167::-;44312:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44331:37:::1;44350:4;44356:2;44360:7;44331:18;:37::i;:::-;3864:7:::0;;3801:85;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7586:34:1;4002:10:0;7636:18:1;;;7629:43;2386:42:0;;3946:40;;7521:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7586:34:1;-1:-1:-1;;;;;7656:15:1;;7636:18;;;7629:43;2386:42:0;;4042:40;;7521:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1674:51:1;1647:18;;4164:30:0;1528:203:1;3900:310:0;44331:37:::1;44350:4;44356:2;44360:7;44331:18;:37::i;:::-;44211:167:::0;;;;:::o;44833:113::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;44885:51:::1;::::0;44893:10:::1;::::0;44914:21:::1;44885:51:::0;::::1;;;::::0;::::1;::::0;;;44914:21;44893:10;44885:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44833:113::o:0;44390:175::-;44495:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44514:41:::1;44537:4;44543:2;44547:7;44514:22;:41::i;3801:85::-:0;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7586:34:1;4002:10:0;7636:18:1;;;7629:43;2386:42:0;;3946:40;;7521:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7586:34:1;-1:-1:-1;;;;;7656:15:1;;7636:18;;;7629:43;2386:42:0;;4042:40;;7521:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1674:51:1;1647:18;;4164:30:0;1528:203:1;3900:310:0;44514:41:::1;44537:4;44543:2;44547:7;44514:22;:41::i;42354:242::-:0;42472:41;22506:10;42491:12;42505:7;42472:18;:41::i;:::-;42464:99;;;;-1:-1:-1;;;42464:99:0;;8496:2:1;42464:99:0;;;8478:21:1;8535:2;8515:18;;;8508:30;8574:34;8554:18;;;8547:62;-1:-1:-1;;;8625:18:1;;;8618:43;8678:19;;42464:99:0;8294:409:1;42464:99:0;42574:14;42580:7;42574:5;:14::i;42776:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43814:102::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;43888:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43814:102:::0;:::o;29340:239::-;29412:7;29448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29448:16:0;;29475:73;;;;-1:-1:-1;;;29475:73:0;;8910:2:1;29475:73:0;;;8892:21:1;8949:2;8929:18;;;8922:30;8988:34;8968:18;;;8961:62;-1:-1:-1;;;9039:18:1;;;9032:39;9088:19;;29475:73:0;8708:405:1;29070:208:0;29142:7;-1:-1:-1;;;;;29170:19:0;;29162:74;;;;-1:-1:-1;;;29162:74:0;;9320:2:1;29162:74:0;;;9302:21:1;9359:2;9339:18;;;9332:30;9398:34;9378:18;;;9371:62;-1:-1:-1;;;9449:18:1;;;9442:40;9499:19;;29162:74:0;9118:406:1;29162:74:0;-1:-1:-1;;;;;;29254:16:0;;;;;:9;:16;;;;;;;29070:208::o;24353:103::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;24418:30:::1;24445:1;24418:18;:30::i;:::-;24353:103::o:0;29815:104::-;29871:13;29904:7;29897:14;;;;;:::i;31499:155::-;31594:52;22506:10;31627:8;31637;31594:18;:52::i;44577:240::-;44734:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44760:47:::1;44783:4;44789:2;44793:7;44802:4;44760:22;:47::i;:::-;3864:7:::0;;3801:85;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7586:34:1;4002:10:0;7636:18:1;;;7629:43;2386:42:0;;3946:40;;7521:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7586:34:1;-1:-1:-1;;;;;7656:15:1;;7636:18;;;7629:43;2386:42:0;;4042:40;;7521:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1674:51:1;1647:18;;4164:30:0;1528:203:1;3900:310:0;44760:47:::1;44783:4;44789:2;44793:7;44802:4;44760:22;:47::i;:::-;44577:240:::0;;;;;:::o;43385:416::-;34525:4;34549:16;;;:7;:16;;;;;;43459:13;;-1:-1:-1;;;;;34549:16:0;43487:77;;;;-1:-1:-1;;;43487:77:0;;9731:2:1;43487:77:0;;;9713:21:1;9770:2;9750:18;;;9743:30;9809:34;9789:18;;;9782:62;-1:-1:-1;;;9860:18:1;;;9853:45;9915:19;;43487:77:0;9529:411:1;43487:77:0;43581:28;43612:10;:8;:10::i;:::-;43581:41;;43673:1;43648:14;43642:28;:32;:149;;;;;;;;;;;;;;;;;43716:14;43732:26;43749:8;43732:16;:26::i;:::-;43760:9;43699:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43642:149;43635:156;43385:416;-1:-1:-1;;;43385:416:0:o;44054:145::-;44098:13;44126:63;;;;;;;;;;;;;;;;;;;44054:145;:::o;24611:201::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24700:22:0;::::1;24692:73;;;::::0;-1:-1:-1;;;24692:73:0;;11805:2:1;24692:73:0::1;::::0;::::1;11787:21:1::0;11844:2;11824:18;;;11817:30;11883:34;11863:18;;;11856:62;-1:-1:-1;;;11934:18:1;;;11927:36;11980:19;;24692:73:0::1;11603:402:1::0;24692:73:0::1;24776:28;24795:8;24776:18;:28::i;38606:174::-:0;38681:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38681:29:0;-1:-1:-1;;;;;38681:29:0;;;;;;;;:24;;38735:23;38681:24;38735:14;:23::i;:::-;-1:-1:-1;;;;;38726:46:0;;;;;;;;;;;38606:174;;:::o;35444:110::-;35520:26;35530:2;35534:7;35520:26;;;;;;;;;;;;:9;:26::i;31956:339::-;32151:41;22506:10;32170:12;22426:98;32151:41;32143:103;;;;-1:-1:-1;;;32143:103:0;;;;;;;:::i;:::-;32259:28;32269:4;32275:2;32279:7;32259:9;:28::i;32366:185::-;32504:39;32521:4;32527:2;32531:7;32504:39;;;;;;;;;;;;:16;:39::i;34754:348::-;34847:4;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;34864:73;;;;-1:-1:-1;;;34864:73:0;;12630:2:1;34864:73:0;;;12612:21:1;12669:2;12649:18;;;12642:30;12708:34;12688:18;;;12681:62;-1:-1:-1;;;12759:18:1;;;12752:42;12811:19;;34864:73:0;12428:408:1;34864:73:0;34948:13;34964:23;34979:7;34964:14;:23::i;:::-;34948:39;;35017:5;-1:-1:-1;;;;;35006:16:0;:7;-1:-1:-1;;;;;35006:16:0;;:52;;;-1:-1:-1;;;;;;31846:25:0;;;31822:4;31846:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35026:32;35006:87;;;;35086:7;-1:-1:-1;;;;;35062:31:0;:20;35074:7;35062:11;:20::i;:::-;-1:-1:-1;;;;;35062:31:0;;35006:87;34998:96;34754:348;-1:-1:-1;;;;34754:348:0:o;37106:420::-;37166:13;37182:23;37197:7;37182:14;:23::i;:::-;37166:39;;37307:29;37324:1;37328:7;37307:8;:29::i;:::-;-1:-1:-1;;;;;37349:16:0;;;;;;:9;:16;;;;;:21;;37369:1;;37349:16;:21;;37369:1;;37349:21;:::i;:::-;;;;-1:-1:-1;;37388:16:0;;;;:7;:16;;;;;;37381:23;;-1:-1:-1;;;;;;37381:23:0;;;37422:36;37396:7;;37388:16;-1:-1:-1;;;;;37422:36:0;;;;;37388:16;;37422:36;43888:18:::1;43814:102:::0;:::o;24972:191::-;25046:16;25065:6;;-1:-1:-1;;;;;25082:17:0;;;-1:-1:-1;;;;;;25082:17:0;;;;;;25115:40;;25065:6;;;;;;;25115:40;;25046:16;25115:40;25035:128;24972:191;:::o;38922:315::-;39077:8;-1:-1:-1;;;;;39068:17:0;:5;-1:-1:-1;;;;;39068:17:0;;39060:55;;;;-1:-1:-1;;;39060:55:0;;13173:2:1;39060:55:0;;;13155:21:1;13212:2;13192:18;;;13185:30;13251:27;13231:18;;;13224:55;13296:18;;39060:55:0;12971:349:1;39060:55:0;-1:-1:-1;;;;;39126:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39126:46:0;;;;;;;;;;39188:41;;540::1;;;39188::0;;513:18:1;39188:41:0;;;;;;;38922:315;;;:::o;32622:328::-;32797:41;22506:10;32830:7;32797:18;:41::i;:::-;32789:103;;;;-1:-1:-1;;;32789:103:0;;;;;;;:::i;:::-;32903:39;32917:4;32923:2;32927:7;32936:5;32903:13;:39::i;43932:110::-;43992:13;44025:7;44018:14;;;;;:::i;25535:723::-;25591:13;25812:5;25821:1;25812:10;25808:53;;-1:-1:-1;;25839:10:0;;;;;;;;;;;;-1:-1:-1;;;25839:10:0;;;;;25535:723::o;25808:53::-;25886:5;25871:12;25927:78;25934:9;;25927:78;;25960:8;;;;:::i;:::-;;-1:-1:-1;25983:10:0;;-1:-1:-1;25991:2:0;25983:10;;:::i;:::-;;;25927:78;;;26015:19;26047:6;26037:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26037:17:0;;26015:39;;26065:154;26072:10;;26065:154;;26099:11;26109:1;26099:11;;:::i;:::-;;-1:-1:-1;26168:10:0;26176:2;26168:5;:10;:::i;:::-;26155:24;;:2;:24;:::i;:::-;26142:39;;26125:6;26132;26125:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26125:56:0;;;;;;;;-1:-1:-1;26196:11:0;26205:2;26196:11;;:::i;:::-;;;26065:154;;35781:321;35911:18;35917:2;35921:7;35911:5;:18::i;:::-;35962:54;35993:1;35997:2;36001:7;36010:5;35962:22;:54::i;:::-;35940:154;;;;-1:-1:-1;;;35940:154:0;;;;;;;:::i;37863:625::-;38022:4;-1:-1:-1;;;;;37995:31:0;:23;38010:7;37995:14;:23::i;:::-;-1:-1:-1;;;;;37995:31:0;;37987:81;;;;-1:-1:-1;;;37987:81:0;;14592:2:1;37987:81:0;;;14574:21:1;14631:2;14611:18;;;14604:30;14670:34;14650:18;;;14643:62;-1:-1:-1;;;14721:18:1;;;14714:35;14766:19;;37987:81:0;14390:401:1;37987:81:0;-1:-1:-1;;;;;38087:16:0;;38079:65;;;;-1:-1:-1;;;38079:65:0;;14998:2:1;38079:65:0;;;14980:21:1;15037:2;15017:18;;;15010:30;15076:34;15056:18;;;15049:62;-1:-1:-1;;;15127:18:1;;;15120:34;15171:19;;38079:65:0;14796:400:1;38079:65:0;38261:29;38278:1;38282:7;38261:8;:29::i;:::-;-1:-1:-1;;;;;38303:15:0;;;;;;:9;:15;;;;;:20;;38322:1;;38303:15;:20;;38322:1;;38303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38334:13:0;;;;;;:9;:13;;;;;:18;;38351:1;;38334:13;:18;;38351:1;;38334:18;:::i;:::-;;;;-1:-1:-1;;38363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38363:21:0;-1:-1:-1;;;;;38363:21:0;;;;;;;;;38402:27;;38363:16;;38402:27;;;;;;;30799:341;30729:411;;:::o;33832:315::-;33989:28;33999:4;34005:2;34009:7;33989:9;:28::i;:::-;34036:48;34059:4;34065:2;34069:7;34078:5;34036:22;:48::i;:::-;34028:111;;;;-1:-1:-1;;;34028:111:0;;;;;;;:::i;36438:439::-;-1:-1:-1;;;;;36518:16:0;;36510:61;;;;-1:-1:-1;;;36510:61:0;;15403:2:1;36510:61:0;;;15385:21:1;;;15422:18;;;15415:30;15481:34;15461:18;;;15454:62;15533:18;;36510:61:0;15201:356:1;36510:61:0;34525:4;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;:30;36582:58;;;;-1:-1:-1;;;36582:58:0;;15764:2:1;36582:58:0;;;15746:21:1;15803:2;15783:18;;;15776:30;15842;15822:18;;;15815:58;15890:18;;36582:58:0;15562:352:1;36582:58:0;-1:-1:-1;;;;;36711:13:0;;;;;;:9;:13;;;;;:18;;36728:1;;36711:13;:18;;36728:1;;36711:18;:::i;:::-;;;;-1:-1:-1;;36740:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36740:21:0;-1:-1:-1;;;;;36740:21:0;;;;;;;;36779:33;;36740:16;;;36779:33;;36740:16;;36779:33;43888:18:::1;43814:102:::0;:::o;39802:799::-;39957:4;-1:-1:-1;;;;;39978:13:0;;6084:19;:23;39974:620;;40014:72;;-1:-1:-1;;;40014:72:0;;-1:-1:-1;;;;;40014:36:0;;;;;:72;;22506:10;;40065:4;;40071:7;;40080:5;;40014:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40014:72:0;;;;;;;;-1:-1:-1;;40014:72:0;;;;;;;;;;;;:::i;:::-;;;40010:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40256:6;:13;40273:1;40256:18;40252:272;;40299:60;;-1:-1:-1;;;40299:60:0;;;;;;;:::i;40252:272::-;40474:6;40468:13;40459:6;40455:2;40451:15;40444:38;40010:529;-1:-1:-1;;;;;;40137:51:0;-1:-1:-1;;;40137:51:0;;-1:-1:-1;40130:58:0;;39974:620;-1:-1:-1;40578:4:0;39802:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:328::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2358:29;2377:9;2358:29;:::i;:::-;2348:39;;2406:38;2440:2;2429:9;2425:18;2406:38;:::i;:::-;2396:48;;2491:2;2480:9;2476:18;2463:32;2453:42;;2173:328;;;;;:::o;2506:127::-;2567:10;2562:3;2558:20;2555:1;2548:31;2598:4;2595:1;2588:15;2622:4;2619:1;2612:15;2638:632;2703:5;2733:18;2774:2;2766:6;2763:14;2760:40;;;2780:18;;:::i;:::-;2855:2;2849:9;2823:2;2909:15;;-1:-1:-1;;2905:24:1;;;2931:2;2901:33;2897:42;2885:55;;;2955:18;;;2975:22;;;2952:46;2949:72;;;3001:18;;:::i;:::-;3041:10;3037:2;3030:22;3070:6;3061:15;;3100:6;3092;3085:22;3140:3;3131:6;3126:3;3122:16;3119:25;3116:45;;;3157:1;3154;3147:12;3116:45;3207:6;3202:3;3195:4;3187:6;3183:17;3170:44;3262:1;3255:4;3246:6;3238;3234:19;3230:30;3223:41;;;;2638:632;;;;;:::o;3275:451::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3453:9;3440:23;3486:18;3478:6;3475:30;3472:50;;;3518:1;3515;3508:12;3472:50;3541:22;;3594:4;3586:13;;3582:27;-1:-1:-1;3572:55:1;;3623:1;3620;3613:12;3572:55;3646:74;3712:7;3707:2;3694:16;3689:2;3685;3681:11;3646:74;:::i;3731:186::-;3790:6;3843:2;3831:9;3822:7;3818:23;3814:32;3811:52;;;3859:1;3856;3849:12;3811:52;3882:29;3901:9;3882:29;:::i;4104:118::-;4190:5;4183:13;4176:21;4169:5;4166:32;4156:60;;4212:1;4209;4202:12;4227:315;4292:6;4300;4353:2;4341:9;4332:7;4328:23;4324:32;4321:52;;;4369:1;4366;4359:12;4321:52;4392:29;4411:9;4392:29;:::i;:::-;4382:39;;4471:2;4460:9;4456:18;4443:32;4484:28;4506:5;4484:28;:::i;:::-;4531:5;4521:15;;;4227:315;;;;;:::o;4547:667::-;4642:6;4650;4658;4666;4719:3;4707:9;4698:7;4694:23;4690:33;4687:53;;;4736:1;4733;4726:12;4687:53;4759:29;4778:9;4759:29;:::i;:::-;4749:39;;4807:38;4841:2;4830:9;4826:18;4807:38;:::i;:::-;4797:48;;4892:2;4881:9;4877:18;4864:32;4854:42;;4947:2;4936:9;4932:18;4919:32;4974:18;4966:6;4963:30;4960:50;;;5006:1;5003;4996:12;4960:50;5029:22;;5082:4;5074:13;;5070:27;-1:-1:-1;5060:55:1;;5111:1;5108;5101:12;5060:55;5134:74;5200:7;5195:2;5182:16;5177:2;5173;5169:11;5134:74;:::i;:::-;5124:84;;;4547:667;;;;;;;:::o;5219:260::-;5287:6;5295;5348:2;5336:9;5327:7;5323:23;5319:32;5316:52;;;5364:1;5361;5354:12;5316:52;5387:29;5406:9;5387:29;:::i;:::-;5377:39;;5435:38;5469:2;5458:9;5454:18;5435:38;:::i;:::-;5425:48;;5219:260;;;;;:::o;5484:380::-;5563:1;5559:12;;;;5606;;;5627:61;;5681:4;5673:6;5669:17;5659:27;;5627:61;5734:2;5726:6;5723:14;5703:18;5700:38;5697:161;;5780:10;5775:3;5771:20;5768:1;5761:31;5815:4;5812:1;5805:15;5843:4;5840:1;5833:15;5697:161;;5484:380;;;:::o;7109:127::-;7170:10;7165:3;7161:20;7158:1;7151:31;7201:4;7198:1;7191:15;7225:4;7222:1;7215:15;7241:128;7281:3;7312:1;7308:6;7305:1;7302:13;7299:39;;;7318:18;;:::i;:::-;-1:-1:-1;7354:9:1;;7241:128::o;7683:245::-;7750:6;7803:2;7791:9;7782:7;7778:23;7774:32;7771:52;;;7819:1;7816;7809:12;7771:52;7851:9;7845:16;7870:28;7892:5;7870:28;:::i;7933:356::-;8135:2;8117:21;;;8154:18;;;8147:30;8213:34;8208:2;8193:18;;8186:62;8280:2;8265:18;;7933:356::o;10071:1527::-;10295:3;10333:6;10327:13;10359:4;10372:51;10416:6;10411:3;10406:2;10398:6;10394:15;10372:51;:::i;:::-;10486:13;;10445:16;;;;10508:55;10486:13;10445:16;10530:15;;;10508:55;:::i;:::-;10652:13;;10585:20;;;10625:1;;10712;10734:18;;;;10787;;;;10814:93;;10892:4;10882:8;10878:19;10866:31;;10814:93;10955:2;10945:8;10942:16;10922:18;10919:40;10916:167;;-1:-1:-1;;;10982:33:1;;11038:4;11035:1;11028:15;11068:4;10989:3;11056:17;10916:167;11099:18;11126:110;;;;11250:1;11245:328;;;;11092:481;;11126:110;-1:-1:-1;;11161:24:1;;11147:39;;11206:20;;;;-1:-1:-1;11126:110:1;;11245:328;10018:1;10011:14;;;10055:4;10042:18;;11340:1;11354:169;11368:8;11365:1;11362:15;11354:169;;;11450:14;;11435:13;;;11428:37;11493:16;;;;11385:10;;11354:169;;;11358:3;;11554:8;11547:5;11543:20;11536:27;;11092:481;-1:-1:-1;11589:3:1;;10071:1527;-1:-1:-1;;;;;;;;;;;10071:1527:1:o;12010:413::-;12212:2;12194:21;;;12251:2;12231:18;;;12224:30;12290:34;12285:2;12270:18;;12263:62;-1:-1:-1;;;12356:2:1;12341:18;;12334:47;12413:3;12398:19;;12010:413::o;12841:125::-;12881:4;12909:1;12906;12903:8;12900:34;;;12914:18;;:::i;:::-;-1:-1:-1;12951:9:1;;12841:125::o;13325:135::-;13364:3;13385:17;;;13382:43;;13405:18;;:::i;:::-;-1:-1:-1;13452:1:1;13441:13;;13325:135::o;13465:127::-;13526:10;13521:3;13517:20;13514:1;13507:31;13557:4;13554:1;13547:15;13581:4;13578:1;13571:15;13597:120;13637:1;13663;13653:35;;13668:18;;:::i;:::-;-1:-1:-1;13702:9:1;;13597:120::o;13722:112::-;13754:1;13780;13770:35;;13785:18;;:::i;:::-;-1:-1:-1;13819:9:1;;13722:112::o;13839:127::-;13900:10;13895:3;13891:20;13888:1;13881:31;13931:4;13928:1;13921:15;13955:4;13952:1;13945:15;13971:414;14173:2;14155:21;;;14212:2;14192:18;;;14185:30;14251:34;14246:2;14231:18;;14224:62;-1:-1:-1;;;14317:2:1;14302:18;;14295:48;14375:3;14360:19;;13971:414::o;15919:489::-;-1:-1:-1;;;;;16188:15:1;;;16170:34;;16240:15;;16235:2;16220:18;;16213:43;16287:2;16272:18;;16265:34;;;16335:3;16330:2;16315:18;;16308:31;;;16113:4;;16356:46;;16382:19;;16374:6;16356:46;:::i;:::-;16348:54;15919:489;-1:-1:-1;;;;;;15919:489:1:o;16413:249::-;16482:6;16535:2;16523:9;16514:7;16510:23;16506:32;16503:52;;;16551:1;16548;16541:12;16503:52;16583:9;16577:16;16602:30;16626:5;16602:30;:::i

Swarm Source

ipfs://c5f299d2a654c121b1cff612ded6e58467c9d0350812c121e2ad2f3eff9d533c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.