ETH Price: $3,404.19 (+1.39%)

Token

ONE WRLD (CITIZEN ID)
 

Overview

Max Total Supply

0 CITIZEN ID

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CITIZEN ID
0x4c65767a604011ea3fb0974d8f1803cd48472fea
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:
Citizens

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (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.0 (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.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (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.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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/Citizens.sol

// contracts/Citizens.sol

pragma solidity 0.8.10;




contract Citizens is ERC721, Ownable {
    using Strings for uint256;

    // Counter
    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    // Constant variables
    // ------------------------------------------------------------------------

    uint256 public constant TOTAL_SUPPLY = 3000; // Total amount of Citizens
    uint256 public constant RESERVED_SUPPLY = 100; // Amount of Citizens reserved for the contract
    uint256 public constant MAX_SUPPLY = TOTAL_SUPPLY - RESERVED_SUPPLY; // Maximum amount of Citizens
    uint256 public constant PRESALE_SUPPLY = 1500; // Presale supply
    uint256 public constant MAX_PER_TX = 10; // Max amount of Citizens per tx (public sale)
    uint256 public constant PRICE = 0.04 ether;
    uint256 public constant PRESALE_MAX_MINT = 3;
    uint256 public constant MAX_MINT_PUBLIC = 20;

    // Team addresses
    // ------------------------------------------------------------------------
    address private constant _a1 = 0x926b8edBef960305cBcAA839b1019c0a54358f2C; // fredo
    address private constant _a2 = 0x6f0ce6920568e2D55eB1074314df3ea61584980b; // sammi
    address private constant _a3 = 0xA582ad581f44Bf431f5f020242ab91a25170E200; // shellz

    // State variables
    // ------------------------------------------------------------------------
    bool public isPresaleActive = false;
    bool public isPublicSaleActive = false;
    bool public revealed = false;

    // Presale arrays
    // ------------------------------------------------------------------------
    mapping(address => bool) private _presaleEligible;
    mapping(address => uint256) private _presaleClaimed;

    // URI variables
    // ------------------------------------------------------------------------
    string public notRevealedURI;
    string baseURI;

    // Events
    // ------------------------------------------------------------------------
    event BaseTokenURIChanged(string baseTokenURI);

    // Constructor
    // ------------------------------------------------------------------------
    constructor(string memory _initNotRevealedUri)
        ERC721("ONE WRLD", "CITIZEN ID")
    {
        setNotRevealedURI(_initNotRevealedUri);
    }

    // Modifiers
    // ------------------------------------------------------------------------
    modifier onlyPresale() {
        require(isPresaleActive, "PRESALE_NOT_ACTIVE");
        _;
    }

    modifier onlyPublicSale() {
        require(isPublicSaleActive, "PUBLIC_SALE_NOT_ACTIVE");
        _;
    }

    // Anti-bot functions
    // ------------------------------------------------------------------------

    function isContractCall(address addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(addr)
        }
        return size > 0;
    }

    // Presale functions
    // ------------------------------------------------------------------------
    function addToPresaleList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(!_presaleEligible[addresses[i]], "DUPLICATE_ENTRY");

            _presaleEligible[addresses[i]] = true;
            _presaleClaimed[addresses[i]] = 0;
        }
    }

    function removeFromPresaleList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(_presaleEligible[addresses[i]], "NOT_IN_PRESALE");

            _presaleEligible[addresses[i]] = false;
        }
    }

    function isEligibleForPresale(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _presaleEligible[addr];
    }

    function hasClaimedPresale(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _presaleClaimed[addr] >= 1;
    }

    function togglePresaleStatus() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function togglePublicSaleStatus() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    // Mint functions
    // ------------------------------------------------------------------------
    function claimReservedCitizen(uint256 quantity, address addr)
        external
        onlyOwner
    {
        require(_tokenSupply.current() < TOTAL_SUPPLY, "SOLD_OUT");
        require(
            _tokenSupply.current() + quantity <= TOTAL_SUPPLY,
            "EXCEEDS_TOTAL_SUPPLY"
        );

        for (uint256 i = 0; i < quantity; i++) {
            _tokenSupply.increment();
            _safeMint(addr, _tokenSupply.current());
        }
    }

    function claimPresaleCitizen(uint256 quantity) external payable onlyPresale {
        require(_presaleEligible[msg.sender], "NOT_ELIGIBLE_FOR_PRESALE");
        require(_presaleClaimed[msg.sender] + quantity <= PRESALE_MAX_MINT, "PRESALE_MAX_CLAIMED");
        require(_tokenSupply.current() < PRESALE_SUPPLY, "PRESALE_SOLD_OUT");
        require(
            _tokenSupply.current() + quantity <= PRESALE_SUPPLY,
            "EXCEEDS_PRESALE_SUPPLY"
        );

        if (msg.sender != owner()) {
            require(PRICE * quantity == msg.value, "INVALID_ETH_AMOUNT");
        }

        for (uint256 i = 0; i < quantity; i++) {
            _presaleClaimed[msg.sender] += 1;
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());
        }
    }

    function getBalanceOfAddress(address addr) public view returns (uint256) {
      return balanceOf(addr);
    }

    function mint(uint256 quantity) external payable onlyPublicSale {
        require(tx.origin == msg.sender, "GO_AWAY_BOT_ORIGIN");
        require(!isContractCall(msg.sender), "GO_AWAY_BOT_CONTRACT");
        require(quantity <= MAX_MINT_PUBLIC, "PUBLIC_SALE_MAX_CLAIMED");

        require(_tokenSupply.current() < MAX_SUPPLY, "SOLD_OUT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(quantity <= MAX_PER_TX, "EXCEEDS_MAX_MINT");
        require(
            _tokenSupply.current() + quantity <= MAX_SUPPLY,
            "EXCEEDS_MAX_SUPPLY"
        );

        if (msg.sender != owner()) {
            require(PRICE * quantity == msg.value, "INVALID_ETH_AMOUNT");
        }

        for (uint256 i = 0; i < quantity; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());
        }
    }
    
    function tokensMinted() public view returns (uint256) {
      return _tokenSupply.current();
    }

    // Base URI Functions
    // ------------------------------------------------------------------------

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedURI;
        }

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

    //only owner
    function reveal(string memory revealedURI) public onlyOwner {
        baseURI = revealedURI;
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

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

    // Withdrawal functions
    // ------------------------------------------------------------------------
    function withdrawAll() external onlyOwner {
        uint256 _a1amount = (address(this).balance * 20) / 100;
        uint256 _a2amount = (address(this).balance * 40) / 100;
        uint256 _a3amount = (address(this).balance * 40) / 100;

        require(payable(_a1).send(_a1amount), "FAILED_TO_SEND_TO_A1");
        require(payable(_a2).send(_a2amount), "FAILED_TO_SEND_TO_A2");
        require(payable(_a3).send(_a3amount), "FAILED_TO_SEND_TO_A3");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"BaseTokenURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claimPresaleCitizen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"claimReservedCitizen","outputs":[],"stateMutability":"nonpayable","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":"addr","type":"address"}],"name":"getBalanceOfAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasClaimedPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isEligibleForPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805462ffffff191690553480156200001d57600080fd5b5060405162002ea138038062002ea1833981016040819052620000409162000261565b604080518082018252600881526713d3914815d4931160c21b60208083019182528351808501909452600a84526910d2551256915388125160b21b9084015281519192916200009291600091620001a5565b508051620000a8906001906020840190620001a5565b505050620000c5620000bf620000d760201b60201c565b620000db565b620000d0816200012d565b506200037a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200018c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a190600b906020840190620001a5565b5050565b828054620001b3906200033d565b90600052602060002090601f016020900481019282620001d7576000855562000222565b82601f10620001f257805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022257825182559160200191906001019062000205565b506200023092915062000234565b5090565b5b8082111562000230576000815560010162000235565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200027557600080fd5b82516001600160401b03808211156200028d57600080fd5b818501915085601f830112620002a257600080fd5b815181811115620002b757620002b76200024b565b604051601f8201601f19908116603f01168101908382118183101715620002e257620002e26200024b565b816040528281528886848701011115620002fb57600080fd5b600093505b828410156200031f578484018601518185018701529285019262000300565b82841115620003315760008684830101525b98975050505050505050565b600181811c908216806200035257607f821691505b602082108114156200037457634e487b7160e01b600052602260045260246000fd5b50919050565b612b17806200038a6000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063a0712d68116100b6578063b9ad9fde1161007a578063b9ad9fde14610696578063c87b56dd146106ab578063e985e9c5146106cb578063f2c4ce1e14610714578063f2fde38b14610734578063f43a22dc1461075457600080fd5b8063a0712d6814610603578063a22cb46514610616578063a665c4a414610636578063b179e06014610656578063b88d4fde1461067657600080fd5b8063853828b611610108578063853828b61461056a5780638d859f3e1461057f5780638da5cb5b1461059a578063902d55a5146105b857806395d89b41146105ce5780639a559e13146105e357600080fd5b8063715018a6146104f55780637204a3c91461050a578063722503801461052a57806373138e4f1461053f5780637bffb4ce1461055557600080fd5b806332cb6b0c116101dd57806355f804b3116101a157806355f804b31461045157806360d938dc1461047157806363172ac11461048b5780636352211e146104a05780636de9f32b146104c057806370a08231146104d557600080fd5b806332cb6b0c146103c757806342842e0e146103dc5780634c261247146103fc578063518302271461041c578063549527c31461043c57600080fd5b806316ab41221161022457806316ab41221461033257806317b8f096146103455780631e84c4131461036557806323b872dd1461038457806331a53e9a146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806314a7068a14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046124a6565b610769565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107bb565b60405161028d919061251b565b3480156102c457600080fd5b506102d86102d336600461252e565b61084d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612563565b6108e7565b005b34801561031e57600080fd5b5061028161032d36600461258d565b6109fd565b61031061034036600461252e565b610a45565b34801561035157600080fd5b506103106103603660046125a8565b610cbe565b34801561037157600080fd5b5060085461028190610100900460ff1681565b34801561039057600080fd5b5061031061039f3660046125d4565b610dc0565b3480156103b057600080fd5b506103b9606481565b60405190815260200161028d565b3480156103d357600080fd5b506103b9610df1565b3480156103e857600080fd5b506103106103f73660046125d4565b610e01565b34801561040857600080fd5b5061031061041736600461269c565b610e1c565b34801561042857600080fd5b506008546102819062010000900460ff1681565b34801561044857600080fd5b506103b9600381565b34801561045d57600080fd5b5061031061046c36600461269c565b610e6e565b34801561047d57600080fd5b506008546102819060ff1681565b34801561049757600080fd5b506103b9601481565b3480156104ac57600080fd5b506102d86104bb36600461252e565b610eab565b3480156104cc57600080fd5b506103b9610f22565b3480156104e157600080fd5b506103b96104f036600461258d565b610f32565b34801561050157600080fd5b50610310610fb9565b34801561051657600080fd5b506103106105253660046126e5565b610fef565b34801561053657600080fd5b506102ab6111a9565b34801561054b57600080fd5b506103b96105dc81565b34801561056157600080fd5b50610310611237565b34801561057657600080fd5b50610310611275565b34801561058b57600080fd5b506103b9668e1bc9bf04000081565b3480156105a657600080fd5b506006546001600160a01b03166102d8565b3480156105c457600080fd5b506103b9610bb881565b3480156105da57600080fd5b506102ab61144a565b3480156105ef57600080fd5b506102816105fe36600461258d565b611459565b61031061061136600461252e565b6114a0565b34801561062257600080fd5b5061031061063136600461275a565b6117a9565b34801561064257600080fd5b506103b961065136600461258d565b6117b4565b34801561066257600080fd5b506103106106713660046126e5565b6117bf565b34801561068257600080fd5b50610310610691366004612796565b611930565b3480156106a257600080fd5b50610310611968565b3480156106b757600080fd5b506102ab6106c636600461252e565b6119af565b3480156106d757600080fd5b506102816106e6366004612812565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b5061031061072f36600461269c565b611b2c565b34801561074057600080fd5b5061031061074f36600461258d565b611b69565b34801561076057600080fd5b506103b9600a81565b60006001600160e01b031982166380ac58cd60e01b148061079a57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107ca9061283c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f69061283c565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f282610eab565b9050806001600160a01b0316836001600160a01b031614156109605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c2565b336001600160a01b038216148061097c575061097c81336106e6565b6109ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c2565b6109f88383611c04565b505050565b60006001600160a01b038216610a255760405162461bcd60e51b81526004016108c290612877565b506001600160a01b03166000908152600a60205260409020546001111590565b60085460ff16610a8c5760405162461bcd60e51b815260206004820152601260248201527150524553414c455f4e4f545f41435449564560701b60448201526064016108c2565b3360009081526009602052604090205460ff16610aeb5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f454c494749424c455f464f525f50524553414c45000000000000000060448201526064016108c2565b336000908152600a6020526040902054600390610b099083906128b3565b1115610b4d5760405162461bcd60e51b815260206004820152601360248201527214149154d0531157d3505617d0d31052535151606a1b60448201526064016108c2565b6105dc610b5960075490565b10610b995760405162461bcd60e51b815260206004820152601060248201526f14149154d0531157d4d3d31117d3d55560821b60448201526064016108c2565b6105dc81610ba660075490565b610bb091906128b3565b1115610bf75760405162461bcd60e51b8152602060048201526016602482015275455843454544535f50524553414c455f535550504c5960501b60448201526064016108c2565b6006546001600160a01b03163314610c5d5734610c1b82668e1bc9bf0400006128cb565b14610c5d5760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108c2565b60005b81811015610cba57336000908152600a60205260408120805460019290610c889084906128b3565b9091555050600780546001019055610ca833610ca360075490565b611c72565b80610cb2816128ea565b915050610c60565b5050565b6006546001600160a01b03163314610ce85760405162461bcd60e51b81526004016108c290612905565b610bb8610cf460075490565b10610d2c5760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b60448201526064016108c2565b610bb882610d3960075490565b610d4391906128b3565b1115610d885760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016108c2565b60005b828110156109f857610da1600780546001019055565b610dae82610ca360075490565b80610db8816128ea565b915050610d8b565b610dca3382611c8c565b610de65760405162461bcd60e51b81526004016108c29061293a565b6109f8838383611d83565b610dfe6064610bb861298b565b81565b6109f883838360405180602001604052806000815250611930565b6006546001600160a01b03163314610e465760405162461bcd60e51b81526004016108c290612905565b8051610e5990600c9060208401906123f7565b50506008805462ff0000191662010000179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b81526004016108c290612905565b8051610cba90600c9060208401906123f7565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c2565b6000610f2d60075490565b905090565b60006001600160a01b038216610f9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fe35760405162461bcd60e51b81526004016108c290612905565b610fed6000611f23565b565b6006546001600160a01b031633146110195760405162461bcd60e51b81526004016108c290612905565b60005b818110156109f8576000838383818110611038576110386129a2565b905060200201602081019061104d919061258d565b6001600160a01b031614156110745760405162461bcd60e51b81526004016108c290612877565b6009600084848481811061108a5761108a6129a2565b905060200201602081019061109f919061258d565b6001600160a01b0316815260208101919091526040016000205460ff16156110fb5760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016108c2565b600160096000858585818110611113576111136129a2565b9050602002016020810190611128919061258d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600a81858585818110611168576111686129a2565b905060200201602081019061117d919061258d565b6001600160a01b03168152602081019190915260400160002055806111a1816128ea565b91505061101c565b600b80546111b69061283c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e29061283c565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b505050505081565b6006546001600160a01b031633146112615760405162461bcd60e51b81526004016108c290612905565b6008805460ff19811660ff90911615179055565b6006546001600160a01b0316331461129f5760405162461bcd60e51b81526004016108c290612905565b600060646112ae4760146128cb565b6112b891906129ce565b9050600060646112c94760286128cb565b6112d391906129ce565b9050600060646112e44760286128cb565b6112ee91906129ce565b60405190915073926b8edbef960305cbcaa839b1019c0a54358f2c9084156108fc029085906000818181858888f193505050506113645760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413160601b60448201526064016108c2565b604051736f0ce6920568e2d55eb1074314df3ea61584980b9083156108fc029084906000818181858888f193505050506113d75760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09960611b60448201526064016108c2565b60405173a582ad581f44bf431f5f020242ab91a25170e2009082156108fc029083906000818181858888f193505050506109f85760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413360601b60448201526064016108c2565b6060600180546107ca9061283c565b60006001600160a01b0382166114815760405162461bcd60e51b81526004016108c290612877565b506001600160a01b031660009081526009602052604090205460ff1690565b600854610100900460ff166114f05760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016108c2565b3233146115345760405162461bcd60e51b815260206004820152601260248201527123a7afa0aba0acafa127aa2fa7a924a3a4a760711b60448201526064016108c2565b333b1561157a5760405162461bcd60e51b815260206004820152601460248201527311d3d7d055d05657d093d517d0d3d395149050d560621b60448201526064016108c2565b60148111156115cb5760405162461bcd60e51b815260206004820152601760248201527f5055424c49435f53414c455f4d41585f434c41494d454400000000000000000060448201526064016108c2565b6115d86064610bb861298b565b600754106116135760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b60448201526064016108c2565b600081116116635760405162461bcd60e51b815260206004820152601760248201527f5155414e544954595f43414e4e4f545f42455f5a45524f00000000000000000060448201526064016108c2565b600a8111156116a75760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108c2565b6116b46064610bb861298b565b816116be60075490565b6116c891906128b3565b111561170b5760405162461bcd60e51b8152602060048201526012602482015271455843454544535f4d41585f535550504c5960701b60448201526064016108c2565b6006546001600160a01b03163314611771573461172f82668e1bc9bf0400006128cb565b146117715760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108c2565b60005b81811015610cba5761178a600780546001019055565b61179733610ca360075490565b806117a1816128ea565b915050611774565b610cba338383611f75565b60006107b582610f32565b6006546001600160a01b031633146117e95760405162461bcd60e51b81526004016108c290612905565b60005b818110156109f8576000838383818110611808576118086129a2565b905060200201602081019061181d919061258d565b6001600160a01b031614156118445760405162461bcd60e51b81526004016108c290612877565b6009600084848481811061185a5761185a6129a2565b905060200201602081019061186f919061258d565b6001600160a01b0316815260208101919091526040016000205460ff166118c95760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016108c2565b6000600960008585858181106118e1576118e16129a2565b90506020020160208101906118f6919061258d565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611928816128ea565b9150506117ec565b61193a3383611c8c565b6119565760405162461bcd60e51b81526004016108c29061293a565b61196284848484612044565b50505050565b6006546001600160a01b031633146119925760405162461bcd60e51b81526004016108c290612905565b6008805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b0316611a2e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c2565b60085462010000900460ff16611ad057600b8054611a4b9061283c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a779061283c565b8015611ac45780601f10611a9957610100808354040283529160200191611ac4565b820191906000526020600020905b815481529060010190602001808311611aa757829003601f168201915b50505050509050919050565b6000611ada612077565b90506000815111611afa5760405180602001604052806000815250611b25565b80611b0484612086565b604051602001611b159291906129e2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b565760405162461bcd60e51b81526004016108c290612905565b8051610cba90600b9060208401906123f7565b6006546001600160a01b03163314611b935760405162461bcd60e51b81526004016108c290612905565b6001600160a01b038116611bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c2565b611c0181611f23565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c3982610eab565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610cba828260405180602001604052806000815250612184565b6000818152600260205260408120546001600160a01b0316611d055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c2565b6000611d1083610eab565b9050806001600160a01b0316846001600160a01b03161480611d4b5750836001600160a01b0316611d408461084d565b6001600160a01b0316145b80611d7b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d9682610eab565b6001600160a01b031614611dfe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c2565b6001600160a01b038216611e605760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c2565b611e6b600082611c04565b6001600160a01b0383166000908152600360205260408120805460019290611e9490849061298b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ec29084906128b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204f848484611d83565b61205b848484846121b7565b6119625760405162461bcd60e51b81526004016108c290612a21565b6060600c80546107ca9061283c565b6060816120aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d457806120be816128ea565b91506120cd9050600a836129ce565b91506120ae565b60008167ffffffffffffffff8111156120ef576120ef612610565b6040519080825280601f01601f191660200182016040528015612119576020820181803683370190505b5090505b8415611d7b5761212e60018361298b565b915061213b600a86612a73565b6121469060306128b3565b60f81b81838151811061215b5761215b6129a2565b60200101906001600160f81b031916908160001a90535061217d600a866129ce565b945061211d565b61218e83836122b5565b61219b60008484846121b7565b6109f85760405162461bcd60e51b81526004016108c290612a21565b60006001600160a01b0384163b156122aa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121fb903390899088908890600401612a87565b6020604051808303816000875af1925050508015612236575060408051601f3d908101601f1916820190925261223391810190612ac4565b60015b612290573d808015612264576040519150601f19603f3d011682016040523d82523d6000602084013e612269565b606091505b5080516122885760405162461bcd60e51b81526004016108c290612a21565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7b565b506001949350505050565b6001600160a01b03821661230b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c2565b6000818152600260205260409020546001600160a01b0316156123705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c2565b6001600160a01b03821660009081526003602052604081208054600192906123999084906128b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124039061283c565b90600052602060002090601f016020900481019282612425576000855561246b565b82601f1061243e57805160ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246b578251825591602001919060010190612450565b5061247792915061247b565b5090565b5b80821115612477576000815560010161247c565b6001600160e01b031981168114611c0157600080fd5b6000602082840312156124b857600080fd5b8135611b2581612490565b60005b838110156124de5781810151838201526020016124c6565b838111156119625750506000910152565b600081518084526125078160208601602086016124c3565b601f01601f19169290920160200192915050565b602081526000611b2560208301846124ef565b60006020828403121561254057600080fd5b5035919050565b80356001600160a01b038116811461255e57600080fd5b919050565b6000806040838503121561257657600080fd5b61257f83612547565b946020939093013593505050565b60006020828403121561259f57600080fd5b611b2582612547565b600080604083850312156125bb57600080fd5b823591506125cb60208401612547565b90509250929050565b6000806000606084860312156125e957600080fd5b6125f284612547565b925061260060208501612547565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561264157612641612610565b604051601f8501601f19908116603f0116810190828211818310171561266957612669612610565b8160405280935085815286868601111561268257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126ae57600080fd5b813567ffffffffffffffff8111156126c557600080fd5b8201601f810184136126d657600080fd5b611d7b84823560208401612626565b600080602083850312156126f857600080fd5b823567ffffffffffffffff8082111561271057600080fd5b818501915085601f83011261272457600080fd5b81358181111561273357600080fd5b8660208260051b850101111561274857600080fd5b60209290920196919550909350505050565b6000806040838503121561276d57600080fd5b61277683612547565b91506020830135801515811461278b57600080fd5b809150509250929050565b600080600080608085870312156127ac57600080fd5b6127b585612547565b93506127c360208601612547565b925060408501359150606085013567ffffffffffffffff8111156127e657600080fd5b8501601f810187136127f757600080fd5b61280687823560208401612626565b91505092959194509250565b6000806040838503121561282557600080fd5b61282e83612547565b91506125cb60208401612547565b600181811c9082168061285057607f821691505b6020821081141561287157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128c6576128c661289d565b500190565b60008160001904831182151516156128e5576128e561289d565b500290565b60006000198214156128fe576128fe61289d565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008282101561299d5761299d61289d565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826129dd576129dd6129b8565b500490565b600083516129f48184602088016124c3565b835190830190612a088183602088016124c3565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a8257612a826129b8565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aba908301846124ef565b9695505050505050565b600060208284031215612ad657600080fd5b8151611b258161249056fea2646970667358221220d849d0ddf6152103456cc285bdd3fe7a42aa5aeb1b50430d86e88bdd3b5325e264736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d6433597435536768644d545537466b437a7a5334794c443658733753613464564578714654777679637541522f70617373706f72742e6a736f6e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063a0712d68116100b6578063b9ad9fde1161007a578063b9ad9fde14610696578063c87b56dd146106ab578063e985e9c5146106cb578063f2c4ce1e14610714578063f2fde38b14610734578063f43a22dc1461075457600080fd5b8063a0712d6814610603578063a22cb46514610616578063a665c4a414610636578063b179e06014610656578063b88d4fde1461067657600080fd5b8063853828b611610108578063853828b61461056a5780638d859f3e1461057f5780638da5cb5b1461059a578063902d55a5146105b857806395d89b41146105ce5780639a559e13146105e357600080fd5b8063715018a6146104f55780637204a3c91461050a578063722503801461052a57806373138e4f1461053f5780637bffb4ce1461055557600080fd5b806332cb6b0c116101dd57806355f804b3116101a157806355f804b31461045157806360d938dc1461047157806363172ac11461048b5780636352211e146104a05780636de9f32b146104c057806370a08231146104d557600080fd5b806332cb6b0c146103c757806342842e0e146103dc5780634c261247146103fc578063518302271461041c578063549527c31461043c57600080fd5b806316ab41221161022457806316ab41221461033257806317b8f096146103455780631e84c4131461036557806323b872dd1461038457806331a53e9a146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806314a7068a14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046124a6565b610769565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107bb565b60405161028d919061251b565b3480156102c457600080fd5b506102d86102d336600461252e565b61084d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612563565b6108e7565b005b34801561031e57600080fd5b5061028161032d36600461258d565b6109fd565b61031061034036600461252e565b610a45565b34801561035157600080fd5b506103106103603660046125a8565b610cbe565b34801561037157600080fd5b5060085461028190610100900460ff1681565b34801561039057600080fd5b5061031061039f3660046125d4565b610dc0565b3480156103b057600080fd5b506103b9606481565b60405190815260200161028d565b3480156103d357600080fd5b506103b9610df1565b3480156103e857600080fd5b506103106103f73660046125d4565b610e01565b34801561040857600080fd5b5061031061041736600461269c565b610e1c565b34801561042857600080fd5b506008546102819062010000900460ff1681565b34801561044857600080fd5b506103b9600381565b34801561045d57600080fd5b5061031061046c36600461269c565b610e6e565b34801561047d57600080fd5b506008546102819060ff1681565b34801561049757600080fd5b506103b9601481565b3480156104ac57600080fd5b506102d86104bb36600461252e565b610eab565b3480156104cc57600080fd5b506103b9610f22565b3480156104e157600080fd5b506103b96104f036600461258d565b610f32565b34801561050157600080fd5b50610310610fb9565b34801561051657600080fd5b506103106105253660046126e5565b610fef565b34801561053657600080fd5b506102ab6111a9565b34801561054b57600080fd5b506103b96105dc81565b34801561056157600080fd5b50610310611237565b34801561057657600080fd5b50610310611275565b34801561058b57600080fd5b506103b9668e1bc9bf04000081565b3480156105a657600080fd5b506006546001600160a01b03166102d8565b3480156105c457600080fd5b506103b9610bb881565b3480156105da57600080fd5b506102ab61144a565b3480156105ef57600080fd5b506102816105fe36600461258d565b611459565b61031061061136600461252e565b6114a0565b34801561062257600080fd5b5061031061063136600461275a565b6117a9565b34801561064257600080fd5b506103b961065136600461258d565b6117b4565b34801561066257600080fd5b506103106106713660046126e5565b6117bf565b34801561068257600080fd5b50610310610691366004612796565b611930565b3480156106a257600080fd5b50610310611968565b3480156106b757600080fd5b506102ab6106c636600461252e565b6119af565b3480156106d757600080fd5b506102816106e6366004612812565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b5061031061072f36600461269c565b611b2c565b34801561074057600080fd5b5061031061074f36600461258d565b611b69565b34801561076057600080fd5b506103b9600a81565b60006001600160e01b031982166380ac58cd60e01b148061079a57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107ca9061283c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f69061283c565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f282610eab565b9050806001600160a01b0316836001600160a01b031614156109605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c2565b336001600160a01b038216148061097c575061097c81336106e6565b6109ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c2565b6109f88383611c04565b505050565b60006001600160a01b038216610a255760405162461bcd60e51b81526004016108c290612877565b506001600160a01b03166000908152600a60205260409020546001111590565b60085460ff16610a8c5760405162461bcd60e51b815260206004820152601260248201527150524553414c455f4e4f545f41435449564560701b60448201526064016108c2565b3360009081526009602052604090205460ff16610aeb5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f454c494749424c455f464f525f50524553414c45000000000000000060448201526064016108c2565b336000908152600a6020526040902054600390610b099083906128b3565b1115610b4d5760405162461bcd60e51b815260206004820152601360248201527214149154d0531157d3505617d0d31052535151606a1b60448201526064016108c2565b6105dc610b5960075490565b10610b995760405162461bcd60e51b815260206004820152601060248201526f14149154d0531157d4d3d31117d3d55560821b60448201526064016108c2565b6105dc81610ba660075490565b610bb091906128b3565b1115610bf75760405162461bcd60e51b8152602060048201526016602482015275455843454544535f50524553414c455f535550504c5960501b60448201526064016108c2565b6006546001600160a01b03163314610c5d5734610c1b82668e1bc9bf0400006128cb565b14610c5d5760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108c2565b60005b81811015610cba57336000908152600a60205260408120805460019290610c889084906128b3565b9091555050600780546001019055610ca833610ca360075490565b611c72565b80610cb2816128ea565b915050610c60565b5050565b6006546001600160a01b03163314610ce85760405162461bcd60e51b81526004016108c290612905565b610bb8610cf460075490565b10610d2c5760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b60448201526064016108c2565b610bb882610d3960075490565b610d4391906128b3565b1115610d885760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016108c2565b60005b828110156109f857610da1600780546001019055565b610dae82610ca360075490565b80610db8816128ea565b915050610d8b565b610dca3382611c8c565b610de65760405162461bcd60e51b81526004016108c29061293a565b6109f8838383611d83565b610dfe6064610bb861298b565b81565b6109f883838360405180602001604052806000815250611930565b6006546001600160a01b03163314610e465760405162461bcd60e51b81526004016108c290612905565b8051610e5990600c9060208401906123f7565b50506008805462ff0000191662010000179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b81526004016108c290612905565b8051610cba90600c9060208401906123f7565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c2565b6000610f2d60075490565b905090565b60006001600160a01b038216610f9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fe35760405162461bcd60e51b81526004016108c290612905565b610fed6000611f23565b565b6006546001600160a01b031633146110195760405162461bcd60e51b81526004016108c290612905565b60005b818110156109f8576000838383818110611038576110386129a2565b905060200201602081019061104d919061258d565b6001600160a01b031614156110745760405162461bcd60e51b81526004016108c290612877565b6009600084848481811061108a5761108a6129a2565b905060200201602081019061109f919061258d565b6001600160a01b0316815260208101919091526040016000205460ff16156110fb5760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016108c2565b600160096000858585818110611113576111136129a2565b9050602002016020810190611128919061258d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600a81858585818110611168576111686129a2565b905060200201602081019061117d919061258d565b6001600160a01b03168152602081019190915260400160002055806111a1816128ea565b91505061101c565b600b80546111b69061283c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e29061283c565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b505050505081565b6006546001600160a01b031633146112615760405162461bcd60e51b81526004016108c290612905565b6008805460ff19811660ff90911615179055565b6006546001600160a01b0316331461129f5760405162461bcd60e51b81526004016108c290612905565b600060646112ae4760146128cb565b6112b891906129ce565b9050600060646112c94760286128cb565b6112d391906129ce565b9050600060646112e44760286128cb565b6112ee91906129ce565b60405190915073926b8edbef960305cbcaa839b1019c0a54358f2c9084156108fc029085906000818181858888f193505050506113645760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413160601b60448201526064016108c2565b604051736f0ce6920568e2d55eb1074314df3ea61584980b9083156108fc029084906000818181858888f193505050506113d75760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09960611b60448201526064016108c2565b60405173a582ad581f44bf431f5f020242ab91a25170e2009082156108fc029083906000818181858888f193505050506109f85760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413360601b60448201526064016108c2565b6060600180546107ca9061283c565b60006001600160a01b0382166114815760405162461bcd60e51b81526004016108c290612877565b506001600160a01b031660009081526009602052604090205460ff1690565b600854610100900460ff166114f05760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016108c2565b3233146115345760405162461bcd60e51b815260206004820152601260248201527123a7afa0aba0acafa127aa2fa7a924a3a4a760711b60448201526064016108c2565b333b1561157a5760405162461bcd60e51b815260206004820152601460248201527311d3d7d055d05657d093d517d0d3d395149050d560621b60448201526064016108c2565b60148111156115cb5760405162461bcd60e51b815260206004820152601760248201527f5055424c49435f53414c455f4d41585f434c41494d454400000000000000000060448201526064016108c2565b6115d86064610bb861298b565b600754106116135760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b60448201526064016108c2565b600081116116635760405162461bcd60e51b815260206004820152601760248201527f5155414e544954595f43414e4e4f545f42455f5a45524f00000000000000000060448201526064016108c2565b600a8111156116a75760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108c2565b6116b46064610bb861298b565b816116be60075490565b6116c891906128b3565b111561170b5760405162461bcd60e51b8152602060048201526012602482015271455843454544535f4d41585f535550504c5960701b60448201526064016108c2565b6006546001600160a01b03163314611771573461172f82668e1bc9bf0400006128cb565b146117715760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108c2565b60005b81811015610cba5761178a600780546001019055565b61179733610ca360075490565b806117a1816128ea565b915050611774565b610cba338383611f75565b60006107b582610f32565b6006546001600160a01b031633146117e95760405162461bcd60e51b81526004016108c290612905565b60005b818110156109f8576000838383818110611808576118086129a2565b905060200201602081019061181d919061258d565b6001600160a01b031614156118445760405162461bcd60e51b81526004016108c290612877565b6009600084848481811061185a5761185a6129a2565b905060200201602081019061186f919061258d565b6001600160a01b0316815260208101919091526040016000205460ff166118c95760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016108c2565b6000600960008585858181106118e1576118e16129a2565b90506020020160208101906118f6919061258d565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611928816128ea565b9150506117ec565b61193a3383611c8c565b6119565760405162461bcd60e51b81526004016108c29061293a565b61196284848484612044565b50505050565b6006546001600160a01b031633146119925760405162461bcd60e51b81526004016108c290612905565b6008805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b0316611a2e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c2565b60085462010000900460ff16611ad057600b8054611a4b9061283c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a779061283c565b8015611ac45780601f10611a9957610100808354040283529160200191611ac4565b820191906000526020600020905b815481529060010190602001808311611aa757829003601f168201915b50505050509050919050565b6000611ada612077565b90506000815111611afa5760405180602001604052806000815250611b25565b80611b0484612086565b604051602001611b159291906129e2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b565760405162461bcd60e51b81526004016108c290612905565b8051610cba90600b9060208401906123f7565b6006546001600160a01b03163314611b935760405162461bcd60e51b81526004016108c290612905565b6001600160a01b038116611bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c2565b611c0181611f23565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c3982610eab565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610cba828260405180602001604052806000815250612184565b6000818152600260205260408120546001600160a01b0316611d055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c2565b6000611d1083610eab565b9050806001600160a01b0316846001600160a01b03161480611d4b5750836001600160a01b0316611d408461084d565b6001600160a01b0316145b80611d7b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d9682610eab565b6001600160a01b031614611dfe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c2565b6001600160a01b038216611e605760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c2565b611e6b600082611c04565b6001600160a01b0383166000908152600360205260408120805460019290611e9490849061298b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ec29084906128b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204f848484611d83565b61205b848484846121b7565b6119625760405162461bcd60e51b81526004016108c290612a21565b6060600c80546107ca9061283c565b6060816120aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d457806120be816128ea565b91506120cd9050600a836129ce565b91506120ae565b60008167ffffffffffffffff8111156120ef576120ef612610565b6040519080825280601f01601f191660200182016040528015612119576020820181803683370190505b5090505b8415611d7b5761212e60018361298b565b915061213b600a86612a73565b6121469060306128b3565b60f81b81838151811061215b5761215b6129a2565b60200101906001600160f81b031916908160001a90535061217d600a866129ce565b945061211d565b61218e83836122b5565b61219b60008484846121b7565b6109f85760405162461bcd60e51b81526004016108c290612a21565b60006001600160a01b0384163b156122aa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121fb903390899088908890600401612a87565b6020604051808303816000875af1925050508015612236575060408051601f3d908101601f1916820190925261223391810190612ac4565b60015b612290573d808015612264576040519150601f19603f3d011682016040523d82523d6000602084013e612269565b606091505b5080516122885760405162461bcd60e51b81526004016108c290612a21565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7b565b506001949350505050565b6001600160a01b03821661230b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c2565b6000818152600260205260409020546001600160a01b0316156123705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c2565b6001600160a01b03821660009081526003602052604081208054600192906123999084906128b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124039061283c565b90600052602060002090601f016020900481019282612425576000855561246b565b82601f1061243e57805160ff191683800117855561246b565b8280016001018555821561246b579182015b8281111561246b578251825591602001919060010190612450565b5061247792915061247b565b5090565b5b80821115612477576000815560010161247c565b6001600160e01b031981168114611c0157600080fd5b6000602082840312156124b857600080fd5b8135611b2581612490565b60005b838110156124de5781810151838201526020016124c6565b838111156119625750506000910152565b600081518084526125078160208601602086016124c3565b601f01601f19169290920160200192915050565b602081526000611b2560208301846124ef565b60006020828403121561254057600080fd5b5035919050565b80356001600160a01b038116811461255e57600080fd5b919050565b6000806040838503121561257657600080fd5b61257f83612547565b946020939093013593505050565b60006020828403121561259f57600080fd5b611b2582612547565b600080604083850312156125bb57600080fd5b823591506125cb60208401612547565b90509250929050565b6000806000606084860312156125e957600080fd5b6125f284612547565b925061260060208501612547565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561264157612641612610565b604051601f8501601f19908116603f0116810190828211818310171561266957612669612610565b8160405280935085815286868601111561268257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126ae57600080fd5b813567ffffffffffffffff8111156126c557600080fd5b8201601f810184136126d657600080fd5b611d7b84823560208401612626565b600080602083850312156126f857600080fd5b823567ffffffffffffffff8082111561271057600080fd5b818501915085601f83011261272457600080fd5b81358181111561273357600080fd5b8660208260051b850101111561274857600080fd5b60209290920196919550909350505050565b6000806040838503121561276d57600080fd5b61277683612547565b91506020830135801515811461278b57600080fd5b809150509250929050565b600080600080608085870312156127ac57600080fd5b6127b585612547565b93506127c360208601612547565b925060408501359150606085013567ffffffffffffffff8111156127e657600080fd5b8501601f810187136127f757600080fd5b61280687823560208401612626565b91505092959194509250565b6000806040838503121561282557600080fd5b61282e83612547565b91506125cb60208401612547565b600181811c9082168061285057607f821691505b6020821081141561287157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128c6576128c661289d565b500190565b60008160001904831182151516156128e5576128e561289d565b500290565b60006000198214156128fe576128fe61289d565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008282101561299d5761299d61289d565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826129dd576129dd6129b8565b500490565b600083516129f48184602088016124c3565b835190830190612a088183602088016124c3565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a8257612a826129b8565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aba908301846124ef565b9695505050505050565b600060208284031215612ad657600080fd5b8151611b258161249056fea2646970667358221220d849d0ddf6152103456cc285bdd3fe7a42aa5aeb1b50430d86e88bdd3b5325e264736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d6433597435536768644d545537466b437a7a5334794c443658733753613464564578714654777679637541522f70617373706f72742e6a736f6e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): ipfs://Qmd3Yt5SghdMTU7FkCzzS4yLD6Xs7Sa4dVExqFTwvycuAR/passport.json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f516d6433597435536768644d545537466b437a7a5334794c44
Arg [3] : 3658733753613464564578714654777679637541522f70617373706f72742e6a
Arg [4] : 736f6e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37777:8855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;-1:-1:-1;25240:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25240:305:0;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27744:221::-;;;;;;;;;;-1:-1:-1;27744:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27744:221:0;1528:203:1;27267:411:0;;;;;;;;;;-1:-1:-1;27267:411:0;;;;;:::i;:::-;;:::i;:::-;;41774:178;;;;;;;;;;-1:-1:-1;41774:178:0;;;;;:::i;:::-;;:::i;42770:809::-;;;;;;:::i;:::-;;:::i;42295:467::-;;;;;;;;;;-1:-1:-1;42295:467:0;;;;;:::i;:::-;;:::i;39188:38::-;;;;;;;;;;-1:-1:-1;39188:38:0;;;;;;;;;;;28494:339;;;;;;;;;;-1:-1:-1;28494:339:0;;;;;:::i;:::-;;:::i;38147:45::-;;;;;;;;;;;;38189:3;38147:45;;;;;3102:25:1;;;3090:2;3075:18;38147:45:0;2956:177:1;38247:67:0;;;;;;;;;;;;;:::i;28904:185::-;;;;;;;;;;-1:-1:-1;28904:185:0;;;;;:::i;:::-;;:::i;45676:126::-;;;;;;;;;;-1:-1:-1;45676:126:0;;;;;:::i;:::-;;:::i;39233:28::-;;;;;;;;;;-1:-1:-1;39233:28:0;;;;;;;;;;;38563:44;;;;;;;;;;;;38606:1;38563:44;;45944:104;;;;;;;;;;-1:-1:-1;45944:104:0;;;;;:::i;:::-;;:::i;39146:35::-;;;;;;;;;;-1:-1:-1;39146:35:0;;;;;;;;38614:44;;;;;;;;;;;;38656:2;38614:44;;25879:239;;;;;;;;;;-1:-1:-1;25879:239:0;;;;;:::i;:::-;;:::i;44605:100::-;;;;;;;;;;;;;:::i;25609:208::-;;;;;;;;;;-1:-1:-1;25609:208:0;;;;;:::i;:::-;;:::i;6228:103::-;;;;;;;;;;;;;:::i;40806:394::-;;;;;;;;;;-1:-1:-1;40806:394:0;;;;;:::i;:::-;;:::i;39593:28::-;;;;;;;;;;;;;:::i;38351:45::-;;;;;;;;;;;;38392:4;38351:45;;41960:103;;;;;;;;;;;;;:::i;46166:463::-;;;;;;;;;;;;;:::i;38514:42::-;;;;;;;;;;;;38546:10;38514:42;;5577:87;;;;;;;;;;-1:-1:-1;5650:6:0;;-1:-1:-1;;;;;5650:6:0;5577:87;;38069:43;;;;;;;;;;;;38108:4;38069:43;;26354:104;;;;;;;;;;;;;:::i;41589:177::-;;;;;;;;;;-1:-1:-1;41589:177:0;;;;;:::i;:::-;;:::i;43707:886::-;;;;;;:::i;:::-;;:::i;28037:155::-;;;;;;;;;;-1:-1:-1;28037:155:0;;;;;:::i;:::-;;:::i;43587:112::-;;;;;;;;;;-1:-1:-1;43587:112:0;;;;;:::i;:::-;;:::i;41208:373::-;;;;;;;;;;-1:-1:-1;41208:373:0;;;;;:::i;:::-;;:::i;29160:328::-;;;;;;;;;;-1:-1:-1;29160:328:0;;;;;:::i;:::-;;:::i;42071:112::-;;;;;;;;;;;;;:::i;44931:719::-;;;;;;;;;;-1:-1:-1;44931:719:0;;;;;:::i;:::-;;:::i;28263:164::-;;;;;;;;;;-1:-1:-1;28263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28263:164;45810:126;;;;;;;;;;-1:-1:-1;45810:126:0;;;;;:::i;:::-;;:::i;6486:201::-;;;;;;;;;;-1:-1:-1;6486:201:0;;;;;:::i;:::-;;:::i;38421:39::-;;;;;;;;;;;;38458:2;38421:39;;25240:305;25342:4;-1:-1:-1;;;;;;25379:40:0;;-1:-1:-1;;;25379:40:0;;:105;;-1:-1:-1;;;;;;;25436:48:0;;-1:-1:-1;;;25436:48:0;25379:105;:158;;;-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;;6859:2:1;27840:73:0;;;6841:21:1;6898:2;6878:18;;;6871:30;6937:34;6917:18;;;6910:62;-1:-1:-1;;;6988:18:1;;;6981:42;7040: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;;7272:2:1;27398:57:0;;;7254:21:1;7311:2;7291:18;;;7284:30;7350:34;7330:18;;;7323:62;-1:-1:-1;;;7401:18:1;;;7394:31;7442:19;;27398:57:0;7070: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;;7674:2:1;27468:168:0;;;7656:21:1;7713:2;7693:18;;;7686:30;7752:34;7732:18;;;7725:62;7823:26;7803:18;;;7796:54;7867:19;;27468:168:0;7472:420:1;27468:168:0;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;41774:178::-;41838:4;-1:-1:-1;;;;;41863:18:0;;41855:43;;;;-1:-1:-1;;;41855:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41918:21:0;;;;;:15;:21;;;;;;41943:1;-1:-1:-1;41918:26:0;;41774:178::o;42770:809::-;40203:15;;;;40195:46;;;;-1:-1:-1;;;40195:46:0;;8440:2:1;40195:46:0;;;8422:21:1;8479:2;8459:18;;;8452:30;-1:-1:-1;;;8498:18:1;;;8491:48;8556:18;;40195:46:0;8238:342:1;40195:46:0;42882:10:::1;42865:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;42857:65;;;::::0;-1:-1:-1;;;42857:65:0;;8787:2:1;42857:65:0::1;::::0;::::1;8769:21:1::0;8826:2;8806:18;;;8799:30;8865:26;8845:18;;;8838:54;8909:18;;42857:65:0::1;8585:348:1::0;42857:65:0::1;42957:10;42941:27;::::0;;;:15:::1;:27;::::0;;;;;38606:1:::1;::::0;42941:38:::1;::::0;42971:8;;42941:38:::1;:::i;:::-;:58;;42933:90;;;::::0;-1:-1:-1;;;42933:90:0;;9405:2:1;42933:90:0::1;::::0;::::1;9387:21:1::0;9444:2;9424:18;;;9417:30;-1:-1:-1;;;9463:18:1;;;9456:49;9522:18;;42933:90:0::1;9203:343:1::0;42933:90:0::1;38392:4;43042:22;:12;997:14:::0;;905:114;43042:22:::1;:39;43034:68;;;::::0;-1:-1:-1;;;43034:68:0;;9753:2:1;43034:68:0::1;::::0;::::1;9735:21:1::0;9792:2;9772:18;;;9765:30;-1:-1:-1;;;9811:18:1;;;9804:46;9867:18;;43034:68:0::1;9551:340:1::0;43034:68:0::1;38392:4;43160:8;43135:22;:12;997:14:::0;;905:114;43135:22:::1;:33;;;;:::i;:::-;:51;;43113:123;;;::::0;-1:-1:-1;;;43113:123:0;;10098:2:1;43113:123:0::1;::::0;::::1;10080:21:1::0;10137:2;10117:18;;;10110:30;-1:-1:-1;;;10156:18:1;;;10149:52;10218:18;;43113:123:0::1;9896:346:1::0;43113:123:0::1;5650:6:::0;;-1:-1:-1;;;;;5650:6:0;43253:10:::1;:21;43249:114;;43319:9;43299:16;43307:8:::0;38546:10:::1;43299:16;:::i;:::-;:29;43291:60;;;::::0;-1:-1:-1;;;43291:60:0;;10622:2:1;43291:60:0::1;::::0;::::1;10604:21:1::0;10661:2;10641:18;;;10634:30;-1:-1:-1;;;10680:18:1;;;10673:48;10738:18;;43291:60:0::1;10420:342:1::0;43291:60:0::1;43380:9;43375:197;43399:8;43395:1;:12;43375:197;;;43445:10;43429:27;::::0;;;:15:::1;:27;::::0;;;;:32;;43460:1:::1;::::0;43429:27;:32:::1;::::0;43460:1;;43429:32:::1;:::i;:::-;::::0;;;-1:-1:-1;;43476:12:0::1;1116:19:::0;;1134:1;1116:19;;;43515:45:::1;43525:10;43537:22;:12;997:14:::0;;905:114;43537:22:::1;43515:9;:45::i;:::-;43409:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43375:197;;;;42770:809:::0;:::o;42295:467::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;38108:4:::1;42418:22;:12;997:14:::0;;905:114;42418:22:::1;:37;42410:58;;;::::0;-1:-1:-1;;;42410:58:0;;11470:2:1;42410:58:0::1;::::0;::::1;11452:21:1::0;11509:1;11489:18;;;11482:29;-1:-1:-1;;;11527:18:1;;;11520:38;11575:18;;42410:58:0::1;11268:331:1::0;42410:58:0::1;38108:4;42526:8;42501:22;:12;997:14:::0;;905:114;42501:22:::1;:33;;;;:::i;:::-;:49;;42479:119;;;::::0;-1:-1:-1;;;42479:119:0;;11806:2:1;42479:119:0::1;::::0;::::1;11788:21:1::0;11845:2;11825:18;;;11818:30;-1:-1:-1;;;11864:18:1;;;11857:50;11924:18;;42479:119:0::1;11604:344:1::0;42479:119:0::1;42616:9;42611:144;42635:8;42631:1;:12;42611:144;;;42665:24;:12;1116:19:::0;;1134:1;1116:19;;;1027:127;42665:24:::1;42704:39;42714:4;42720:22;:12;997:14:::0;;905:114;42704:39:::1;42645:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42611:144;;28494:339:::0;28689:41;4381:10;28722:7;28689:18;:41::i;:::-;28681:103;;;;-1:-1:-1;;;28681:103:0;;;;;;;:::i;:::-;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;38247:67::-;38284:30;38189:3;38108:4;38284:30;:::i;:::-;38247:67;:::o;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;45676:126::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;45747:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;45779:8:0::1;:15:::0;;-1:-1:-1;;45779:15:0::1;::::0;::::1;::::0;;45676:126::o;45944:104::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;46019:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25879:239::-:0;25951:7;25987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25987:16:0;26022:19;26014:73;;;;-1:-1:-1;;;26014:73:0;;12703:2:1;26014:73:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:34;12761:18;;;12754:62;-1:-1:-1;;;12832:18:1;;;12825:39;12881:19;;26014:73:0;12501:405:1;44605:100:0;44650:7;44675:22;:12;997:14;;905:114;44675:22;44668:29;;44605:100;:::o;25609:208::-;25681:7;-1:-1:-1;;;;;25709:19:0;;25701:74;;;;-1:-1:-1;;;25701:74:0;;13113:2:1;25701:74:0;;;13095:21:1;13152:2;13132:18;;;13125:30;13191:34;13171:18;;;13164:62;-1:-1:-1;;;13242:18:1;;;13235:40;13292:19;;25701:74:0;12911: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;;;;;;;:::i;:::-;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;40806:394::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40897:9:::1;40892:301;40912:20:::0;;::::1;40892:301;;;40986:1;40962:9:::0;;40972:1;40962:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40962:26:0::1;;;40954:51;;;;-1:-1:-1::0;;;40954:51:0::1;;;;;;;:::i;:::-;41029:16;:30;41046:9;;41056:1;41046:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41029:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41029:30:0;;::::1;;41028:31;41020:59;;;::::0;-1:-1:-1;;;41020:59:0;;13656:2:1;41020:59:0::1;::::0;::::1;13638:21:1::0;13695:2;13675:18;;;13668:30;-1:-1:-1;;;13714:18:1;;;13707:45;13769:18;;41020:59:0::1;13454:339:1::0;41020:59:0::1;41129:4;41096:16;:30;41113:9;;41123:1;41113:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41096:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41096:30:0;;;:37;;-1:-1:-1;;41096:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;41148:15:::1;-1:-1:-1::0;41164:9:0;;41174:1;41164:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41148:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41148:29:0;:33;40934:3;::::1;::::0;::::1;:::i;:::-;;;;40892:301;;39593:28:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41960:103::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;42040:15:::1;::::0;;-1:-1:-1;;42021:34:0;::::1;42040:15;::::0;;::::1;42039:16;42021:34;::::0;;41960:103::o;46166:463::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;46219:17:::1;46270:3;46240:26;:21;46264:2;46240:26;:::i;:::-;46239:34;;;;:::i;:::-;46219:54:::0;-1:-1:-1;46284:17:0::1;46335:3;46305:26;:21;46329:2;46305:26;:::i;:::-;46304:34;;;;:::i;:::-;46284:54:::0;-1:-1:-1;46349:17:0::1;46400:3;46370:26;:21;46394:2;46370:26;:::i;:::-;46369:34;;;;:::i;:::-;46424:28;::::0;46349:54;;-1:-1:-1;38802:42:0::1;::::0;46424:28;::::1;;;::::0;46442:9;;46424:28:::1;::::0;;;46442:9;38802:42;46424:28;::::1;;;;;;46416:61;;;::::0;-1:-1:-1;;;46416:61:0;;14257:2:1;46416:61:0::1;::::0;::::1;14239:21:1::0;14296:2;14276:18;;;14269:30;-1:-1:-1;;;14315:18:1;;;14308:50;14375:18;;46416:61:0::1;14055:344:1::0;46416:61:0::1;46496:28;::::0;38891:42:::1;::::0;46496:28;::::1;;;::::0;46514:9;;46496:28:::1;::::0;;;46514:9;38891:42;46496:28;::::1;;;;;;46488:61;;;::::0;-1:-1:-1;;;46488:61:0;;14606:2:1;46488:61:0::1;::::0;::::1;14588:21:1::0;14645:2;14625:18;;;14618:30;-1:-1:-1;;;14664:18:1;;;14657:50;14724:18;;46488:61:0::1;14404:344:1::0;46488:61:0::1;46568:28;::::0;38980:42:::1;::::0;46568:28;::::1;;;::::0;46586:9;;46568:28:::1;::::0;;;46586:9;38980:42;46568:28;::::1;;;;;;46560:61;;;::::0;-1:-1:-1;;;46560:61:0;;14955:2:1;46560:61:0::1;::::0;::::1;14937:21:1::0;14994:2;14974:18;;;14967:30;-1:-1:-1;;;15013:18:1;;;15006:50;15073:18;;46560:61:0::1;14753:344:1::0;26354:104:0;26410:13;26443:7;26436:14;;;;;:::i;41589:177::-;41656:4;-1:-1:-1;;;;;41681:18:0;;41673:43;;;;-1:-1:-1;;;41673:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41736:22:0;;;;;:16;:22;;;;;;;;;41589:177::o;43707:886::-;40314:18;;;;;;;40306:53;;;;-1:-1:-1;;;40306:53:0;;15304:2:1;40306:53:0;;;15286:21:1;15343:2;15323:18;;;15316:30;-1:-1:-1;;;15362:18:1;;;15355:52;15424:18;;40306:53:0;15102:346:1;40306:53:0;43790:9:::1;43803:10;43790:23;43782:54;;;::::0;-1:-1:-1;;;43782:54:0;;15655:2:1;43782:54:0::1;::::0;::::1;15637:21:1::0;15694:2;15674:18;;;15667:30;-1:-1:-1;;;15713:18:1;;;15706:48;15771:18;;43782:54:0::1;15453:342:1::0;43782:54:0::1;43871:10;40630:17:::0;40675:8;43847:60:::1;;;::::0;-1:-1:-1;;;43847:60:0;;16002:2:1;43847:60:0::1;::::0;::::1;15984:21:1::0;16041:2;16021:18;;;16014:30;-1:-1:-1;;;16060:18:1;;;16053:50;16120:18;;43847:60:0::1;15800:344:1::0;43847:60:0::1;38656:2;43926:8;:27;;43918:63;;;::::0;-1:-1:-1;;;43918:63:0;;16351:2:1;43918:63:0::1;::::0;::::1;16333:21:1::0;16390:2;16370:18;;;16363:30;16429:25;16409:18;;;16402:53;16472:18;;43918:63:0::1;16149:347:1::0;43918:63:0::1;38284:30;38189:3;38108:4;38284:30;:::i;:::-;44002:12;997:14:::0;44002:35:::1;43994:56;;;::::0;-1:-1:-1;;;43994:56:0;;11470:2:1;43994:56:0::1;::::0;::::1;11452:21:1::0;11509:1;11489:18;;;11482:29;-1:-1:-1;;;11527:18:1;;;11520:38;11575:18;;43994:56:0::1;11268:331:1::0;43994:56:0::1;44080:1;44069:8;:12;44061:48;;;::::0;-1:-1:-1;;;44061:48:0;;16703:2:1;44061:48:0::1;::::0;::::1;16685:21:1::0;16742:2;16722:18;;;16715:30;16781:25;16761:18;;;16754:53;16824:18;;44061:48:0::1;16501:347:1::0;44061:48:0::1;38458:2;44128:8;:22;;44120:51;;;::::0;-1:-1:-1;;;44120:51:0;;17055:2:1;44120:51:0::1;::::0;::::1;17037:21:1::0;17094:2;17074:18;;;17067:30;-1:-1:-1;;;17113:18:1;;;17106:46;17169:18;;44120:51:0::1;16853:340:1::0;44120:51:0::1;38284:30;38189:3;38108:4;38284:30;:::i;:::-;44229:8;44204:22;:12;997:14:::0;;905:114;44204:22:::1;:33;;;;:::i;:::-;:47;;44182:115;;;::::0;-1:-1:-1;;;44182:115:0;;17400:2:1;44182:115:0::1;::::0;::::1;17382:21:1::0;17439:2;17419:18;;;17412:30;-1:-1:-1;;;17458:18:1;;;17451:48;17516:18;;44182:115:0::1;17198:342:1::0;44182:115:0::1;5650:6:::0;;-1:-1:-1;;;;;5650:6:0;44314:10:::1;:21;44310:114;;44380:9;44360:16;44368:8:::0;38546:10:::1;44360:16;:::i;:::-;:29;44352:60;;;::::0;-1:-1:-1;;;44352:60:0;;10622:2:1;44352:60:0::1;::::0;::::1;10604:21:1::0;10661:2;10641:18;;;10634:30;-1:-1:-1;;;10680:18:1;;;10673:48;10738:18;;44352:60:0::1;10420:342:1::0;44352:60:0::1;44441:9;44436:150;44460:8;44456:1;:12;44436:150;;;44490:24;:12;1116:19:::0;;1134:1;1116:19;;;1027:127;44490:24:::1;44529:45;44539:10;44551:22;:12;997:14:::0;;905:114;44529:45:::1;44470:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44436:150;;28037:155:::0;28132:52;4381:10;28165:8;28175;28132:18;:52::i;43587:112::-;43651:7;43676:15;43686:4;43676:9;:15::i;41208:373::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;41327:9:::1;41322:252;41342:20:::0;;::::1;41322:252;;;41416:1;41392:9:::0;;41402:1;41392:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41392:26:0::1;;;41384:51;;;;-1:-1:-1::0;;;41384:51:0::1;;;;;;;:::i;:::-;41458:16;:30;41475:9;;41485:1;41475:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41458:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41458:30:0;;::::1;;41450:57;;;::::0;-1:-1:-1;;;41450:57:0;;17747:2:1;41450:57:0::1;::::0;::::1;17729:21:1::0;17786:2;17766:18;;;17759:30;-1:-1:-1;;;17805:18:1;;;17798:44;17859:18;;41450:57:0::1;17545:338:1::0;41450:57:0::1;41557:5;41524:16;:30;41541:9;;41551:1;41541:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41524:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41524:30:0;:38;;-1:-1:-1;;41524:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41364:3;::::1;::::0;::::1;:::i;:::-;;;;41322:252;;29160:328:::0;29335:41;4381:10;29368:7;29335:18;:41::i;:::-;29327:103;;;;-1:-1:-1;;;29327:103:0;;;;;;;:::i;:::-;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;42071:112::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;42157:18:::1;::::0;;-1:-1:-1;;42135:40:0;::::1;42157:18;::::0;;;::::1;;;42156:19;42135:40:::0;;::::1;;::::0;;42071:112::o;44931:719::-;31063:4;31087:16;;;:7;:16;;;;;;45049:13;;-1:-1:-1;;;;;31087:16:0;45080:113;;;;-1:-1:-1;;;45080:113:0;;18090:2:1;45080:113:0;;;18072:21:1;18129:2;18109:18;;;18102:30;18168:34;18148:18;;;18141:62;-1:-1:-1;;;18219:18:1;;;18212:45;18274:19;;45080:113:0;17888:411:1;45080:113:0;45210:8;;;;;;;45206:71;;45251:14;45244:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44931:719;;;:::o;45206:71::-;45289:28;45320:10;:8;:10::i;:::-;45289:41;;45392:1;45367:14;45361:28;:32;:281;;;;;;;;;;;;;;;;;45485:14;45526:18;:7;:16;:18::i;:::-;45442:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45361:281;45341:301;44931:719;-1:-1:-1;;;44931:719:0:o;45810:126::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;45896:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6486:201::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;::::0;-1:-1:-1;;;6567:73:0;;19148:2:1;6567:73:0::1;::::0;::::1;19130:21:1::0;19187:2;19167:18;;;19160:30;19226:34;19206:18;;;19199:62;-1:-1:-1;;;19277:18:1;;;19270:36;19323:19;;6567:73:0::1;18946:402:1::0;6567:73:0::1;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;34980:174::-;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;31982:110::-;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;31292:348::-;31385:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;31402:73;;;;-1:-1:-1;;;31402:73:0;;19555:2:1;31402:73:0;;;19537:21:1;19594:2;19574:18;;;19567:30;19633:34;19613:18;;;19606:62;-1:-1:-1;;;19684:18:1;;;19677:42;19736:19;;31402:73:0;19353: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;;19968:2:1;34408:85:0;;;19950:21:1;20007:2;19987:18;;;19980:30;20046:34;20026:18;;;20019:62;-1:-1:-1;;;20097:18:1;;;20090:39;20146:19;;34408:85:0;19766:405:1;34408:85:0;-1:-1:-1;;;;;34512:16:0;;34504:65;;;;-1:-1:-1;;;34504:65:0;;20378:2:1;34504:65:0;;;20360:21:1;20417:2;20397:18;;;20390:30;20456:34;20436:18;;;20429:62;-1:-1:-1;;;20507:18:1;;;20500:34;20551:19;;34504:65:0;20176: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;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;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;;20783:2:1;35434:55:0;;;20765:21:1;20822:2;20802:18;;;20795:30;20861:27;20841:18;;;20834:55;20906:18;;35434:55:0;20581:349:1;35434:55:0;-1:-1:-1;;;;;35500:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35500:46:0;;;;;;;;;;35562:41;;540::1;;;35562::0;;513: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;;;;;;;:::i;44823:100::-;44875:13;44908:7;44901:14;;;;;:::i;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;;2167:10:0;;;;;;;;;;;;-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;;;;;2453:56:0;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;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;;;;;;;:::i;36176:799::-;36331:4;-1:-1:-1;;;;;36352:13:0;;40630:17;40675: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;;;;;;;:::i;36626:272::-;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;32976:382::-;-1:-1:-1;;;;;33056:16:0;;33048:61;;;;-1:-1:-1;;;33048:61:0;;22421:2:1;33048:61:0;;;22403:21:1;;;22440:18;;;22433:30;22499:34;22479:18;;;22472:62;22551:18;;33048:61:0;22219: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;;22782:2:1;33120:58:0;;;22764:21:1;22821:2;22801:18;;;22794:30;22860;22840:18;;;22833:58;22908:18;;33120:58:0;22580: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:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2364:254::-;2432:6;2440;2493:2;2481:9;2472:7;2468:23;2464:32;2461:52;;;2509:1;2506;2499:12;2461:52;2545:9;2532:23;2522:33;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2364:254;;;;;:::o;2623:328::-;2700:6;2708;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;;2856:38;2890:2;2879:9;2875:18;2856:38;:::i;:::-;2846:48;;2941:2;2930:9;2926:18;2913:32;2903:42;;2623:328;;;;;:::o;3138:127::-;3199:10;3194:3;3190:20;3187:1;3180:31;3230:4;3227:1;3220:15;3254:4;3251:1;3244:15;3270:632;3335:5;3365:18;3406:2;3398:6;3395:14;3392:40;;;3412:18;;:::i;:::-;3487:2;3481:9;3455:2;3541:15;;-1:-1:-1;;3537:24:1;;;3563:2;3533:33;3529:42;3517:55;;;3587:18;;;3607:22;;;3584:46;3581:72;;;3633:18;;:::i;:::-;3673:10;3669:2;3662:22;3702:6;3693:15;;3732:6;3724;3717:22;3772:3;3763:6;3758:3;3754:16;3751:25;3748:45;;;3789:1;3786;3779:12;3748:45;3839:6;3834:3;3827:4;3819:6;3815:17;3802:44;3894:1;3887:4;3878:6;3870;3866:19;3862:30;3855:41;;;;3270:632;;;;;:::o;3907:451::-;3976:6;4029:2;4017:9;4008:7;4004:23;4000:32;3997:52;;;4045:1;4042;4035:12;3997:52;4085:9;4072:23;4118:18;4110:6;4107:30;4104:50;;;4150:1;4147;4140:12;4104:50;4173:22;;4226:4;4218:13;;4214:27;-1:-1:-1;4204:55:1;;4255:1;4252;4245:12;4204:55;4278:74;4344:7;4339:2;4326:16;4321:2;4317;4313:11;4278:74;:::i;4363:615::-;4449:6;4457;4510:2;4498:9;4489:7;4485:23;4481:32;4478:52;;;4526:1;4523;4516:12;4478:52;4566:9;4553:23;4595:18;4636:2;4628:6;4625:14;4622:34;;;4652:1;4649;4642:12;4622:34;4690:6;4679:9;4675:22;4665:32;;4735:7;4728:4;4724:2;4720:13;4716:27;4706:55;;4757:1;4754;4747:12;4706:55;4797:2;4784:16;4823:2;4815:6;4812:14;4809:34;;;4839:1;4836;4829:12;4809:34;4892:7;4887:2;4877:6;4874:1;4870:14;4866:2;4862:23;4858:32;4855:45;4852:65;;;4913:1;4910;4903:12;4852:65;4944:2;4936:11;;;;;4966:6;;-1:-1:-1;4363:615:1;;-1:-1:-1;;;;4363:615:1:o;4983:347::-;5048:6;5056;5109:2;5097:9;5088:7;5084:23;5080:32;5077:52;;;5125:1;5122;5115:12;5077:52;5148:29;5167:9;5148:29;:::i;:::-;5138:39;;5227:2;5216:9;5212:18;5199:32;5274:5;5267:13;5260:21;5253:5;5250:32;5240:60;;5296:1;5293;5286:12;5240:60;5319:5;5309:15;;;4983:347;;;;;:::o;5335:667::-;5430:6;5438;5446;5454;5507:3;5495:9;5486:7;5482:23;5478:33;5475:53;;;5524:1;5521;5514:12;5475:53;5547:29;5566:9;5547:29;:::i;:::-;5537:39;;5595:38;5629:2;5618:9;5614:18;5595:38;:::i;:::-;5585:48;;5680:2;5669:9;5665:18;5652:32;5642:42;;5735:2;5724:9;5720:18;5707:32;5762:18;5754:6;5751:30;5748:50;;;5794:1;5791;5784:12;5748:50;5817:22;;5870:4;5862:13;;5858:27;-1:-1:-1;5848:55:1;;5899:1;5896;5889:12;5848:55;5922:74;5988:7;5983:2;5970:16;5965:2;5961;5957:11;5922:74;:::i;:::-;5912:84;;;5335:667;;;;;;;:::o;6007:260::-;6075:6;6083;6136:2;6124:9;6115:7;6111:23;6107:32;6104:52;;;6152:1;6149;6142:12;6104:52;6175:29;6194:9;6175:29;:::i;:::-;6165:39;;6223:38;6257:2;6246:9;6242:18;6223:38;:::i;6272:380::-;6351:1;6347:12;;;;6394;;;6415:61;;6469:4;6461:6;6457:17;6447:27;;6415:61;6522:2;6514:6;6511:14;6491:18;6488:38;6485:161;;;6568:10;6563:3;6559:20;6556:1;6549:31;6603:4;6600:1;6593:15;6631:4;6628:1;6621:15;6485:161;;6272:380;;;:::o;7897:336::-;8099:2;8081:21;;;8138:2;8118:18;;;8111:30;-1:-1:-1;;;8172:2:1;8157:18;;8150:42;8224:2;8209:18;;7897:336::o;8938:127::-;8999:10;8994:3;8990:20;8987:1;8980:31;9030:4;9027:1;9020:15;9054:4;9051:1;9044:15;9070:128;9110:3;9141:1;9137:6;9134:1;9131:13;9128:39;;;9147:18;;:::i;:::-;-1:-1:-1;9183:9:1;;9070:128::o;10247:168::-;10287:7;10353:1;10349;10345:6;10341:14;10338:1;10335:21;10330:1;10323:9;10316:17;10312:45;10309:71;;;10360:18;;:::i;:::-;-1:-1:-1;10400:9:1;;10247:168::o;10767:135::-;10806:3;-1:-1:-1;;10827:17:1;;10824:43;;;10847:18;;:::i;:::-;-1:-1:-1;10894:1:1;10883:13;;10767:135::o;10907:356::-;11109:2;11091:21;;;11128:18;;;11121:30;11187:34;11182:2;11167:18;;11160:62;11254:2;11239:18;;10907:356::o;11953:413::-;12155:2;12137:21;;;12194:2;12174:18;;;12167:30;12233:34;12228:2;12213:18;;12206:62;-1:-1:-1;;;12299:2:1;12284:18;;12277:47;12356:3;12341:19;;11953:413::o;12371:125::-;12411:4;12439:1;12436;12433:8;12430:34;;;12444:18;;:::i;:::-;-1:-1:-1;12481:9:1;;12371:125::o;13322:127::-;13383:10;13378:3;13374:20;13371:1;13364:31;13414:4;13411:1;13404:15;13438:4;13435:1;13428:15;13798:127;13859:10;13854:3;13850:20;13847:1;13840:31;13890:4;13887:1;13880:15;13914:4;13911:1;13904:15;13930:120;13970:1;13996;13986:35;;14001:18;;:::i;:::-;-1:-1:-1;14035:9:1;;13930:120::o;18304:637::-;18584:3;18622:6;18616:13;18638:53;18684:6;18679:3;18672:4;18664:6;18660:17;18638:53;:::i;:::-;18754:13;;18713:16;;;;18776:57;18754:13;18713:16;18810:4;18798:17;;18776:57;:::i;:::-;-1:-1:-1;;;18855:20:1;;18884:22;;;18933:1;18922:13;;18304:637;-1:-1:-1;;;;18304:637:1:o;20935:414::-;21137:2;21119:21;;;21176:2;21156:18;;;21149:30;21215:34;21210:2;21195:18;;21188:62;-1:-1:-1;;;21281:2:1;21266:18;;21259:48;21339:3;21324:19;;20935:414::o;21354:112::-;21386:1;21412;21402:35;;21417:18;;:::i;:::-;-1:-1:-1;21451:9:1;;21354:112::o;21471:489::-;-1:-1:-1;;;;;21740:15:1;;;21722:34;;21792:15;;21787:2;21772:18;;21765:43;21839:2;21824:18;;21817:34;;;21887:3;21882:2;21867:18;;21860:31;;;21665:4;;21908:46;;21934:19;;21926:6;21908:46;:::i;:::-;21900:54;21471:489;-1:-1:-1;;;;;;21471:489:1:o;21965:249::-;22034:6;22087:2;22075:9;22066:7;22062:23;22058:32;22055:52;;;22103:1;22100;22093:12;22055:52;22135:9;22129:16;22154:30;22178:5;22154:30;:::i

Swarm Source

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