ETH Price: $3,494.50 (+2.21%)
Gas: 15 Gwei

Token

DOOMSDAYX Gen 01: Haleek Maul Producer NFT (DOOMSDAYX_01)
 

Overview

Max Total Supply

1,000 DOOMSDAYX_01

Holders

353

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DOOMSDAYX_01
0x0f422c24f26953a8613d2544a11ea7d8eb9255b4
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:
DoomsdayXProducer

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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/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/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/DoomsdayXPlatinum.sol

// ██████   ██████   ██████  ███    ███ ███████ ██████   █████  ██    ██ ██   ██ 
// ██   ██ ██    ██ ██    ██ ████  ████ ██      ██   ██ ██   ██  ██  ██   ██ ██  
// ██   ██ ██    ██ ██    ██ ██ ████ ██ ███████ ██   ██ ███████   ████     ███   
// ██   ██ ██    ██ ██    ██ ██  ██  ██      ██ ██   ██ ██   ██    ██     ██ ██  
// ██████   ██████   ██████  ██      ██ ███████ ██████  ██   ██    ██    ██   ██ 
//
// ------------------------------------------------------------------------------
//
//                           THE PRODUCER NFT COLLECTION
//
//                                        X
//
//                                   HALEEK MAUL
//                                                                              
// ------------------------------------------------------------------------------                                                                              

pragma solidity >=0.7.0 <0.9.0;




contract DoomsdayXProducer is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://QmQpuqvuAfcqdhLuAc3Xj2uJzjt1auW6a9YSNA87nigR4X/";
  string public uriSuffix = ".json";
  

  
  uint256 public cost = 0.2 ether;
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public mintPerAddress = 5;

  bool public paused = true;

  mapping(address => uint256) public minted;

  constructor() ERC721("DOOMSDAYX Gen 01: Haleek Maul Producer NFT", "DOOMSDAYX_01") {
      _transferOwnership(0x87858dc56634796488f2e4f2D7135Cc6132777E7);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(minted[msg.sender] + _mintAmount <= mintPerAddress, "Mint limit exceeded");

    minted[msg.sender] += _mintAmount;
    _mintLoop(msg.sender, _mintAmount);
  }
  
    // Can be used by contract owner to mint freely (max of 5 per tx)
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn this token");
        _burn(tokenId);
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  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, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function setMintPerAddress(uint256 _mintPerAddress) public onlyOwner {
    mintPerAddress = _mintPerAddress;
  }


  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success, "Errors occured when transfering funds");
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPerAddress","type":"uint256"}],"name":"setMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062002a8f60a0398051620000299160089160209091019062000195565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000589160099162000195565b506702c68af0bb140000600a556103e8600b556005600c819055600d55600e805460ff191660011790553480156200008f57600080fd5b506040518060600160405280602a815260200162002a65602a91396040518060400160405280600c81526020016b444f4f4d53444159585f303160a01b8152508160009080519060200190620000e792919062000195565b508051620000fd90600190602084019062000195565b5050506200011a620001146200013f60201b60201c565b62000143565b620001397387858dc56634796488f2e4f2d7135cc6132777e762000143565b62000278565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a3906200023b565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b600181811c908216806200025057607f821691505b602082108114156200027257634e487b7160e01b600052602260045260246000fd5b50919050565b6127dd80620002886000396000f3fe60806040526004361061024f5760003560e01c80636352211e11610138578063b071401b116100b0578063d5abeb011161007f578063efbd73f411610064578063efbd73f414610681578063f2fde38b146106a1578063f47a269c146106c157600080fd5b8063d5abeb0114610622578063e985e9c51461063857600080fd5b8063b071401b146105a2578063b88d4fde146105c2578063bd252cb3146105e2578063c87b56dd1461060257600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b411461055a578063a0712d681461056f578063a22cb4651461058257600080fd5b80638da5cb5b1461052657806394354fd01461054457600080fd5b80636352211e146104b157806370a08231146104d1578063715018a6146104f15780637ec4a6591461050657600080fd5b806323b872dd116101cb578063438b63001161019a5780635503a0e81161017f5780635503a0e81461046d5780635c975abb1461048257806362b99ad41461049c57600080fd5b8063438b63001461042057806344a0d68a1461044d57600080fd5b806323b872dd146103ab5780633ccfd60b146103cb57806342842e0e146103e057806342966c681461040057600080fd5b806313faede61161022257806316c38b3c1161020757806316c38b3c1461034957806318160ddd146103695780631e7269c51461037e57600080fd5b806313faede61461030557806316ba10e01461032957600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046123ff565b6106d7565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610774565b604051610280919061262e565b3480156102b757600080fd5b506102cb6102c6366004612482565b610806565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046123ba565b6108a0565b005b34801561031157600080fd5b5061031b600a5481565b604051908152602001610280565b34801561033557600080fd5b50610303610344366004612439565b6109d2565b34801561035557600080fd5b506103036103643660046123e4565b610a43565b34801561037557600080fd5b5061031b610ab0565b34801561038a57600080fd5b5061031b61039936600461228a565b600f6020526000908152604090205481565b3480156103b757600080fd5b506103036103c63660046122d8565b610ac0565b3480156103d757600080fd5b50610303610b48565b3480156103ec57600080fd5b506103036103fb3660046122d8565b610c7f565b34801561040c57600080fd5b5061030361041b366004612482565b610c9a565b34801561042c57600080fd5b5061044061043b36600461228a565b610cf8565b60405161028091906125ea565b34801561045957600080fd5b50610303610468366004612482565b610dd9565b34801561047957600080fd5b5061029e610e38565b34801561048e57600080fd5b50600e546102749060ff1681565b3480156104a857600080fd5b5061029e610ec6565b3480156104bd57600080fd5b506102cb6104cc366004612482565b610ed3565b3480156104dd57600080fd5b5061031b6104ec36600461228a565b610f5e565b3480156104fd57600080fd5b50610303610ff8565b34801561051257600080fd5b50610303610521366004612439565b61105e565b34801561053257600080fd5b506006546001600160a01b03166102cb565b34801561055057600080fd5b5061031b600c5481565b34801561056657600080fd5b5061029e6110cb565b61030361057d366004612482565b6110da565b34801561058e57600080fd5b5061030361059d366004612390565b6112e9565b3480156105ae57600080fd5b506103036105bd366004612482565b6112f4565b3480156105ce57600080fd5b506103036105dd366004612314565b611353565b3480156105ee57600080fd5b506103036105fd366004612482565b6113e1565b34801561060e57600080fd5b5061029e61061d366004612482565b611440565b34801561062e57600080fd5b5061031b600b5481565b34801561064457600080fd5b506102746106533660046122a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b5061030361069c36600461249b565b61152c565b3480156106ad57600080fd5b506103036106bc36600461228a565b611654565b3480156106cd57600080fd5b5061031b600d5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061073a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061076e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610783906126cf565b80601f01602080910402602001604051908101604052809291908181526020018280546107af906126cf565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ab82610ed3565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161087b565b336001600160a01b038216148061095157506109518133610653565b6109c35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087b565b6109cd8383611733565b505050565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b8051610a3f90600990602084019061214f565b5050565b6006546001600160a01b03163314610a9d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600e805460ff1916911515919091179055565b6000610abb60075490565b905090565b610acb335b826117a1565b610b3d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161087b565b6109cd838383611898565b6006546001600160a01b03163314610ba25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6000610bb66006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c00576040519150601f19603f3d011682016040523d82523d6000602084013e610c05565b606091505b5050905080610c7c5760405162461bcd60e51b815260206004820152602560248201527f4572726f7273206f636375726564207768656e207472616e73666572696e672060448201527f66756e6473000000000000000000000000000000000000000000000000000000606482015260840161087b565b50565b6109cd83838360405180602001604052806000815250611353565b610ca333610ac5565b610cef5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420617070726f76656420746f206275726e207468697320746f6b656e00604482015260640161087b565b610c7c81611a65565b60606000610d0583610f5e565b905060008167ffffffffffffffff811115610d2257610d2261277b565b604051908082528060200260200182016040528015610d4b578160200160208202803683370190505b509050600160005b8381108015610d645750600b548211155b15610dcf576000610d7483610ed3565b9050866001600160a01b0316816001600160a01b03161415610dbc5782848381518110610da357610da3612765565b602090810291909101015281610db88161270a565b9250505b82610dc68161270a565b93505050610d53565b5090949350505050565b6006546001600160a01b03163314610e335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600a55565b60098054610e45906126cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e71906126cf565b8015610ebe5780601f10610e9357610100808354040283529160200191610ebe565b820191906000526020600020905b815481529060010190602001808311610ea157829003601f168201915b505050505081565b60088054610e45906126cf565b6000818152600260205260408120546001600160a01b03168061076e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161087b565b60006001600160a01b038216610fdc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161087b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b61105c6000611b00565b565b6006546001600160a01b031633146110b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b8051610a3f90600890602084019061214f565b606060018054610783906126cf565b806000811180156110ed5750600c548111155b6111395760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161087b565b600b548161114660075490565b6111509190612641565b111561119e5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161087b565b600e5460ff16156111f15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087b565b81600a546111ff919061266d565b34101561124e5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e64732100000000000000000000000000604482015260640161087b565b600d54336000908152600f602052604090205461126c908490612641565b11156112ba5760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d697420657863656564656400000000000000000000000000604482015260640161087b565b336000908152600f6020526040812080548492906112d9908490612641565b90915550610a3f90503383611b52565b610a3f338383611b8f565b6006546001600160a01b0316331461134e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600c55565b61135d33836117a1565b6113cf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161087b565b6113db84848484611c5e565b50505050565b6006546001600160a01b0316331461143b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600d55565b6000818152600260205260409020546060906001600160a01b03166114cd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161087b565b60006114d7611cdc565b905060008151116114f75760405180602001604052806000815250611525565b8061150184611ceb565b6009604051602001611515939291906124ea565b6040516020818303038152906040525b9392505050565b8160008111801561153f5750600c548111155b61158b5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161087b565b600b548161159860075490565b6115a29190612641565b11156115f05760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161087b565b6006546001600160a01b0316331461164a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6109cd8284611b52565b6006546001600160a01b031633146116ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6001600160a01b03811661172a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161087b565b610c7c81611b00565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176882610ed3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661181a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087b565b600061182583610ed3565b9050806001600160a01b0316846001600160a01b031614806118605750836001600160a01b031661185584610806565b6001600160a01b0316145b8061189057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118ab82610ed3565b6001600160a01b0316146119275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161087b565b6001600160a01b0382166119a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161087b565b6119ad600082611733565b6001600160a01b03831660009081526003602052604081208054600192906119d690849061268c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a04908490612641565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a7082610ed3565b9050611a7d600083611733565b6001600160a01b0381166000908152600360205260408120805460019290611aa690849061268c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156109cd57611b6b600780546001019055565b611b7d83611b7860075490565b611e1d565b80611b878161270a565b915050611b55565b816001600160a01b0316836001600160a01b03161415611bf15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c69848484611898565b611c7584848484611e37565b6113db5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b606060088054610783906126cf565b606081611d2b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d555780611d3f8161270a565b9150611d4e9050600a83612659565b9150611d2f565b60008167ffffffffffffffff811115611d7057611d7061277b565b6040519080825280601f01601f191660200182016040528015611d9a576020820181803683370190505b5090505b841561189057611daf60018361268c565b9150611dbc600a86612725565b611dc7906030612641565b60f81b818381518110611ddc57611ddc612765565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e16600a86612659565b9450611d9e565b610a3f828260405180602001604052806000815250611f8f565b60006001600160a01b0384163b15611f8457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e7b9033908990889088906004016125ae565b602060405180830381600087803b158015611e9557600080fd5b505af1925050508015611ec5575060408051601f3d908101601f19168201909252611ec29181019061241c565b60015b611f6a573d808015611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b508051611f625760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611890565b506001949350505050565b611f99838361200d565b611fa66000848484611e37565b6109cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b6001600160a01b0382166120635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087b565b6000818152600260205260409020546001600160a01b0316156120c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087b565b6001600160a01b03821660009081526003602052604081208054600192906120f1908490612641565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461215b906126cf565b90600052602060002090601f01602090048101928261217d57600085556121c3565b82601f1061219657805160ff19168380011785556121c3565b828001600101855582156121c3579182015b828111156121c35782518255916020019190600101906121a8565b506121cf9291506121d3565b5090565b5b808211156121cf57600081556001016121d4565b600067ffffffffffffffff808411156122035761220361277b565b604051601f8501601f19908116603f0116810190828211818310171561222b5761222b61277b565b8160405280935085815286868601111561224457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461227557600080fd5b919050565b8035801515811461227557600080fd5b60006020828403121561229c57600080fd5b6115258261225e565b600080604083850312156122b857600080fd5b6122c18361225e565b91506122cf6020840161225e565b90509250929050565b6000806000606084860312156122ed57600080fd5b6122f68461225e565b92506123046020850161225e565b9150604084013590509250925092565b6000806000806080858703121561232a57600080fd5b6123338561225e565b93506123416020860161225e565b925060408501359150606085013567ffffffffffffffff81111561236457600080fd5b8501601f8101871361237557600080fd5b612384878235602084016121e8565b91505092959194509250565b600080604083850312156123a357600080fd5b6123ac8361225e565b91506122cf6020840161227a565b600080604083850312156123cd57600080fd5b6123d68361225e565b946020939093013593505050565b6000602082840312156123f657600080fd5b6115258261227a565b60006020828403121561241157600080fd5b813561152581612791565b60006020828403121561242e57600080fd5b815161152581612791565b60006020828403121561244b57600080fd5b813567ffffffffffffffff81111561246257600080fd5b8201601f8101841361247357600080fd5b611890848235602084016121e8565b60006020828403121561249457600080fd5b5035919050565b600080604083850312156124ae57600080fd5b823591506122cf6020840161225e565b600081518084526124d68160208601602086016126a3565b601f01601f19169290920160200192915050565b6000845160206124fd8285838a016126a3565b8551918401916125108184848a016126a3565b8554920191600090600181811c908083168061252d57607f831692505b85831081141561254b57634e487b7160e01b85526022600452602485fd5b80801561255f57600181146125705761259d565b60ff1985168852838801955061259d565b60008b81526020902060005b858110156125955781548a82015290840190880161257c565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125e060808301846124be565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262257835183529284019291840191600101612606565b50909695505050505050565b60208152600061152560208301846124be565b6000821982111561265457612654612739565b500190565b6000826126685761266861274f565b500490565b600081600019048311821515161561268757612687612739565b500290565b60008282101561269e5761269e612739565b500390565b60005b838110156126be5781810151838201526020016126a6565b838111156113db5750506000910152565b600181811c908216806126e357607f821691505b6020821081141561270457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271e5761271e612739565b5060010190565b6000826127345761273461274f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7c57600080fdfea2646970667358221220a222b6b214b1e10d04500261c5795ca2a9a3b9d26b890d71f226ce60dd81e94864736f6c63430008070033444f4f4d53444159582047656e2030313a2048616c65656b204d61756c2050726f6475636572204e4654697066733a2f2f516d5170757176754166637164684c75416333586a32754a7a6a743161755736613959534e4138376e69675234582f

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80636352211e11610138578063b071401b116100b0578063d5abeb011161007f578063efbd73f411610064578063efbd73f414610681578063f2fde38b146106a1578063f47a269c146106c157600080fd5b8063d5abeb0114610622578063e985e9c51461063857600080fd5b8063b071401b146105a2578063b88d4fde146105c2578063bd252cb3146105e2578063c87b56dd1461060257600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b411461055a578063a0712d681461056f578063a22cb4651461058257600080fd5b80638da5cb5b1461052657806394354fd01461054457600080fd5b80636352211e146104b157806370a08231146104d1578063715018a6146104f15780637ec4a6591461050657600080fd5b806323b872dd116101cb578063438b63001161019a5780635503a0e81161017f5780635503a0e81461046d5780635c975abb1461048257806362b99ad41461049c57600080fd5b8063438b63001461042057806344a0d68a1461044d57600080fd5b806323b872dd146103ab5780633ccfd60b146103cb57806342842e0e146103e057806342966c681461040057600080fd5b806313faede61161022257806316c38b3c1161020757806316c38b3c1461034957806318160ddd146103695780631e7269c51461037e57600080fd5b806313faede61461030557806316ba10e01461032957600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046123ff565b6106d7565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610774565b604051610280919061262e565b3480156102b757600080fd5b506102cb6102c6366004612482565b610806565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046123ba565b6108a0565b005b34801561031157600080fd5b5061031b600a5481565b604051908152602001610280565b34801561033557600080fd5b50610303610344366004612439565b6109d2565b34801561035557600080fd5b506103036103643660046123e4565b610a43565b34801561037557600080fd5b5061031b610ab0565b34801561038a57600080fd5b5061031b61039936600461228a565b600f6020526000908152604090205481565b3480156103b757600080fd5b506103036103c63660046122d8565b610ac0565b3480156103d757600080fd5b50610303610b48565b3480156103ec57600080fd5b506103036103fb3660046122d8565b610c7f565b34801561040c57600080fd5b5061030361041b366004612482565b610c9a565b34801561042c57600080fd5b5061044061043b36600461228a565b610cf8565b60405161028091906125ea565b34801561045957600080fd5b50610303610468366004612482565b610dd9565b34801561047957600080fd5b5061029e610e38565b34801561048e57600080fd5b50600e546102749060ff1681565b3480156104a857600080fd5b5061029e610ec6565b3480156104bd57600080fd5b506102cb6104cc366004612482565b610ed3565b3480156104dd57600080fd5b5061031b6104ec36600461228a565b610f5e565b3480156104fd57600080fd5b50610303610ff8565b34801561051257600080fd5b50610303610521366004612439565b61105e565b34801561053257600080fd5b506006546001600160a01b03166102cb565b34801561055057600080fd5b5061031b600c5481565b34801561056657600080fd5b5061029e6110cb565b61030361057d366004612482565b6110da565b34801561058e57600080fd5b5061030361059d366004612390565b6112e9565b3480156105ae57600080fd5b506103036105bd366004612482565b6112f4565b3480156105ce57600080fd5b506103036105dd366004612314565b611353565b3480156105ee57600080fd5b506103036105fd366004612482565b6113e1565b34801561060e57600080fd5b5061029e61061d366004612482565b611440565b34801561062e57600080fd5b5061031b600b5481565b34801561064457600080fd5b506102746106533660046122a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b5061030361069c36600461249b565b61152c565b3480156106ad57600080fd5b506103036106bc36600461228a565b611654565b3480156106cd57600080fd5b5061031b600d5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061073a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061076e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610783906126cf565b80601f01602080910402602001604051908101604052809291908181526020018280546107af906126cf565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ab82610ed3565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161087b565b336001600160a01b038216148061095157506109518133610653565b6109c35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087b565b6109cd8383611733565b505050565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b8051610a3f90600990602084019061214f565b5050565b6006546001600160a01b03163314610a9d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600e805460ff1916911515919091179055565b6000610abb60075490565b905090565b610acb335b826117a1565b610b3d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161087b565b6109cd838383611898565b6006546001600160a01b03163314610ba25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6000610bb66006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c00576040519150601f19603f3d011682016040523d82523d6000602084013e610c05565b606091505b5050905080610c7c5760405162461bcd60e51b815260206004820152602560248201527f4572726f7273206f636375726564207768656e207472616e73666572696e672060448201527f66756e6473000000000000000000000000000000000000000000000000000000606482015260840161087b565b50565b6109cd83838360405180602001604052806000815250611353565b610ca333610ac5565b610cef5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420617070726f76656420746f206275726e207468697320746f6b656e00604482015260640161087b565b610c7c81611a65565b60606000610d0583610f5e565b905060008167ffffffffffffffff811115610d2257610d2261277b565b604051908082528060200260200182016040528015610d4b578160200160208202803683370190505b509050600160005b8381108015610d645750600b548211155b15610dcf576000610d7483610ed3565b9050866001600160a01b0316816001600160a01b03161415610dbc5782848381518110610da357610da3612765565b602090810291909101015281610db88161270a565b9250505b82610dc68161270a565b93505050610d53565b5090949350505050565b6006546001600160a01b03163314610e335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600a55565b60098054610e45906126cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e71906126cf565b8015610ebe5780601f10610e9357610100808354040283529160200191610ebe565b820191906000526020600020905b815481529060010190602001808311610ea157829003601f168201915b505050505081565b60088054610e45906126cf565b6000818152600260205260408120546001600160a01b03168061076e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161087b565b60006001600160a01b038216610fdc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161087b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b61105c6000611b00565b565b6006546001600160a01b031633146110b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b8051610a3f90600890602084019061214f565b606060018054610783906126cf565b806000811180156110ed5750600c548111155b6111395760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161087b565b600b548161114660075490565b6111509190612641565b111561119e5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161087b565b600e5460ff16156111f15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087b565b81600a546111ff919061266d565b34101561124e5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e64732100000000000000000000000000604482015260640161087b565b600d54336000908152600f602052604090205461126c908490612641565b11156112ba5760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d697420657863656564656400000000000000000000000000604482015260640161087b565b336000908152600f6020526040812080548492906112d9908490612641565b90915550610a3f90503383611b52565b610a3f338383611b8f565b6006546001600160a01b0316331461134e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600c55565b61135d33836117a1565b6113cf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161087b565b6113db84848484611c5e565b50505050565b6006546001600160a01b0316331461143b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b600d55565b6000818152600260205260409020546060906001600160a01b03166114cd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161087b565b60006114d7611cdc565b905060008151116114f75760405180602001604052806000815250611525565b8061150184611ceb565b6009604051602001611515939291906124ea565b6040516020818303038152906040525b9392505050565b8160008111801561153f5750600c548111155b61158b5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161087b565b600b548161159860075490565b6115a29190612641565b11156115f05760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161087b565b6006546001600160a01b0316331461164a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6109cd8284611b52565b6006546001600160a01b031633146116ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087b565b6001600160a01b03811661172a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161087b565b610c7c81611b00565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176882610ed3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661181a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087b565b600061182583610ed3565b9050806001600160a01b0316846001600160a01b031614806118605750836001600160a01b031661185584610806565b6001600160a01b0316145b8061189057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118ab82610ed3565b6001600160a01b0316146119275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161087b565b6001600160a01b0382166119a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161087b565b6119ad600082611733565b6001600160a01b03831660009081526003602052604081208054600192906119d690849061268c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a04908490612641565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a7082610ed3565b9050611a7d600083611733565b6001600160a01b0381166000908152600360205260408120805460019290611aa690849061268c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156109cd57611b6b600780546001019055565b611b7d83611b7860075490565b611e1d565b80611b878161270a565b915050611b55565b816001600160a01b0316836001600160a01b03161415611bf15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c69848484611898565b611c7584848484611e37565b6113db5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b606060088054610783906126cf565b606081611d2b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d555780611d3f8161270a565b9150611d4e9050600a83612659565b9150611d2f565b60008167ffffffffffffffff811115611d7057611d7061277b565b6040519080825280601f01601f191660200182016040528015611d9a576020820181803683370190505b5090505b841561189057611daf60018361268c565b9150611dbc600a86612725565b611dc7906030612641565b60f81b818381518110611ddc57611ddc612765565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e16600a86612659565b9450611d9e565b610a3f828260405180602001604052806000815250611f8f565b60006001600160a01b0384163b15611f8457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e7b9033908990889088906004016125ae565b602060405180830381600087803b158015611e9557600080fd5b505af1925050508015611ec5575060408051601f3d908101601f19168201909252611ec29181019061241c565b60015b611f6a573d808015611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b508051611f625760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611890565b506001949350505050565b611f99838361200d565b611fa66000848484611e37565b6109cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161087b565b6001600160a01b0382166120635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087b565b6000818152600260205260409020546001600160a01b0316156120c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087b565b6001600160a01b03821660009081526003602052604081208054600192906120f1908490612641565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461215b906126cf565b90600052602060002090601f01602090048101928261217d57600085556121c3565b82601f1061219657805160ff19168380011785556121c3565b828001600101855582156121c3579182015b828111156121c35782518255916020019190600101906121a8565b506121cf9291506121d3565b5090565b5b808211156121cf57600081556001016121d4565b600067ffffffffffffffff808411156122035761220361277b565b604051601f8501601f19908116603f0116810190828211818310171561222b5761222b61277b565b8160405280935085815286868601111561224457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461227557600080fd5b919050565b8035801515811461227557600080fd5b60006020828403121561229c57600080fd5b6115258261225e565b600080604083850312156122b857600080fd5b6122c18361225e565b91506122cf6020840161225e565b90509250929050565b6000806000606084860312156122ed57600080fd5b6122f68461225e565b92506123046020850161225e565b9150604084013590509250925092565b6000806000806080858703121561232a57600080fd5b6123338561225e565b93506123416020860161225e565b925060408501359150606085013567ffffffffffffffff81111561236457600080fd5b8501601f8101871361237557600080fd5b612384878235602084016121e8565b91505092959194509250565b600080604083850312156123a357600080fd5b6123ac8361225e565b91506122cf6020840161227a565b600080604083850312156123cd57600080fd5b6123d68361225e565b946020939093013593505050565b6000602082840312156123f657600080fd5b6115258261227a565b60006020828403121561241157600080fd5b813561152581612791565b60006020828403121561242e57600080fd5b815161152581612791565b60006020828403121561244b57600080fd5b813567ffffffffffffffff81111561246257600080fd5b8201601f8101841361247357600080fd5b611890848235602084016121e8565b60006020828403121561249457600080fd5b5035919050565b600080604083850312156124ae57600080fd5b823591506122cf6020840161225e565b600081518084526124d68160208601602086016126a3565b601f01601f19169290920160200192915050565b6000845160206124fd8285838a016126a3565b8551918401916125108184848a016126a3565b8554920191600090600181811c908083168061252d57607f831692505b85831081141561254b57634e487b7160e01b85526022600452602485fd5b80801561255f57600181146125705761259d565b60ff1985168852838801955061259d565b60008b81526020902060005b858110156125955781548a82015290840190880161257c565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125e060808301846124be565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262257835183529284019291840191600101612606565b50909695505050505050565b60208152600061152560208301846124be565b6000821982111561265457612654612739565b500190565b6000826126685761266861274f565b500490565b600081600019048311821515161561268757612687612739565b500290565b60008282101561269e5761269e612739565b500390565b60005b838110156126be5781810151838201526020016126a6565b838111156113db5750506000910152565b600181811c908216806126e357607f821691505b6020821081141561270457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271e5761271e612739565b5060010190565b6000826127345761273461274f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7c57600080fdfea2646970667358221220a222b6b214b1e10d04500261c5795ca2a9a3b9d26b890d71f226ce60dd81e94864736f6c63430008070033

Deployed Bytecode Sourcemap

39101:4036:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;-1:-1:-1;25240:305:0;;;;;:::i;:::-;;:::i;:::-;;;8192:14:1;;8185:22;8167:41;;8155:2;8140:18;25240:305:0;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27744:221::-;;;;;;;;;;-1:-1:-1;27744:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6807:55:1;;;6789:74;;6777:2;6762:18;27744:221:0;6643:226:1;27267:411:0;;;;;;;;;;-1:-1:-1;27267:411:0;;;;;:::i;:::-;;:::i;:::-;;39397:31;;;;;;;;;;;;;;;;;;;17483:25:1;;;17471:2;17456:18;39397:31:0;17337:177:1;42435:100:0;;;;;;;;;;-1:-1:-1;42435:100:0;;;;;:::i;:::-;;:::i;42543:77::-;;;;;;;;;;-1:-1:-1;42543:77:0;;;;;:::i;:::-;;:::i;40037:89::-;;;;;;;;;;;;;:::i;39583:41::-;;;;;;;;;;-1:-1:-1;39583:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;28494:339;;;;;;;;;;-1:-1:-1;28494:339:0;;;;;:::i;:::-;;:::i;42626:188::-;;;;;;;;;;;;;:::i;28904:185::-;;;;;;;;;;-1:-1:-1;28904:185:0;;;;;:::i;:::-;;:::i;40748:167::-;;;;;;;;;;-1:-1:-1;40748:167:0;;;;;:::i;:::-;;:::i;40921:635::-;;;;;;;;;;-1:-1:-1;40921:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41990:74::-;;;;;;;;;;-1:-1:-1;41990:74:0;;;;;:::i;:::-;;:::i;39349:33::-;;;;;;;;;;;;;:::i;39551:25::-;;;;;;;;;;-1:-1:-1;39551:25:0;;;;;;;;39262:82;;;;;;;;;;;;;:::i;25879:239::-;;;;;;;;;;-1:-1:-1;25879:239:0;;;;;:::i;:::-;;:::i;25609:208::-;;;;;;;;;;-1:-1:-1;25609:208:0;;;;;:::i;:::-;;:::i;6228:103::-;;;;;;;;;;;;;:::i;42329:100::-;;;;;;;;;;-1:-1:-1;42329:100:0;;;;;:::i;:::-;;:::i;5577:87::-;;;;;;;;;;-1:-1:-1;5650:6:0;;-1:-1:-1;;;;;5650:6:0;5577:87;;39469:37;;;;;;;;;;;;;;;;26354:104;;;;;;;;;;;;;:::i;40132:376::-;;;;;;:::i;:::-;;:::i;28037:155::-;;;;;;;;;;-1:-1:-1;28037:155:0;;;;;:::i;:::-;;:::i;42070:130::-;;;;;;;;;;-1:-1:-1;42070:130:0;;;;;:::i;:::-;;:::i;29160:328::-;;;;;;;;;;-1:-1:-1;29160:328:0;;;;;:::i;:::-;;:::i;42207:114::-;;;;;;;;;;-1:-1:-1;42207:114:0;;;;;:::i;:::-;;:::i;41562:422::-;;;;;;;;;;-1:-1:-1;41562:422:0;;;;;:::i;:::-;;:::i;39433:31::-;;;;;;;;;;;;;;;;28263:164;;;;;;;;;;-1:-1:-1;28263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28263:164;40587:155;;;;;;;;;;-1:-1:-1;40587:155:0;;;;;:::i;:::-;;:::i;6486:201::-;;;;;;;;;;-1:-1:-1;6486:201:0;;;;;:::i;:::-;;:::i;39511:33::-;;;;;;;;;;;;;;;;25240:305;25342:4;-1:-1:-1;;;;;;25379:40:0;;25394:25;25379:40;;:105;;-1:-1:-1;;;;;;;25436:48:0;;25451:33;25436:48;25379:105;:158;;;-1:-1:-1;18133:25:0;-1:-1:-1;;;;;;18118:40:0;;;25501:36;25359:178;25240:305;-1:-1:-1;;25240:305:0:o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;27840:73;;;;-1:-1:-1;;;27840:73:0;;12956:2:1;27840:73:0;;;12938:21:1;12995:2;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;-1:-1:-1;;;13085:18:1;;;13078:42;13137:19;;27840:73:0;;;;;;;;;-1:-1:-1;27933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27933:24:0;;27744:221::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;-1:-1:-1;;;;;27406:11:0;:2;-1:-1:-1;;;;;27406:11:0;;;27398:57;;;;-1:-1:-1;;;27398:57:0;;14908:2:1;27398:57:0;;;14890:21:1;14947:2;14927:18;;;14920:30;14986:34;14966:18;;;14959:62;15057:3;15037:18;;;15030:31;15078:19;;27398:57:0;14706:397:1;27398:57:0;4381:10;-1:-1:-1;;;;;27490:21:0;;;;:62;;-1:-1:-1;27515:37:0;27532:5;4381:10;28263:164;:::i;27515:37::-;27468:168;;;;-1:-1:-1;;;27468:168:0;;11349:2:1;27468:168:0;;;11331:21:1;11388:2;11368:18;;;11361:30;11427:34;11407:18;;;11400:62;11498:26;11478:18;;;11471:54;11542:19;;27468:168:0;11147:420:1;27468:168:0;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;42435:100::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42507:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42435:100:::0;:::o;42543:77::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42599:6:::1;:15:::0;;-1:-1:-1;;42599:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42543:77::o;40037:89::-;40081:7;40104:16;:6;997:14;;905:114;40104:16;40097:23;;40037:89;:::o;28494:339::-;28689:41;4381:10;28708:12;28722:7;28689:18;:41::i;:::-;28681:103;;;;-1:-1:-1;;;28681:103:0;;15659:2:1;28681:103:0;;;15641:21:1;15698:2;15678:18;;;15671:30;15737:34;15717:18;;;15710:62;15808:19;15788:18;;;15781:47;15845:19;;28681:103:0;15457:413:1;28681:103:0;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;42626:188::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42671:12:::1;42697:7;5650:6:::0;;-1:-1:-1;;;;;5650:6:0;;5577:87;42697:7:::1;-1:-1:-1::0;;;;;42689:21:0::1;42718;42689:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42670:74;;;42759:7;42751:57;;;::::0;-1:-1:-1;;;42751:57:0;;16425:2:1;42751:57:0::1;::::0;::::1;16407:21:1::0;16464:2;16444:18;;;16437:30;16503:34;16483:18;;;16476:62;16574:7;16554:18;;;16547:35;16599:19;;42751:57:0::1;16223:401:1::0;42751:57:0::1;42663:151;42626:188::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;40748:167::-;40805:41;4381:10;40824:12;4301:98;40805:41;40797:85;;;;-1:-1:-1;;;40797:85:0;;16831:2:1;40797:85:0;;;16813:21:1;16870:2;16850:18;;;16843:30;16909:33;16889:18;;;16882:61;16960:18;;40797:85:0;16629:355:1;40797:85:0;40893:14;40899:7;40893:5;:14::i;40921:635::-;40996:16;41024:23;41050:17;41060:6;41050:9;:17::i;:::-;41024:43;;41074:30;41121:15;41107:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41107:30:0;-1:-1:-1;41074:63:0;-1:-1:-1;41169:1:0;41144:22;41213:309;41238:15;41220;:33;:64;;;;;41275:9;;41257:14;:27;;41220:64;41213:309;;;41295:25;41323:23;41331:14;41323:7;:23::i;:::-;41295:51;;41382:6;-1:-1:-1;;;;;41361:27:0;:17;-1:-1:-1;;;;;41361:27:0;;41357:131;;;41434:14;41401:13;41415:15;41401:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;41461:17;;;;:::i;:::-;;;;41357:131;41498:16;;;;:::i;:::-;;;;41286:236;41213:309;;;-1:-1:-1;41537:13:0;;40921:635;-1:-1:-1;;;;40921:635:0:o;41990:74::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42046:4:::1;:12:::0;41990:74::o;39349:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39262:82::-;;;;;;;:::i;25879:239::-;25951:7;25987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25987:16:0;26022:19;26014:73;;;;-1:-1:-1;;;26014:73:0;;12185:2:1;26014:73:0;;;12167:21:1;12224:2;12204:18;;;12197:30;12263:34;12243:18;;;12236:62;12334:11;12314:18;;;12307:39;12363:19;;26014:73:0;11983:405:1;25609:208:0;25681:7;-1:-1:-1;;;;;25709:19:0;;25701:74;;;;-1:-1:-1;;;25701:74:0;;11774:2:1;25701:74:0;;;11756:21:1;11813:2;11793:18;;;11786:30;11852:34;11832:18;;;11825:62;11923:12;11903:18;;;11896:40;11953:19;;25701:74:0;11572:406:1;25701:74:0;-1:-1:-1;;;;;;25793:16:0;;;;;:9;:16;;;;;;;25609:208::o;6228:103::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;42329:100::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42401:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26354:104::-:0;26410:13;26443:7;26436:14;;;;;:::i;40132:376::-;40197:11;39871:1;39857:11;:15;:52;;;;;39891:18;;39876:11;:33;;39857:52;39849:85;;;;-1:-1:-1;;;39849:85:0;;9828:2:1;39849:85:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:22;9886:18;;;9879:50;9946:18;;39849:85:0;9626:344:1;39849:85:0;39983:9;;39968:11;39949:16;:6;997:14;;905:114;39949:16;:30;;;;:::i;:::-;:43;;39941:76;;;;-1:-1:-1;;;39941:76:0;;15310:2:1;39941:76:0;;;15292:21:1;15349:2;15329:18;;;15322:30;15388:22;15368:18;;;15361:50;15428:18;;39941:76:0;15108:344:1;39941:76:0;40226:6:::1;::::0;::::1;;40225:7;40217:43;;;::::0;-1:-1:-1;;;40217:43:0;;13730:2:1;40217:43:0::1;::::0;::::1;13712:21:1::0;13769:2;13749:18;;;13742:30;13808:25;13788:18;;;13781:53;13851:18;;40217:43:0::1;13528:347:1::0;40217:43:0::1;40295:11;40288:4;;:18;;;;:::i;:::-;40275:9;:31;;40267:63;;;::::0;-1:-1:-1;;;40267:63:0;;17191:2:1;40267:63:0::1;::::0;::::1;17173:21:1::0;17230:2;17210:18;;;17203:30;17269:21;17249:18;;;17242:49;17308:18;;40267:63:0::1;16989:343:1::0;40267:63:0::1;40381:14;::::0;40352:10:::1;40345:18;::::0;;;:6:::1;:18;::::0;;;;;:32:::1;::::0;40366:11;;40345:32:::1;:::i;:::-;:50;;40337:82;;;::::0;-1:-1:-1;;;40337:82:0;;16077:2:1;40337:82:0::1;::::0;::::1;16059:21:1::0;16116:2;16096:18;;;16089:30;16155:21;16135:18;;;16128:49;16194:18;;40337:82:0::1;15875:343:1::0;40337:82:0::1;40435:10;40428:18;::::0;;;:6:::1;:18;::::0;;;;:33;;40450:11;;40428:18;:33:::1;::::0;40450:11;;40428:33:::1;:::i;:::-;::::0;;;-1:-1:-1;40468:34:0::1;::::0;-1:-1:-1;40478:10:0::1;40490:11:::0;40468:9:::1;:34::i;28037:155::-:0;28132:52;4381:10;28165:8;28175;28132:18;:52::i;42070:130::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42154:18:::1;:40:::0;42070:130::o;29160:328::-;29335:41;4381:10;29368:7;29335:18;:41::i;:::-;29327:103;;;;-1:-1:-1;;;29327:103:0;;15659:2:1;29327:103:0;;;15641:21:1;15698:2;15678:18;;;15671:30;15737:34;15717:18;;;15710:62;15808:19;15788:18;;;15781:47;15845:19;;29327:103:0;15457:413:1;29327:103:0;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;42207:114::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;42283:14:::1;:32:::0;42207:114::o;41562:422::-;31063:4;31087:16;;;:7;:16;;;;;;41661:13;;-1:-1:-1;;;;;31087:16:0;41686:98;;;;-1:-1:-1;;;41686:98:0;;14492:2:1;41686:98:0;;;14474:21:1;14531:2;14511:18;;;14504:30;14570:34;14550:18;;;14543:62;14641:17;14621:18;;;14614:45;14676:19;;41686:98:0;14290:411:1;41686:98:0;41793:28;41824:10;:8;:10::i;:::-;41793:41;;41879:1;41854:14;41848:28;:32;:130;;;;;;;;;;;;;;;;;41916:14;41932:19;:8;:17;:19::i;:::-;41953:9;41899:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41848:130;41841:137;41562:422;-1:-1:-1;;;41562:422:0:o;40587:155::-;40673:11;39871:1;39857:11;:15;:52;;;;;39891:18;;39876:11;:33;;39857:52;39849:85;;;;-1:-1:-1;;;39849:85:0;;9828:2:1;39849:85:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:22;9886:18;;;9879:50;9946:18;;39849:85:0;9626:344:1;39849:85:0;39983:9;;39968:11;39949:16;:6;997:14;;905:114;39949:16;:30;;;;:::i;:::-;:43;;39941:76;;;;-1:-1:-1;;;39941:76:0;;15310:2:1;39941:76:0;;;15292:21:1;15349:2;15329:18;;;15322:30;15388:22;15368:18;;;15361:50;15428:18;;39941:76:0;15108:344:1;39941:76:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23:::1;5789:68;;;::::0;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0::1;::::0;::::1;13351:21:1::0;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0::1;13167:356:1::0;5789:68:0::1;40703:33:::2;40713:9;40724:11;40703:9;:33::i;6486:201::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;13369:2:1;5789:68:0;;;13351:21:1;;;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;13499:18;;5789:68:0;13167:356:1;5789:68:0;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;::::0;-1:-1:-1;;;6567:73:0;;9064:2:1;6567:73:0::1;::::0;::::1;9046:21:1::0;9103:2;9083:18;;;9076:30;9142:34;9122:18;;;9115:62;9213:8;9193:18;;;9186:36;9239:19;;6567:73:0::1;8862:402:1::0;6567:73:0::1;6651:28;6670:8;6651:18;:28::i;34980:174::-:0;35055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35055:29:0;-1:-1:-1;;;;;35055:29:0;;;;;;;;:24;;35109:23;35055:24;35109:14;:23::i;:::-;-1:-1:-1;;;;;35100:46:0;;;;;;;;;;;34980:174;;:::o;31292:348::-;31385:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;31402:73;;;;-1:-1:-1;;;31402:73:0;;10936:2:1;31402:73:0;;;10918:21:1;10975:2;10955:18;;;10948:30;11014:34;10994:18;;;10987:62;-1:-1:-1;;;11065:18:1;;;11058:42;11117:19;;31402:73:0;10734:408:1;31402:73:0;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;-1:-1:-1;;;;;31544:16:0;:7;-1:-1:-1;;;;;31544:16:0;;:51;;;;31588:7;-1:-1:-1;;;;;31564:31:0;:20;31576:7;31564:11;:20::i;:::-;-1:-1:-1;;;;;31564:31:0;;31544:51;:87;;;-1:-1:-1;;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31599:32;31536:96;31292:348;-1:-1:-1;;;;31292:348:0:o;34284:578::-;34443:4;-1:-1:-1;;;;;34416:31:0;:23;34431:7;34416:14;:23::i;:::-;-1:-1:-1;;;;;34416:31:0;;34408:85;;;;-1:-1:-1;;;34408:85:0;;14082:2:1;34408:85:0;;;14064:21:1;14121:2;14101:18;;;14094:30;14160:34;14140:18;;;14133:62;14231:11;14211:18;;;14204:39;14260:19;;34408:85:0;13880:405:1;34408:85:0;-1:-1:-1;;;;;34512:16:0;;34504:65;;;;-1:-1:-1;;;34504:65:0;;10177:2:1;34504:65:0;;;10159:21:1;10216:2;10196:18;;;10189:30;10255:34;10235:18;;;10228:62;10326:6;10306:18;;;10299:34;10350:19;;34504:65:0;9975:400:1;34504:65:0;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;-1:-1:-1;;;;;34728:15:0;;;;;;:9;:15;;;;;:20;;34747:1;;34728:15;:20;;34747:1;;34728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34759:13:0;;;;;;:9;:13;;;;;:18;;34776:1;;34759:13;:18;;34776:1;;34759:18;:::i;:::-;;;;-1:-1:-1;;34788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34788:21:0;-1:-1:-1;;;;;34788:21:0;;;;;;;;;34827:27;;34788:16;;34827:27;;;;;;;34284:578;;;:::o;33587:360::-;33647:13;33663:23;33678:7;33663:14;:23::i;:::-;33647:39;;33788:29;33805:1;33809:7;33788:8;:29::i;:::-;-1:-1:-1;;;;;33830:16:0;;;;;;:9;:16;;;;;:21;;33850:1;;33830:16;:21;;33850:1;;33830:21;:::i;:::-;;;;-1:-1:-1;;33869:16:0;;;;:7;:16;;;;;;33862:23;;-1:-1:-1;;;;;;33862:23:0;;;33903:36;33877:7;;33869:16;-1:-1:-1;;;;;33903:36:0;;;;;33869:16;;33903:36;33636:311;33587:360;:::o;6847:191::-;6940:6;;;-1:-1:-1;;;;;6957:17:0;;;-1:-1:-1;;;;;;6957:17:0;;;;;;;6990:40;;6940:6;;;6957:17;6940:6;;6990:40;;6921:16;;6990:40;6910:128;6847:191;:::o;42820:204::-;42900:9;42895:124;42919:11;42915:1;:15;42895:124;;;42946:18;:6;1116:19;;1134:1;1116:19;;;1027:127;42946:18;42973:38;42983:9;42994:16;:6;997:14;;905:114;42994:16;42973:9;:38::i;:::-;42932:3;;;;:::i;:::-;;;;42895:124;;35296:315;35451:8;-1:-1:-1;;;;;35442:17:0;:5;-1:-1:-1;;;;;35442:17:0;;;35434:55;;;;-1:-1:-1;;;35434:55:0;;10582:2:1;35434:55:0;;;10564:21:1;10621:2;10601:18;;;10594:30;10660:27;10640:18;;;10633:55;10705:18;;35434:55:0;10380:349:1;35434:55:0;-1:-1:-1;;;;;35500:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35500:46:0;;;;;;;;;;35562:41;;8167::1;;;35562::0;;8140:18:1;35562:41:0;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;-1:-1:-1;;;30566:111:0;;8645:2:1;30566:111:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;30566:111:0;8443:414:1;43030:104:0;43090:13;43119:9;43112:16;;;;;:::i;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;;2167:10:0;;;;;;;;;;;;;;;;;;1863:723::o;2136:53::-;2214:5;2199:12;2255:78;2262:9;;2255:78;;2288:8;;;;:::i;:::-;;-1:-1:-1;2311:10:0;;-1:-1:-1;2319:2:0;2311:10;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2365:17:0;;2343:39;;2393:154;2400:10;;2393:154;;2427:11;2437:1;2427:11;;:::i;:::-;;-1:-1:-1;2496:10:0;2504:2;2496:5;:10;:::i;:::-;2483:24;;:2;:24;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;31982:110;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;36176:799::-;36331:4;-1:-1:-1;;;;;36352:13:0;;8188:20;8236:8;36348:620;;36388:72;;-1:-1:-1;;;36388:72:0;;-1:-1:-1;;;;;36388:36:0;;;;;:72;;4381:10;;36439:4;;36445:7;;36454:5;;36388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36388:72:0;;;;;;;;-1:-1:-1;;36388:72:0;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36630:13:0;;36626:272;;36673:60;;-1:-1:-1;;;36673:60:0;;8645:2:1;36673:60:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;36673:60:0;8443:414:1;36626:272:0;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;-1:-1:-1;;;;;;36511:51:0;-1:-1:-1;;;36511:51:0;;-1:-1:-1;36504:58:0;;36348:620;-1:-1:-1;36952:4:0;36176:799;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;-1:-1:-1;;;32478:154:0;;8645:2:1;32478:154:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;32478:154:0;8443:414:1;32976:382:0;-1:-1:-1;;;;;33056:16:0;;33048:61;;;;-1:-1:-1;;;33048:61:0;;12595:2:1;33048:61:0;;;12577:21:1;;;12614:18;;;12607:30;12673:34;12653:18;;;12646:62;12725:18;;33048:61:0;12393:356:1;33048:61:0;31063:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;:30;33120:58;;;;-1:-1:-1;;;33120:58:0;;9471:2:1;33120:58:0;;;9453:21:1;9510:2;9490:18;;;9483:30;9549;9529:18;;;9522:58;9597:18;;33120:58:0;9269:352:1;33120:58:0;-1:-1:-1;;;;;33249:13:0;;;;;;:9;:13;;;;;:18;;33266:1;;33249:13;:18;;33266:1;;33249:18;:::i;:::-;;;;-1:-1:-1;;33278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33278:21:0;-1:-1:-1;;;;;33278:21:0;;;;;;;;33317:33;;33278:16;;;33317:33;;33278:16;;33317:33;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:254::-;4391:6;4399;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4504:9;4491:23;4481:33;;4533:38;4567:2;4556:9;4552:18;4533:38;:::i;4582:257::-;4623:3;4661:5;4655:12;4688:6;4683:3;4676:19;4704:63;4760:6;4753:4;4748:3;4744:14;4737:4;4730:5;4726:16;4704:63;:::i;:::-;4821:2;4800:15;-1:-1:-1;;4796:29:1;4787:39;;;;4828:4;4783:50;;4582:257;-1:-1:-1;;4582:257:1:o;4844:1584::-;5068:3;5106:6;5100:13;5132:4;5145:51;5189:6;5184:3;5179:2;5171:6;5167:15;5145:51;:::i;:::-;5259:13;;5218:16;;;;5281:55;5259:13;5218:16;5303:15;;;5281:55;:::i;:::-;5425:13;;5358:20;;;5398:1;;5485;5507:18;;;;5560;;;;5587:93;;5665:4;5655:8;5651:19;5639:31;;5587:93;5728:2;5718:8;5715:16;5695:18;5692:40;5689:224;;;-1:-1:-1;;;5762:3:1;5755:90;5868:4;5865:1;5858:15;5898:4;5893:3;5886:17;5689:224;5929:18;5956:110;;;;6080:1;6075:328;;;;5922:481;;5956:110;-1:-1:-1;;5991:24:1;;5977:39;;6036:20;;;;-1:-1:-1;5956:110:1;;6075:328;17592:1;17585:14;;;17629:4;17616:18;;6170:1;6184:169;6198:8;6195:1;6192:15;6184:169;;;6280:14;;6265:13;;;6258:37;6323:16;;;;6215:10;;6184:169;;;6188:3;;6384:8;6377:5;6373:20;6366:27;;5922:481;-1:-1:-1;6419:3:1;;4844:1584;-1:-1:-1;;;;;;;;;;;4844:1584:1:o;6874:511::-;7068:4;-1:-1:-1;;;;;7178:2:1;7170:6;7166:15;7155:9;7148:34;7230:2;7222:6;7218:15;7213:2;7202:9;7198:18;7191:43;;7270:6;7265:2;7254:9;7250:18;7243:34;7313:3;7308:2;7297:9;7293:18;7286:31;7334:45;7374:3;7363:9;7359:19;7351:6;7334:45;:::i;:::-;7326:53;6874:511;-1:-1:-1;;;;;;6874:511:1:o;7390:632::-;7561:2;7613:21;;;7683:13;;7586:18;;;7705:22;;;7532:4;;7561:2;7784:15;;;;7758:2;7743:18;;;7532:4;7827:169;7841:6;7838:1;7835:13;7827:169;;;7902:13;;7890:26;;7971:15;;;;7936:12;;;;7863:1;7856:9;7827:169;;;-1:-1:-1;8013:3:1;;7390:632;-1:-1:-1;;;;;;7390:632:1:o;8219:219::-;8368:2;8357:9;8350:21;8331:4;8388:44;8428:2;8417:9;8413:18;8405:6;8388:44;:::i;17645:128::-;17685:3;17716:1;17712:6;17709:1;17706:13;17703:39;;;17722:18;;:::i;:::-;-1:-1:-1;17758:9:1;;17645:128::o;17778:120::-;17818:1;17844;17834:35;;17849:18;;:::i;:::-;-1:-1:-1;17883:9:1;;17778:120::o;17903:168::-;17943:7;18009:1;18005;18001:6;17997:14;17994:1;17991:21;17986:1;17979:9;17972:17;17968:45;17965:71;;;18016:18;;:::i;:::-;-1:-1:-1;18056:9:1;;17903:168::o;18076:125::-;18116:4;18144:1;18141;18138:8;18135:34;;;18149:18;;:::i;:::-;-1:-1:-1;18186:9:1;;18076:125::o;18206:258::-;18278:1;18288:113;18302:6;18299:1;18296:13;18288:113;;;18378:11;;;18372:18;18359:11;;;18352:39;18324:2;18317:10;18288:113;;;18419:6;18416:1;18413:13;18410:48;;;-1:-1:-1;;18454:1:1;18436:16;;18429:27;18206:258::o;18469:437::-;18548:1;18544:12;;;;18591;;;18612:61;;18666:4;18658:6;18654:17;18644:27;;18612:61;18719:2;18711:6;18708:14;18688:18;18685:38;18682:218;;;-1:-1:-1;;;18753:1:1;18746:88;18857:4;18854:1;18847:15;18885:4;18882:1;18875:15;18682:218;;18469:437;;;:::o;18911:135::-;18950:3;-1:-1:-1;;18971:17:1;;18968:43;;;18991:18;;:::i;:::-;-1:-1:-1;19038:1:1;19027:13;;18911:135::o;19051:112::-;19083:1;19109;19099:35;;19114:18;;:::i;:::-;-1:-1:-1;19148:9:1;;19051:112::o;19168:184::-;-1:-1:-1;;;19217:1:1;19210:88;19317:4;19314:1;19307:15;19341:4;19338:1;19331:15;19357:184;-1:-1:-1;;;19406:1:1;19399:88;19506:4;19503:1;19496:15;19530:4;19527:1;19520:15;19546:184;-1:-1:-1;;;19595:1:1;19588:88;19695:4;19692:1;19685:15;19719:4;19716:1;19709:15;19735:184;-1:-1:-1;;;19784:1:1;19777:88;19884:4;19881:1;19874:15;19908:4;19905:1;19898:15;19924:177;-1:-1:-1;;;;;;20002:5:1;19998:78;19991:5;19988:89;19978:117;;20091:1;20088;20081:12

Swarm Source

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