ETH Price: $2,874.95 (-5.78%)
Gas: 1 Gwei

Token

Rektguy420 (RG420)
 

Overview

Max Total Supply

5,038 RG420

Holders

368

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 RG420
0x89932d7166c0f57c3af6479d8157ad9d11d1a3f8
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:
Rektguy420

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-30
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.10;

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


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

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


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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract Rektguy420 is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    string public baseURI = "ipfs://bafybeihhauvsonulio6g5c5wnais6kmu26idaned32gjkwla4v4ayw6tzu/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 20;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = false;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_TWO;

    constructor(        
        string memory name,
        string memory symbol,
        address payable royaltyReceiver
    ) ERC721A(name, symbol) {
        _setDefaultRoyalty(royaltyReceiver, 250);
        _safeMint(msg.sender, 100);
    }

    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint256 userMinted;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            userMinted: uint256(_numberMinted(minter))
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Request would exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintToken(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active to mint token");
        require(numberOfTokens <= maxTokensPerTx, "The number of tokens per transaction exceeds the allowed number");
        require(numberOfTokens > 0, "You must mint at least one token");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens");

        uint256 minted = _numberMinted(msg.sender);
        if (minted > 0) {
            require(msg.value >= numberOfTokens * tokenPrice, "Ether value sent is not correct");
        } else {
            require(msg.value >= (numberOfTokens - 1) * tokenPrice, "Ether value sent is not correct");
        }
        
        _safeMint(msg.sender, numberOfTokens);
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    } 

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) external onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    /**
    @notice Sets the contract-wide royalty info.
     */
    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address payable","name":"royaltyReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"}],"internalType":"struct Rektguy420.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620057d060439139600c90805190602001906200003592919062000992565b506611c37937e08000600d556014600e556122b8600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083600181111562000090576200008f62000a42565b5b0217905550348015620000a257600080fd5b5060405162005813380380620058138339818101604052810190620000c8919062000c73565b82828160029080519060200190620000e292919062000992565b508060039080519060200190620000fb92919062000992565b506200010c6200016b60201b60201c565b600081905550505062000134620001286200017060201b60201c565b6200017860201b60201c565b6001600b819055506200014f8160fa6200023e60201b60201c565b62000162336064620003e260201b60201c565b5050506200100d565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024e6200040860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a69062000d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003199062000e06565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620004048282604051806020016040528060008152506200041260201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000480576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620004bc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004d160008583866200080160201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506200069f8673ffffffffffffffffffffffffffffffffffffffff166200080760201b62001e1e1760201c565b1562000771575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200071d60008784806001019550876200082a60201b60201c565b62000754576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006a65782600054146200076b57600080fd5b620007dd565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000772575b816000819055505050620007fb60008583866200098c60201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008586200017060201b60201c565b8786866040518563ffffffff1660e01b81526004016200087c949392919062000ec5565b6020604051808303816000875af1925050508015620008bb57506040513d601f19601f82011682018060405250810190620008b8919062000f76565b60015b62000939573d8060008114620008ee576040519150601f19603f3d011682016040523d82523d6000602084013e620008f3565b606091505b5060008151141562000931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009a09062000fd7565b90600052602060002090601f016020900481019282620009c4576000855562000a10565b82601f10620009df57805160ff191683800117855562000a10565b8280016001018555821562000a10579182015b8281111562000a0f578251825591602001919060010190620009f2565b5b50905062000a1f919062000a23565b5090565b5b8082111562000a3e57600081600090555060010162000a24565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ada8262000a8f565b810181811067ffffffffffffffff8211171562000afc5762000afb62000aa0565b5b80604052505050565b600062000b1162000a71565b905062000b1f828262000acf565b919050565b600067ffffffffffffffff82111562000b425762000b4162000aa0565b5b62000b4d8262000a8f565b9050602081019050919050565b60005b8381101562000b7a57808201518184015260208101905062000b5d565b8381111562000b8a576000848401525b50505050565b600062000ba762000ba18462000b24565b62000b05565b90508281526020810184848401111562000bc65762000bc562000a8a565b5b62000bd384828562000b5a565b509392505050565b600082601f83011262000bf35762000bf262000a85565b5b815162000c0584826020860162000b90565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c3b8262000c0e565b9050919050565b62000c4d8162000c2e565b811462000c5957600080fd5b50565b60008151905062000c6d8162000c42565b92915050565b60008060006060848603121562000c8f5762000c8e62000a7b565b5b600084015167ffffffffffffffff81111562000cb05762000caf62000a80565b5b62000cbe8682870162000bdb565b935050602084015167ffffffffffffffff81111562000ce25762000ce162000a80565b5b62000cf08682870162000bdb565b925050604062000d038682870162000c5c565b9150509250925092565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000d7c602a8362000d0d565b915062000d898262000d1e565b604082019050919050565b6000602082019050818103600083015262000daf8162000d6d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000dee60198362000d0d565b915062000dfb8262000db6565b602082019050919050565b6000602082019050818103600083015262000e218162000ddf565b9050919050565b600062000e358262000c0e565b9050919050565b62000e478162000e28565b82525050565b6000819050919050565b62000e628162000e4d565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000e918262000e68565b62000e9d818562000e73565b935062000eaf81856020860162000b5a565b62000eba8162000a8f565b840191505092915050565b600060808201905062000edc600083018762000e3c565b62000eeb602083018662000e3c565b62000efa604083018562000e57565b818103606083015262000f0e818462000e84565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f508162000f19565b811462000f5c57600080fd5b50565b60008151905062000f708162000f45565b92915050565b60006020828403121562000f8f5762000f8e62000a7b565b5b600062000f9f8482850162000f5f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff057607f821691505b6020821081141562001007576200100662000fa8565b5b50919050565b6147b3806200101d6000396000f3fe60806040526004361061020f5760003560e01c80636f8b44b011610118578063b88d4fde116100a0578063dc33e6811161006f578063dc33e68114610763578063e985e9c5146107a0578063eb8d2444146107dd578063f2fde38b14610808578063f47c84c5146108315761020f565b8063b88d4fde146106b8578063b9bed05e146106e1578063c634d0321461070a578063c87b56dd146107265761020f565b80637ff9b596116100e75780637ff9b596146105e55780638da5cb5b14610610578063900c71f51461063b57806395d89b4114610664578063a22cb4651461068f5761020f565b80636f8b44b01461053f57806370a0823114610568578063715018a6146105a557806378cf19e9146105bc5761020f565b806334918dfd1161019b57806355f804b31161016a57806355f804b31461045a5780635e307a48146104835780636352211e146104ae5780636a61e5fc146104eb5780636c0360eb146105145761020f565b806334918dfd146103c65780633ccfd60b146103dd57806342842e0e146103f45780634df8bb451461041d5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b578063205c28781461033657806323b872dd1461035f5780632a55205a146103885761020f565b806301ffc9a71461021457806302fa7c471461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133ab565b61085c565b60405161024891906133f3565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906134b0565b61086e565b005b34801561028657600080fd5b5061028f6108f8565b60405161029c9190613589565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906135e1565b61098a565b6040516102d9919061361d565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613638565b610a06565b005b34801561031757600080fd5b50610320610b0b565b60405161032d9190613687565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613638565b610b22565b005b34801561036b57600080fd5b50610386600480360381019061038191906136a2565b610c2c565b005b34801561039457600080fd5b506103af60048036038101906103aa91906136f5565b610c3c565b6040516103bd929190613735565b60405180910390f35b3480156103d257600080fd5b506103db610e27565b005b3480156103e957600080fd5b506103f2610ecf565b005b34801561040057600080fd5b5061041b600480360381019061041691906136a2565b610f9a565b005b34801561042957600080fd5b50610444600480360381019061043f919061375e565b610fba565b6040516104519190613824565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613974565b61101c565b005b34801561048f57600080fd5b506104986110b2565b6040516104a59190613687565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906135e1565b6110b8565b6040516104e2919061361d565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906135e1565b6110ce565b005b34801561052057600080fd5b50610529611154565b6040516105369190613589565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906135e1565b6111e2565b005b34801561057457600080fd5b5061058f600480360381019061058a919061375e565b611268565b60405161059c9190613687565b60405180910390f35b3480156105b157600080fd5b506105ba611338565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613638565b6113c0565b005b3480156105f157600080fd5b506105fa6114a8565b6040516106079190613687565b60405180910390f35b34801561061c57600080fd5b506106256114ae565b604051610632919061361d565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d91906135e1565b6114d8565b005b34801561067057600080fd5b506106796115bc565b6040516106869190613589565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906139e9565b61164e565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613aca565b6117c6565b005b3480156106ed57600080fd5b50610708600480360381019061070391906135e1565b61183e565b005b610724600480360381019061071f91906135e1565b6118c4565b005b34801561073257600080fd5b5061074d600480360381019061074891906135e1565b611b25565b60405161075a9190613589565b60405180910390f35b34801561076f57600080fd5b5061078a6004803603810190610785919061375e565b611c67565b6040516107979190613687565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613b4d565b611c79565b6040516107d491906133f3565b60405180910390f35b3480156107e957600080fd5b506107f2611d0d565b6040516107ff91906133f3565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a919061375e565b611d20565b005b34801561083d57600080fd5b50610846611e18565b6040516108539190613687565b60405180910390f35b600061086782611e41565b9050919050565b610876611ebb565b73ffffffffffffffffffffffffffffffffffffffff166108946114ae565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190613bd9565b60405180910390fd5b6108f48282611ec3565b5050565b60606002805461090790613c28565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613c28565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b600061099582612059565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a11826110b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a98611ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf611ebb565b611c79565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b068383836120a7565b505050565b6000610b15612159565b6001546000540303905090565b610b2a611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610b486114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613bd9565b60405180910390fd5b47811115610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613ccc565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b505050565b610c3783838361215e565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610dd25760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ddc612614565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e089190613d1b565b610e129190613da4565b90508160000151819350935050509250929050565b610e2f611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90613bd9565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610ed7611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610ef56114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613bd9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f96573d6000803e3d6000fd5b5050565b610fb5838383604051806020016040528060008152506117c6565b505050565b610fc2613221565b6040518060c00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff1615158152602001611004610b0b565b81526020016110128461261e565b8152509050919050565b611024611ebb565b73ffffffffffffffffffffffffffffffffffffffff166110426114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613bd9565b60405180910390fd5b80600c90805190602001906110ae929190613259565b5050565b600e5481565b60006110c382612688565b600001519050919050565b6110d6611ebb565b73ffffffffffffffffffffffffffffffffffffffff166110f46114ae565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613bd9565b60405180910390fd5b80600d8190555050565b600c805461116190613c28565b80601f016020809104026020016040519081016040528092919081815260200182805461118d90613c28565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b505050505081565b6111ea611ebb565b73ffffffffffffffffffffffffffffffffffffffff166112086114ae565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613bd9565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611340611ebb565b73ffffffffffffffffffffffffffffffffffffffff1661135e6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613bd9565b60405180910390fd5b6113be6000612913565b565b6113c8611ebb565b73ffffffffffffffffffffffffffffffffffffffff166113e66114ae565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613bd9565b60405180910390fd5b600f546114598261144b610b0b565b6129d990919063ffffffff16565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613e47565b60405180910390fd5b6114a48282612a37565b5050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e0611ebb565b73ffffffffffffffffffffffffffffffffffffffff166114fe6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613bd9565b60405180910390fd5b600281141561158d576001601060016101000a81548160ff0219169083600181111561158357611582613e67565b5b02179055506115b9565b6000601060016101000a81548160ff021916908360018111156115b3576115b2613e67565b5b02179055505b50565b6060600380546115cb90613c28565b80601f01602080910402602001604051908101604052809291908181526020018280546115f790613c28565b80156116445780601f1061161957610100808354040283529160200191611644565b820191906000526020600020905b81548152906001019060200180831161162757829003601f168201915b5050505050905090565b611656611ebb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c8611ebb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611775611ebb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ba91906133f3565b60405180910390a35050565b6117d184848461215e565b6117f08373ffffffffffffffffffffffffffffffffffffffff16611e1e565b156118385761180184848484612a55565b611837576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611846611ebb565b73ffffffffffffffffffffffffffffffffffffffff166118646114ae565b73ffffffffffffffffffffffffffffffffffffffff16146118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613bd9565b60405180910390fd5b80600e8190555050565b6002600b54141561190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613ee2565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613f74565b60405180910390fd5b600e548111156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614006565b60405180910390fd5b600081116119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614072565b60405180910390fd5b600f54611a06826119f8610b0b565b6129d990919063ffffffff16565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614104565b60405180910390fd5b6000611a523361261e565b90506000811115611ab257600d5482611a6b9190613d1b565b341015611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490614170565b60405180910390fd5b611b0f565b600d54600183611ac29190614190565b611acc9190613d1b565b341015611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614170565b60405180910390fd5b5b611b193383612a37565b506001600b8190555050565b6060611b3082612059565b611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690614210565b60405180910390fd5b600180811115611b8257611b81613e67565b5b601060019054906101000a900460ff166001811115611ba457611ba3613e67565b5b1415611c08576000600c8054611bb990613c28565b905011611bd55760405180602001604052806000815250611c01565b600c611be083612ba6565b604051602001611bf1929190614300565b6040516020818303038152906040525b9050611c62565b6000600c8054611c1790613c28565b905011611c335760405180602001604052806000815250611c5f565b600c611c3e83612ba6565b604051602001611c4f929190614370565b6040516020818303038152906040525b90505b919050565b6000611c728261261e565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611d28611ebb565b73ffffffffffffffffffffffffffffffffffffffff16611d466114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390613bd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390614411565b60405180910390fd5b611e1581612913565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eb45750611eb382612d07565b5b9050919050565b600033905090565b611ecb612614565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f20906144a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061450f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612064612159565b11158015612073575060005482105b80156120a0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061216982612688565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121f5611ebb565b73ffffffffffffffffffffffffffffffffffffffff16148061222457506122238561221e611ebb565b611c79565b5b806122695750612232611ebb565b73ffffffffffffffffffffffffffffffffffffffff166122518461098a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612309576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123168585856001612de9565b612322600084876120a7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125a25760005482146125a157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461260d8585856001612def565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126906132df565b60008290508061269e612159565b116128dc576000548110156128db576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128d957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bd57809250505061290e565b5b6001156128d857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d357809250505061290e565b6127be565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082846129e8919061452f565b905083811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906145d1565b60405180910390fd5b8091505092915050565b612a51828260405180602001604052806000815250612df5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7b611ebb565b8786866040518563ffffffff1660e01b8152600401612a9d9493929190614646565b6020604051808303816000875af1925050508015612ad957506040513d601f19601f82011682018060405250810190612ad691906146a7565b60015b612b53573d8060008114612b09576040519150601f19603f3d011682016040523d82523d6000602084013e612b0e565b606091505b50600081511415612b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d02565b600082905060005b60008214612c20578080612c09906146d4565b915050600a82612c199190613da4565b9150612bf6565b60008167ffffffffffffffff811115612c3c57612c3b613849565b5b6040519080825280601f01601f191660200182016040528015612c6e5781602001600182028036833780820191505090505b5090505b60008514612cfb57600182612c879190614190565b9150600a85612c96919061471d565b6030612ca2919061452f565b60f81b818381518110612cb857612cb761474e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cf49190613da4565b9450612c72565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dd257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612de25750612de1826131b7565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eaa6000858386612de9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061306b8673ffffffffffffffffffffffffffffffffffffffff16611e1e565b15613130575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e06000878480600101955087612a55565b613116576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061307157826000541461312b57600080fd5b61319b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613131575b8160008190555050506131b16000858386612def565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060c0016040528060008152602001600081526020016000815260200160001515815260200160008152602001600081525090565b82805461326590613c28565b90600052602060002090601f01602090048101928261328757600085556132ce565b82601f106132a057805160ff19168380011785556132ce565b828001600101855582156132ce579182015b828111156132cd5782518255916020019190600101906132b2565b5b5090506132db9190613322565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561333b576000816000905550600101613323565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338881613353565b811461339357600080fd5b50565b6000813590506133a58161337f565b92915050565b6000602082840312156133c1576133c0613349565b5b60006133cf84828501613396565b91505092915050565b60008115159050919050565b6133ed816133d8565b82525050565b600060208201905061340860008301846133e4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134398261340e565b9050919050565b6134498161342e565b811461345457600080fd5b50565b60008135905061346681613440565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61348d8161346c565b811461349857600080fd5b50565b6000813590506134aa81613484565b92915050565b600080604083850312156134c7576134c6613349565b5b60006134d585828601613457565b92505060206134e68582860161349b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561352a57808201518184015260208101905061350f565b83811115613539576000848401525b50505050565b6000601f19601f8301169050919050565b600061355b826134f0565b61356581856134fb565b935061357581856020860161350c565b61357e8161353f565b840191505092915050565b600060208201905081810360008301526135a38184613550565b905092915050565b6000819050919050565b6135be816135ab565b81146135c957600080fd5b50565b6000813590506135db816135b5565b92915050565b6000602082840312156135f7576135f6613349565b5b6000613605848285016135cc565b91505092915050565b6136178161342e565b82525050565b6000602082019050613632600083018461360e565b92915050565b6000806040838503121561364f5761364e613349565b5b600061365d85828601613457565b925050602061366e858286016135cc565b9150509250929050565b613681816135ab565b82525050565b600060208201905061369c6000830184613678565b92915050565b6000806000606084860312156136bb576136ba613349565b5b60006136c986828701613457565b93505060206136da86828701613457565b92505060406136eb868287016135cc565b9150509250925092565b6000806040838503121561370c5761370b613349565b5b600061371a858286016135cc565b925050602061372b858286016135cc565b9150509250929050565b600060408201905061374a600083018561360e565b6137576020830184613678565b9392505050565b60006020828403121561377457613773613349565b5b600061378284828501613457565b91505092915050565b613794816135ab565b82525050565b6137a3816133d8565b82525050565b60c0820160008201516137bf600085018261378b565b5060208201516137d2602085018261378b565b5060408201516137e5604085018261378b565b5060608201516137f8606085018261379a565b50608082015161380b608085018261378b565b5060a082015161381e60a085018261378b565b50505050565b600060c08201905061383960008301846137a9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138818261353f565b810181811067ffffffffffffffff821117156138a05761389f613849565b5b80604052505050565b60006138b361333f565b90506138bf8282613878565b919050565b600067ffffffffffffffff8211156138df576138de613849565b5b6138e88261353f565b9050602081019050919050565b82818337600083830152505050565b6000613917613912846138c4565b6138a9565b90508281526020810184848401111561393357613932613844565b5b61393e8482856138f5565b509392505050565b600082601f83011261395b5761395a61383f565b5b813561396b848260208601613904565b91505092915050565b60006020828403121561398a57613989613349565b5b600082013567ffffffffffffffff8111156139a8576139a761334e565b5b6139b484828501613946565b91505092915050565b6139c6816133d8565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff613349565b5b6000613a0e85828601613457565b9250506020613a1f858286016139d4565b9150509250929050565b600067ffffffffffffffff821115613a4457613a43613849565b5b613a4d8261353f565b9050602081019050919050565b6000613a6d613a6884613a29565b6138a9565b905082815260208101848484011115613a8957613a88613844565b5b613a948482856138f5565b509392505050565b600082601f830112613ab157613ab061383f565b5b8135613ac1848260208601613a5a565b91505092915050565b60008060008060808587031215613ae457613ae3613349565b5b6000613af287828801613457565b9450506020613b0387828801613457565b9350506040613b14878288016135cc565b925050606085013567ffffffffffffffff811115613b3557613b3461334e565b5b613b4187828801613a9c565b91505092959194509250565b60008060408385031215613b6457613b63613349565b5b6000613b7285828601613457565b9250506020613b8385828601613457565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bc36020836134fb565b9150613bce82613b8d565b602082019050919050565b60006020820190508181036000830152613bf281613bb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4057607f821691505b60208210811415613c5457613c53613bf9565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613cb6602d836134fb565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d26826135ab565b9150613d31836135ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6a57613d69613cec565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613daf826135ab565b9150613dba836135ab565b925082613dca57613dc9613d75565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b6000613e316029836134fb565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613ecc601f836134fb565b9150613ed782613e96565b602082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5e6021836134fb565b9150613f6982613f02565b604082019050919050565b60006020820190508181036000830152613f8d81613f51565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b6000613ff0603f836134fb565b9150613ffb82613f94565b604082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061405c6020836134fb565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006140ee602a836134fb565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061415a601f836134fb565b915061416582614124565b602082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b600061419b826135ab565b91506141a6836135ab565b9250828210156141b9576141b8613cec565b5b828203905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006141fa6015836134fb565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461425d81613c28565b6142678186614230565b945060018216600081146142825760018114614293576142c6565b60ff198316865281860193506142c6565b61429c8561423b565b60005b838110156142be5781548189015260018201915060208101905061429f565b838801955050505b50505092915050565b60006142da826134f0565b6142e48185614230565b93506142f481856020860161350c565b80840191505092915050565b600061430c8285614250565b915061431882846142cf565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061435a600583614230565b915061436582614324565b600582019050919050565b600061437c8285614250565b915061438882846142cf565b91506143938261434d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143fb6026836134fb565b91506144068261439f565b604082019050919050565b6000602082019050818103600083015261442a816143ee565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061448d602a836134fb565b915061449882614431565b604082019050919050565b600060208201905081810360008301526144bc81614480565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006144f96019836134fb565b9150614504826144c3565b602082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b600061453a826135ab565b9150614545836135ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561457a57614579613cec565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006145bb601b836134fb565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614618826145f1565b61462281856145fc565b935061463281856020860161350c565b61463b8161353f565b840191505092915050565b600060808201905061465b600083018761360e565b614668602083018661360e565b6146756040830185613678565b8181036060830152614687818461460d565b905095945050505050565b6000815190506146a18161337f565b92915050565b6000602082840312156146bd576146bc613349565b5b60006146cb84828501614692565b91505092915050565b60006146df826135ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561471257614711613cec565b5b600182019050919050565b6000614728826135ab565b9150614733836135ab565b92508261474357614742613d75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c8300af697265fc5ef0a9c8eab11e4fbb4b281ff06619c6eda1294b333a9f2b064736f6c634300080a0033697066733a2f2f626166796265696868617576736f6e756c696f3667356335776e616973366b6d7532366964616e65643332676a6b776c6134763461797736747a752f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dd0ff11815ed6a2004d8798954288d306d5bfdd1000000000000000000000000000000000000000000000000000000000000000a52656b746775793432300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055247343230000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636f8b44b011610118578063b88d4fde116100a0578063dc33e6811161006f578063dc33e68114610763578063e985e9c5146107a0578063eb8d2444146107dd578063f2fde38b14610808578063f47c84c5146108315761020f565b8063b88d4fde146106b8578063b9bed05e146106e1578063c634d0321461070a578063c87b56dd146107265761020f565b80637ff9b596116100e75780637ff9b596146105e55780638da5cb5b14610610578063900c71f51461063b57806395d89b4114610664578063a22cb4651461068f5761020f565b80636f8b44b01461053f57806370a0823114610568578063715018a6146105a557806378cf19e9146105bc5761020f565b806334918dfd1161019b57806355f804b31161016a57806355f804b31461045a5780635e307a48146104835780636352211e146104ae5780636a61e5fc146104eb5780636c0360eb146105145761020f565b806334918dfd146103c65780633ccfd60b146103dd57806342842e0e146103f45780634df8bb451461041d5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b578063205c28781461033657806323b872dd1461035f5780632a55205a146103885761020f565b806301ffc9a71461021457806302fa7c471461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133ab565b61085c565b60405161024891906133f3565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906134b0565b61086e565b005b34801561028657600080fd5b5061028f6108f8565b60405161029c9190613589565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906135e1565b61098a565b6040516102d9919061361d565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613638565b610a06565b005b34801561031757600080fd5b50610320610b0b565b60405161032d9190613687565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613638565b610b22565b005b34801561036b57600080fd5b50610386600480360381019061038191906136a2565b610c2c565b005b34801561039457600080fd5b506103af60048036038101906103aa91906136f5565b610c3c565b6040516103bd929190613735565b60405180910390f35b3480156103d257600080fd5b506103db610e27565b005b3480156103e957600080fd5b506103f2610ecf565b005b34801561040057600080fd5b5061041b600480360381019061041691906136a2565b610f9a565b005b34801561042957600080fd5b50610444600480360381019061043f919061375e565b610fba565b6040516104519190613824565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613974565b61101c565b005b34801561048f57600080fd5b506104986110b2565b6040516104a59190613687565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906135e1565b6110b8565b6040516104e2919061361d565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906135e1565b6110ce565b005b34801561052057600080fd5b50610529611154565b6040516105369190613589565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906135e1565b6111e2565b005b34801561057457600080fd5b5061058f600480360381019061058a919061375e565b611268565b60405161059c9190613687565b60405180910390f35b3480156105b157600080fd5b506105ba611338565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613638565b6113c0565b005b3480156105f157600080fd5b506105fa6114a8565b6040516106079190613687565b60405180910390f35b34801561061c57600080fd5b506106256114ae565b604051610632919061361d565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d91906135e1565b6114d8565b005b34801561067057600080fd5b506106796115bc565b6040516106869190613589565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906139e9565b61164e565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613aca565b6117c6565b005b3480156106ed57600080fd5b50610708600480360381019061070391906135e1565b61183e565b005b610724600480360381019061071f91906135e1565b6118c4565b005b34801561073257600080fd5b5061074d600480360381019061074891906135e1565b611b25565b60405161075a9190613589565b60405180910390f35b34801561076f57600080fd5b5061078a6004803603810190610785919061375e565b611c67565b6040516107979190613687565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613b4d565b611c79565b6040516107d491906133f3565b60405180910390f35b3480156107e957600080fd5b506107f2611d0d565b6040516107ff91906133f3565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a919061375e565b611d20565b005b34801561083d57600080fd5b50610846611e18565b6040516108539190613687565b60405180910390f35b600061086782611e41565b9050919050565b610876611ebb565b73ffffffffffffffffffffffffffffffffffffffff166108946114ae565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190613bd9565b60405180910390fd5b6108f48282611ec3565b5050565b60606002805461090790613c28565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613c28565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b600061099582612059565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a11826110b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a98611ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf611ebb565b611c79565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b068383836120a7565b505050565b6000610b15612159565b6001546000540303905090565b610b2a611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610b486114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613bd9565b60405180910390fd5b47811115610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613ccc565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b505050565b610c3783838361215e565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610dd25760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ddc612614565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e089190613d1b565b610e129190613da4565b90508160000151819350935050509250929050565b610e2f611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90613bd9565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610ed7611ebb565b73ffffffffffffffffffffffffffffffffffffffff16610ef56114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613bd9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f96573d6000803e3d6000fd5b5050565b610fb5838383604051806020016040528060008152506117c6565b505050565b610fc2613221565b6040518060c00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff1615158152602001611004610b0b565b81526020016110128461261e565b8152509050919050565b611024611ebb565b73ffffffffffffffffffffffffffffffffffffffff166110426114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613bd9565b60405180910390fd5b80600c90805190602001906110ae929190613259565b5050565b600e5481565b60006110c382612688565b600001519050919050565b6110d6611ebb565b73ffffffffffffffffffffffffffffffffffffffff166110f46114ae565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613bd9565b60405180910390fd5b80600d8190555050565b600c805461116190613c28565b80601f016020809104026020016040519081016040528092919081815260200182805461118d90613c28565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b505050505081565b6111ea611ebb565b73ffffffffffffffffffffffffffffffffffffffff166112086114ae565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613bd9565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611340611ebb565b73ffffffffffffffffffffffffffffffffffffffff1661135e6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613bd9565b60405180910390fd5b6113be6000612913565b565b6113c8611ebb565b73ffffffffffffffffffffffffffffffffffffffff166113e66114ae565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613bd9565b60405180910390fd5b600f546114598261144b610b0b565b6129d990919063ffffffff16565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613e47565b60405180910390fd5b6114a48282612a37565b5050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e0611ebb565b73ffffffffffffffffffffffffffffffffffffffff166114fe6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613bd9565b60405180910390fd5b600281141561158d576001601060016101000a81548160ff0219169083600181111561158357611582613e67565b5b02179055506115b9565b6000601060016101000a81548160ff021916908360018111156115b3576115b2613e67565b5b02179055505b50565b6060600380546115cb90613c28565b80601f01602080910402602001604051908101604052809291908181526020018280546115f790613c28565b80156116445780601f1061161957610100808354040283529160200191611644565b820191906000526020600020905b81548152906001019060200180831161162757829003601f168201915b5050505050905090565b611656611ebb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c8611ebb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611775611ebb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ba91906133f3565b60405180910390a35050565b6117d184848461215e565b6117f08373ffffffffffffffffffffffffffffffffffffffff16611e1e565b156118385761180184848484612a55565b611837576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611846611ebb565b73ffffffffffffffffffffffffffffffffffffffff166118646114ae565b73ffffffffffffffffffffffffffffffffffffffff16146118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613bd9565b60405180910390fd5b80600e8190555050565b6002600b54141561190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613ee2565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613f74565b60405180910390fd5b600e548111156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614006565b60405180910390fd5b600081116119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614072565b60405180910390fd5b600f54611a06826119f8610b0b565b6129d990919063ffffffff16565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614104565b60405180910390fd5b6000611a523361261e565b90506000811115611ab257600d5482611a6b9190613d1b565b341015611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490614170565b60405180910390fd5b611b0f565b600d54600183611ac29190614190565b611acc9190613d1b565b341015611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614170565b60405180910390fd5b5b611b193383612a37565b506001600b8190555050565b6060611b3082612059565b611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690614210565b60405180910390fd5b600180811115611b8257611b81613e67565b5b601060019054906101000a900460ff166001811115611ba457611ba3613e67565b5b1415611c08576000600c8054611bb990613c28565b905011611bd55760405180602001604052806000815250611c01565b600c611be083612ba6565b604051602001611bf1929190614300565b6040516020818303038152906040525b9050611c62565b6000600c8054611c1790613c28565b905011611c335760405180602001604052806000815250611c5f565b600c611c3e83612ba6565b604051602001611c4f929190614370565b6040516020818303038152906040525b90505b919050565b6000611c728261261e565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611d28611ebb565b73ffffffffffffffffffffffffffffffffffffffff16611d466114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390613bd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390614411565b60405180910390fd5b611e1581612913565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eb45750611eb382612d07565b5b9050919050565b600033905090565b611ecb612614565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f20906144a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061450f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612064612159565b11158015612073575060005482105b80156120a0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061216982612688565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121f5611ebb565b73ffffffffffffffffffffffffffffffffffffffff16148061222457506122238561221e611ebb565b611c79565b5b806122695750612232611ebb565b73ffffffffffffffffffffffffffffffffffffffff166122518461098a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612309576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123168585856001612de9565b612322600084876120a7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125a25760005482146125a157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461260d8585856001612def565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126906132df565b60008290508061269e612159565b116128dc576000548110156128db576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128d957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bd57809250505061290e565b5b6001156128d857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d357809250505061290e565b6127be565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082846129e8919061452f565b905083811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906145d1565b60405180910390fd5b8091505092915050565b612a51828260405180602001604052806000815250612df5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7b611ebb565b8786866040518563ffffffff1660e01b8152600401612a9d9493929190614646565b6020604051808303816000875af1925050508015612ad957506040513d601f19601f82011682018060405250810190612ad691906146a7565b60015b612b53573d8060008114612b09576040519150601f19603f3d011682016040523d82523d6000602084013e612b0e565b606091505b50600081511415612b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d02565b600082905060005b60008214612c20578080612c09906146d4565b915050600a82612c199190613da4565b9150612bf6565b60008167ffffffffffffffff811115612c3c57612c3b613849565b5b6040519080825280601f01601f191660200182016040528015612c6e5781602001600182028036833780820191505090505b5090505b60008514612cfb57600182612c879190614190565b9150600a85612c96919061471d565b6030612ca2919061452f565b60f81b818381518110612cb857612cb761474e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cf49190613da4565b9450612c72565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dd257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612de25750612de1826131b7565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eaa6000858386612de9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061306b8673ffffffffffffffffffffffffffffffffffffffff16611e1e565b15613130575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e06000878480600101955087612a55565b613116576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061307157826000541461312b57600080fd5b61319b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613131575b8160008190555050506131b16000858386612def565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060c0016040528060008152602001600081526020016000815260200160001515815260200160008152602001600081525090565b82805461326590613c28565b90600052602060002090601f01602090048101928261328757600085556132ce565b82601f106132a057805160ff19168380011785556132ce565b828001600101855582156132ce579182015b828111156132cd5782518255916020019190600101906132b2565b5b5090506132db9190613322565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561333b576000816000905550600101613323565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338881613353565b811461339357600080fd5b50565b6000813590506133a58161337f565b92915050565b6000602082840312156133c1576133c0613349565b5b60006133cf84828501613396565b91505092915050565b60008115159050919050565b6133ed816133d8565b82525050565b600060208201905061340860008301846133e4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134398261340e565b9050919050565b6134498161342e565b811461345457600080fd5b50565b60008135905061346681613440565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61348d8161346c565b811461349857600080fd5b50565b6000813590506134aa81613484565b92915050565b600080604083850312156134c7576134c6613349565b5b60006134d585828601613457565b92505060206134e68582860161349b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561352a57808201518184015260208101905061350f565b83811115613539576000848401525b50505050565b6000601f19601f8301169050919050565b600061355b826134f0565b61356581856134fb565b935061357581856020860161350c565b61357e8161353f565b840191505092915050565b600060208201905081810360008301526135a38184613550565b905092915050565b6000819050919050565b6135be816135ab565b81146135c957600080fd5b50565b6000813590506135db816135b5565b92915050565b6000602082840312156135f7576135f6613349565b5b6000613605848285016135cc565b91505092915050565b6136178161342e565b82525050565b6000602082019050613632600083018461360e565b92915050565b6000806040838503121561364f5761364e613349565b5b600061365d85828601613457565b925050602061366e858286016135cc565b9150509250929050565b613681816135ab565b82525050565b600060208201905061369c6000830184613678565b92915050565b6000806000606084860312156136bb576136ba613349565b5b60006136c986828701613457565b93505060206136da86828701613457565b92505060406136eb868287016135cc565b9150509250925092565b6000806040838503121561370c5761370b613349565b5b600061371a858286016135cc565b925050602061372b858286016135cc565b9150509250929050565b600060408201905061374a600083018561360e565b6137576020830184613678565b9392505050565b60006020828403121561377457613773613349565b5b600061378284828501613457565b91505092915050565b613794816135ab565b82525050565b6137a3816133d8565b82525050565b60c0820160008201516137bf600085018261378b565b5060208201516137d2602085018261378b565b5060408201516137e5604085018261378b565b5060608201516137f8606085018261379a565b50608082015161380b608085018261378b565b5060a082015161381e60a085018261378b565b50505050565b600060c08201905061383960008301846137a9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138818261353f565b810181811067ffffffffffffffff821117156138a05761389f613849565b5b80604052505050565b60006138b361333f565b90506138bf8282613878565b919050565b600067ffffffffffffffff8211156138df576138de613849565b5b6138e88261353f565b9050602081019050919050565b82818337600083830152505050565b6000613917613912846138c4565b6138a9565b90508281526020810184848401111561393357613932613844565b5b61393e8482856138f5565b509392505050565b600082601f83011261395b5761395a61383f565b5b813561396b848260208601613904565b91505092915050565b60006020828403121561398a57613989613349565b5b600082013567ffffffffffffffff8111156139a8576139a761334e565b5b6139b484828501613946565b91505092915050565b6139c6816133d8565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff613349565b5b6000613a0e85828601613457565b9250506020613a1f858286016139d4565b9150509250929050565b600067ffffffffffffffff821115613a4457613a43613849565b5b613a4d8261353f565b9050602081019050919050565b6000613a6d613a6884613a29565b6138a9565b905082815260208101848484011115613a8957613a88613844565b5b613a948482856138f5565b509392505050565b600082601f830112613ab157613ab061383f565b5b8135613ac1848260208601613a5a565b91505092915050565b60008060008060808587031215613ae457613ae3613349565b5b6000613af287828801613457565b9450506020613b0387828801613457565b9350506040613b14878288016135cc565b925050606085013567ffffffffffffffff811115613b3557613b3461334e565b5b613b4187828801613a9c565b91505092959194509250565b60008060408385031215613b6457613b63613349565b5b6000613b7285828601613457565b9250506020613b8385828601613457565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bc36020836134fb565b9150613bce82613b8d565b602082019050919050565b60006020820190508181036000830152613bf281613bb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4057607f821691505b60208210811415613c5457613c53613bf9565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613cb6602d836134fb565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d26826135ab565b9150613d31836135ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6a57613d69613cec565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613daf826135ab565b9150613dba836135ab565b925082613dca57613dc9613d75565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b6000613e316029836134fb565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613ecc601f836134fb565b9150613ed782613e96565b602082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5e6021836134fb565b9150613f6982613f02565b604082019050919050565b60006020820190508181036000830152613f8d81613f51565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b6000613ff0603f836134fb565b9150613ffb82613f94565b604082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061405c6020836134fb565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006140ee602a836134fb565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061415a601f836134fb565b915061416582614124565b602082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b600061419b826135ab565b91506141a6836135ab565b9250828210156141b9576141b8613cec565b5b828203905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006141fa6015836134fb565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461425d81613c28565b6142678186614230565b945060018216600081146142825760018114614293576142c6565b60ff198316865281860193506142c6565b61429c8561423b565b60005b838110156142be5781548189015260018201915060208101905061429f565b838801955050505b50505092915050565b60006142da826134f0565b6142e48185614230565b93506142f481856020860161350c565b80840191505092915050565b600061430c8285614250565b915061431882846142cf565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061435a600583614230565b915061436582614324565b600582019050919050565b600061437c8285614250565b915061438882846142cf565b91506143938261434d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143fb6026836134fb565b91506144068261439f565b604082019050919050565b6000602082019050818103600083015261442a816143ee565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061448d602a836134fb565b915061449882614431565b604082019050919050565b600060208201905081810360008301526144bc81614480565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006144f96019836134fb565b9150614504826144c3565b602082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b600061453a826135ab565b9150614545836135ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561457a57614579613cec565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006145bb601b836134fb565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614618826145f1565b61462281856145fc565b935061463281856020860161350c565b61463b8161353f565b840191505092915050565b600060808201905061465b600083018761360e565b614668602083018661360e565b6146756040830185613678565b8181036060830152614687818461460d565b905095945050505050565b6000815190506146a18161337f565b92915050565b6000602082840312156146bd576146bc613349565b5b60006146cb84828501614692565b91505092915050565b60006146df826135ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561471257614711613cec565b5b600182019050919050565b6000614728826135ab565b9150614733836135ab565b92508261474357614742613d75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c8300af697265fc5ef0a9c8eab11e4fbb4b281ff06619c6eda1294b333a9f2b064736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dd0ff11815ed6a2004d8798954288d306d5bfdd1000000000000000000000000000000000000000000000000000000000000000a52656b746775793432300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055247343230000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Rektguy420
Arg [1] : symbol (string): RG420
Arg [2] : royaltyReceiver (address): 0xdD0ff11815ED6a2004D8798954288d306d5bfDD1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000dd0ff11815ed6a2004d8798954288d306d5bfdd1
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 52656b7467757934323000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5247343230000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

75856:4986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80635:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80457:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77407:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70596:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;77996:89;;;;;;;;;;;;;:::i;:::-;;77258:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76858:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77890:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76131:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78925:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75964:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80154:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;77628:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76066:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79682:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80263:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78093:824;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79040:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80032:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76212:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76171:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80635:204;80766:4;80795:36;80819:11;80795:23;:36::i;:::-;80788:43;;80635:204;;;:::o;80457:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80575:44:::1;80594:8;80604:14;80575:18;:44::i;:::-;80457:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;77407:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77501:21:::1;77491:6;:31;;77483:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;77591:2;77583:20;;:28;77604:6;77583:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77407:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;70596:494::-;70740:7;70749;70774:26;70803:17;:27;70821:8;70803:27;;;;;;;;;;;70774:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70875:1;70847:30;;:7;:16;;;:30;;;70843:92;;;70904:19;70894:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70843:92;70947:21;71012:17;:15;:17::i;:::-;70971:58;;70985:7;:23;;;70972:36;;:10;:36;;;;:::i;:::-;70971:58;;;;:::i;:::-;70947:82;;71050:7;:16;;;71068:13;71042:40;;;;;;70596:494;;;;;:::o;77996:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78065:12:::1;;;;;;;;;;;78064:13;78049:12;;:28;;;;;;;;;;;;;;;;;;77996:89::o:0;77258:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77306:12:::1;77321:21;77306:36;;77361:10;77353:28;;:37;77382:7;77353:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77295:103;77258:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;76858:392::-;76913:18;;:::i;:::-;76951:291;;;;;;;;76990:10;;76951:291;;;;77031:14;;76951:291;;;;77072:10;;76951:291;;;;77111:12;;;;;;;;;;;76951:291;;;;;;77159:13;:11;:13::i;:::-;76951:291;;;;77208:21;77222:6;77208:13;:21::i;:::-;76951:291;;;76944:298;;76858:392;;;:::o;77890:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77970:6:::1;77960:7;:16;;;;;;;;;;;;:::i;:::-;;77890:94:::0;:::o;76131:31::-;;;;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;78925:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79011:13:::1;78998:10;:26;;;;78925:107:::0;:::o;75964:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80154:101::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80237:10:::1;80224;:23;;;;80154:101:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;77628:241::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77765:10:::1;;77728:33;77746:14;77728:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;77720:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;77832:29;77842:2;77846:14;77832:9;:29::i;:::-;77628:241:::0;;:::o;76066:44::-;;;;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;79682:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79763:1:::1;79755:4;:9;79751:147;;;79796:21;79781:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;79751:147;;;79865:21;79850:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;79751:147;79682:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;80263:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80358:15:::1;80341:14;:32;;;;80263:118:::0;:::o;78093:824::-;74907:1;75505:7;;:19;;75497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;74907:1;75638:7;:18;;;;78180:12:::1;;;;;;;;;;;78172:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;78267:14;;78249;:32;;78241:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;78385:1;78368:14;:18;78360:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;78479:10;;78442:33;78460:14;78442:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;78434:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;78549:14;78566:25;78580:10;78566:13;:25::i;:::-;78549:42;;78615:1;78606:6;:10;78602:250;;;78671:10;;78654:14;:27;;;;:::i;:::-;78641:9;:40;;78633:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78602:250;;;78794:10;;78789:1;78772:14;:18;;;;:::i;:::-;78771:33;;;;:::i;:::-;78758:9;:46;;78750:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;78602:250;78872:37;78882:10;78894:14;78872:9;:37::i;:::-;78161:756;74863:1:::0;75817:7;:22;;;;78093:824;:::o;79040:634::-;79106:13;79146:17;79154:8;79146:7;:17::i;:::-;79138:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;79220:21;79204:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;79200:467;;;79287:1;79269:7;79263:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;79345:7;79369:26;79386:8;79369:16;:26::i;:::-;79312:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79263:165;79256:172;;;;79200:467;79490:1;79472:7;79466:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;79548:7;79572:26;79589:8;79572:16;:26::i;:::-;79515:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79466:189;79459:196;;79040:634;;;;:::o;80032:113::-;80090:7;80117:20;80131:5;80117:13;:20::i;:::-;80110:27;;80032:113;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;76212:32::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;76171:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;70326:215::-;70428:4;70467:26;70452:41;;;:11;:41;;;;:81;;;;70497:36;70521:11;70497:23;:36::i;:::-;70452:81;70445:88;;70326:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;71740:332::-;71859:17;:15;:17::i;:::-;71843:33;;:12;:33;;;;71835:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71962:1;71942:22;;:8;:22;;;;71934:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72029:35;;;;;;;;72041:8;72029:35;;;;;;72051:12;72029:35;;;;;72007:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71740:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;71372:97::-;71430:6;71456:5;71449:12;;71372:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;63559:179::-;63617:7;63637:9;63653:1;63649;:5;;;;:::i;:::-;63637:17;;63678:1;63673;:6;;63665:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63729:1;63722:8;;;63559:179;;;;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:329::-;7654:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:119;;;7709:79;;:::i;:::-;7671:119;7829:1;7854:53;7899:7;7890:6;7879:9;7875:22;7854:53;:::i;:::-;7844:63;;7800:117;7595:329;;;;:::o;7930:108::-;8007:24;8025:5;8007:24;:::i;:::-;8002:3;7995:37;7930:108;;:::o;8044:99::-;8115:21;8130:5;8115:21;:::i;:::-;8110:3;8103:34;8044:99;;:::o;8219:1248::-;8374:4;8369:3;8365:14;8467:4;8460:5;8456:16;8450:23;8486:63;8543:4;8538:3;8534:14;8520:12;8486:63;:::i;:::-;8389:170;8651:4;8644:5;8640:16;8634:23;8670:63;8727:4;8722:3;8718:14;8704:12;8670:63;:::i;:::-;8569:174;8831:4;8824:5;8820:16;8814:23;8850:63;8907:4;8902:3;8898:14;8884:12;8850:63;:::i;:::-;8753:170;9013:4;9006:5;9002:16;8996:23;9032:57;9083:4;9078:3;9074:14;9060:12;9032:57;:::i;:::-;8933:166;9188:4;9181:5;9177:16;9171:23;9207:63;9264:4;9259:3;9255:14;9241:12;9207:63;:::i;:::-;9109:171;9368:4;9361:5;9357:16;9351:23;9387:63;9444:4;9439:3;9435:14;9421:12;9387:63;:::i;:::-;9290:170;8343:1124;8219:1248;;:::o;9473:339::-;9624:4;9662:3;9651:9;9647:19;9639:27;;9676:129;9802:1;9791:9;9787:17;9778:6;9676:129;:::i;:::-;9473:339;;;;:::o;9818:117::-;9927:1;9924;9917:12;9941:117;10050:1;10047;10040:12;10064:180;10112:77;10109:1;10102:88;10209:4;10206:1;10199:15;10233:4;10230:1;10223:15;10250:281;10333:27;10355:4;10333:27;:::i;:::-;10325:6;10321:40;10463:6;10451:10;10448:22;10427:18;10415:10;10412:34;10409:62;10406:88;;;10474:18;;:::i;:::-;10406:88;10514:10;10510:2;10503:22;10293:238;10250:281;;:::o;10537:129::-;10571:6;10598:20;;:::i;:::-;10588:30;;10627:33;10655:4;10647:6;10627:33;:::i;:::-;10537:129;;;:::o;10672:308::-;10734:4;10824:18;10816:6;10813:30;10810:56;;;10846:18;;:::i;:::-;10810:56;10884:29;10906:6;10884:29;:::i;:::-;10876:37;;10968:4;10962;10958:15;10950:23;;10672:308;;;:::o;10986:154::-;11070:6;11065:3;11060;11047:30;11132:1;11123:6;11118:3;11114:16;11107:27;10986:154;;;:::o;11146:412::-;11224:5;11249:66;11265:49;11307:6;11265:49;:::i;:::-;11249:66;:::i;:::-;11240:75;;11338:6;11331:5;11324:21;11376:4;11369:5;11365:16;11414:3;11405:6;11400:3;11396:16;11393:25;11390:112;;;11421:79;;:::i;:::-;11390:112;11511:41;11545:6;11540:3;11535;11511:41;:::i;:::-;11230:328;11146:412;;;;;:::o;11578:340::-;11634:5;11683:3;11676:4;11668:6;11664:17;11660:27;11650:122;;11691:79;;:::i;:::-;11650:122;11808:6;11795:20;11833:79;11908:3;11900:6;11893:4;11885:6;11881:17;11833:79;:::i;:::-;11824:88;;11640:278;11578:340;;;;:::o;11924:509::-;11993:6;12042:2;12030:9;12021:7;12017:23;12013:32;12010:119;;;12048:79;;:::i;:::-;12010:119;12196:1;12185:9;12181:17;12168:31;12226:18;12218:6;12215:30;12212:117;;;12248:79;;:::i;:::-;12212:117;12353:63;12408:7;12399:6;12388:9;12384:22;12353:63;:::i;:::-;12343:73;;12139:287;11924:509;;;;:::o;12439:116::-;12509:21;12524:5;12509:21;:::i;:::-;12502:5;12499:32;12489:60;;12545:1;12542;12535:12;12489:60;12439:116;:::o;12561:133::-;12604:5;12642:6;12629:20;12620:29;;12658:30;12682:5;12658:30;:::i;:::-;12561:133;;;;:::o;12700:468::-;12765:6;12773;12822:2;12810:9;12801:7;12797:23;12793:32;12790:119;;;12828:79;;:::i;:::-;12790:119;12948:1;12973:53;13018:7;13009:6;12998:9;12994:22;12973:53;:::i;:::-;12963:63;;12919:117;13075:2;13101:50;13143:7;13134:6;13123:9;13119:22;13101:50;:::i;:::-;13091:60;;13046:115;12700:468;;;;;:::o;13174:307::-;13235:4;13325:18;13317:6;13314:30;13311:56;;;13347:18;;:::i;:::-;13311:56;13385:29;13407:6;13385:29;:::i;:::-;13377:37;;13469:4;13463;13459:15;13451:23;;13174:307;;;:::o;13487:410::-;13564:5;13589:65;13605:48;13646:6;13605:48;:::i;:::-;13589:65;:::i;:::-;13580:74;;13677:6;13670:5;13663:21;13715:4;13708:5;13704:16;13753:3;13744:6;13739:3;13735:16;13732:25;13729:112;;;13760:79;;:::i;:::-;13729:112;13850:41;13884:6;13879:3;13874;13850:41;:::i;:::-;13570:327;13487:410;;;;;:::o;13916:338::-;13971:5;14020:3;14013:4;14005:6;14001:17;13997:27;13987:122;;14028:79;;:::i;:::-;13987:122;14145:6;14132:20;14170:78;14244:3;14236:6;14229:4;14221:6;14217:17;14170:78;:::i;:::-;14161:87;;13977:277;13916:338;;;;:::o;14260:943::-;14355:6;14363;14371;14379;14428:3;14416:9;14407:7;14403:23;14399:33;14396:120;;;14435:79;;:::i;:::-;14396:120;14555:1;14580:53;14625:7;14616:6;14605:9;14601:22;14580:53;:::i;:::-;14570:63;;14526:117;14682:2;14708:53;14753:7;14744:6;14733:9;14729:22;14708:53;:::i;:::-;14698:63;;14653:118;14810:2;14836:53;14881:7;14872:6;14861:9;14857:22;14836:53;:::i;:::-;14826:63;;14781:118;14966:2;14955:9;14951:18;14938:32;14997:18;14989:6;14986:30;14983:117;;;15019:79;;:::i;:::-;14983:117;15124:62;15178:7;15169:6;15158:9;15154:22;15124:62;:::i;:::-;15114:72;;14909:287;14260:943;;;;;;;:::o;15209:474::-;15277:6;15285;15334:2;15322:9;15313:7;15309:23;15305:32;15302:119;;;15340:79;;:::i;:::-;15302:119;15460:1;15485:53;15530:7;15521:6;15510:9;15506:22;15485:53;:::i;:::-;15475:63;;15431:117;15587:2;15613:53;15658:7;15649:6;15638:9;15634:22;15613:53;:::i;:::-;15603:63;;15558:118;15209:474;;;;;:::o;15689:182::-;15829:34;15825:1;15817:6;15813:14;15806:58;15689:182;:::o;15877:366::-;16019:3;16040:67;16104:2;16099:3;16040:67;:::i;:::-;16033:74;;16116:93;16205:3;16116:93;:::i;:::-;16234:2;16229:3;16225:12;16218:19;;15877:366;;;:::o;16249:419::-;16415:4;16453:2;16442:9;16438:18;16430:26;;16502:9;16496:4;16492:20;16488:1;16477:9;16473:17;16466:47;16530:131;16656:4;16530:131;:::i;:::-;16522:139;;16249:419;;;:::o;16674:180::-;16722:77;16719:1;16712:88;16819:4;16816:1;16809:15;16843:4;16840:1;16833:15;16860:320;16904:6;16941:1;16935:4;16931:12;16921:22;;16988:1;16982:4;16978:12;17009:18;16999:81;;17065:4;17057:6;17053:17;17043:27;;16999:81;17127:2;17119:6;17116:14;17096:18;17093:38;17090:84;;;17146:18;;:::i;:::-;17090:84;16911:269;16860:320;;;:::o;17186:232::-;17326:34;17322:1;17314:6;17310:14;17303:58;17395:15;17390:2;17382:6;17378:15;17371:40;17186:232;:::o;17424:366::-;17566:3;17587:67;17651:2;17646:3;17587:67;:::i;:::-;17580:74;;17663:93;17752:3;17663:93;:::i;:::-;17781:2;17776:3;17772:12;17765:19;;17424:366;;;:::o;17796:419::-;17962:4;18000:2;17989:9;17985:18;17977:26;;18049:9;18043:4;18039:20;18035:1;18024:9;18020:17;18013:47;18077:131;18203:4;18077:131;:::i;:::-;18069:139;;17796:419;;;:::o;18221:180::-;18269:77;18266:1;18259:88;18366:4;18363:1;18356:15;18390:4;18387:1;18380:15;18407:348;18447:7;18470:20;18488:1;18470:20;:::i;:::-;18465:25;;18504:20;18522:1;18504:20;:::i;:::-;18499:25;;18692:1;18624:66;18620:74;18617:1;18614:81;18609:1;18602:9;18595:17;18591:105;18588:131;;;18699:18;;:::i;:::-;18588:131;18747:1;18744;18740:9;18729:20;;18407:348;;;;:::o;18761:180::-;18809:77;18806:1;18799:88;18906:4;18903:1;18896:15;18930:4;18927:1;18920:15;18947:185;18987:1;19004:20;19022:1;19004:20;:::i;:::-;18999:25;;19038:20;19056:1;19038:20;:::i;:::-;19033:25;;19077:1;19067:35;;19082:18;;:::i;:::-;19067:35;19124:1;19121;19117:9;19112:14;;18947:185;;;;:::o;19138:228::-;19278:34;19274:1;19266:6;19262:14;19255:58;19347:11;19342:2;19334:6;19330:15;19323:36;19138:228;:::o;19372:366::-;19514:3;19535:67;19599:2;19594:3;19535:67;:::i;:::-;19528:74;;19611:93;19700:3;19611:93;:::i;:::-;19729:2;19724:3;19720:12;19713:19;;19372:366;;;:::o;19744:419::-;19910:4;19948:2;19937:9;19933:18;19925:26;;19997:9;19991:4;19987:20;19983:1;19972:9;19968:17;19961:47;20025:131;20151:4;20025:131;:::i;:::-;20017:139;;19744:419;;;:::o;20169:180::-;20217:77;20214:1;20207:88;20314:4;20311:1;20304:15;20338:4;20335:1;20328:15;20355:181;20495:33;20491:1;20483:6;20479:14;20472:57;20355:181;:::o;20542:366::-;20684:3;20705:67;20769:2;20764:3;20705:67;:::i;:::-;20698:74;;20781:93;20870:3;20781:93;:::i;:::-;20899:2;20894:3;20890:12;20883:19;;20542:366;;;:::o;20914:419::-;21080:4;21118:2;21107:9;21103:18;21095:26;;21167:9;21161:4;21157:20;21153:1;21142:9;21138:17;21131:47;21195:131;21321:4;21195:131;:::i;:::-;21187:139;;20914:419;;;:::o;21339:220::-;21479:34;21475:1;21467:6;21463:14;21456:58;21548:3;21543:2;21535:6;21531:15;21524:28;21339:220;:::o;21565:366::-;21707:3;21728:67;21792:2;21787:3;21728:67;:::i;:::-;21721:74;;21804:93;21893:3;21804:93;:::i;:::-;21922:2;21917:3;21913:12;21906:19;;21565:366;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:250::-;22502:34;22498:1;22490:6;22486:14;22479:58;22571:33;22566:2;22558:6;22554:15;22547:58;22362:250;:::o;22618:366::-;22760:3;22781:67;22845:2;22840:3;22781:67;:::i;:::-;22774:74;;22857:93;22946:3;22857:93;:::i;:::-;22975:2;22970:3;22966:12;22959:19;;22618:366;;;:::o;22990:419::-;23156:4;23194:2;23183:9;23179:18;23171:26;;23243:9;23237:4;23233:20;23229:1;23218:9;23214:17;23207:47;23271:131;23397:4;23271:131;:::i;:::-;23263:139;;22990:419;;;:::o;23415:182::-;23555:34;23551:1;23543:6;23539:14;23532:58;23415:182;:::o;23603:366::-;23745:3;23766:67;23830:2;23825:3;23766:67;:::i;:::-;23759:74;;23842:93;23931:3;23842:93;:::i;:::-;23960:2;23955:3;23951:12;23944:19;;23603:366;;;:::o;23975:419::-;24141:4;24179:2;24168:9;24164:18;24156:26;;24228:9;24222:4;24218:20;24214:1;24203:9;24199:17;24192:47;24256:131;24382:4;24256:131;:::i;:::-;24248:139;;23975:419;;;:::o;24400:229::-;24540:34;24536:1;24528:6;24524:14;24517:58;24609:12;24604:2;24596:6;24592:15;24585:37;24400:229;:::o;24635:366::-;24777:3;24798:67;24862:2;24857:3;24798:67;:::i;:::-;24791:74;;24874:93;24963:3;24874:93;:::i;:::-;24992:2;24987:3;24983:12;24976:19;;24635:366;;;:::o;25007:419::-;25173:4;25211:2;25200:9;25196:18;25188:26;;25260:9;25254:4;25250:20;25246:1;25235:9;25231:17;25224:47;25288:131;25414:4;25288:131;:::i;:::-;25280:139;;25007:419;;;:::o;25432:181::-;25572:33;25568:1;25560:6;25556:14;25549:57;25432:181;:::o;25619:366::-;25761:3;25782:67;25846:2;25841:3;25782:67;:::i;:::-;25775:74;;25858:93;25947:3;25858:93;:::i;:::-;25976:2;25971:3;25967:12;25960:19;;25619:366;;;:::o;25991:419::-;26157:4;26195:2;26184:9;26180:18;26172:26;;26244:9;26238:4;26234:20;26230:1;26219:9;26215:17;26208:47;26272:131;26398:4;26272:131;:::i;:::-;26264:139;;25991:419;;;:::o;26416:191::-;26456:4;26476:20;26494:1;26476:20;:::i;:::-;26471:25;;26510:20;26528:1;26510:20;:::i;:::-;26505:25;;26549:1;26546;26543:8;26540:34;;;26554:18;;:::i;:::-;26540:34;26599:1;26596;26592:9;26584:17;;26416:191;;;;:::o;26613:171::-;26753:23;26749:1;26741:6;26737:14;26730:47;26613:171;:::o;26790:366::-;26932:3;26953:67;27017:2;27012:3;26953:67;:::i;:::-;26946:74;;27029:93;27118:3;27029:93;:::i;:::-;27147:2;27142:3;27138:12;27131:19;;26790:366;;;:::o;27162:419::-;27328:4;27366:2;27355:9;27351:18;27343:26;;27415:9;27409:4;27405:20;27401:1;27390:9;27386:17;27379:47;27443:131;27569:4;27443:131;:::i;:::-;27435:139;;27162:419;;;:::o;27587:148::-;27689:11;27726:3;27711:18;;27587:148;;;;:::o;27741:141::-;27790:4;27813:3;27805:11;;27836:3;27833:1;27826:14;27870:4;27867:1;27857:18;27849:26;;27741:141;;;:::o;27912:845::-;28015:3;28052:5;28046:12;28081:36;28107:9;28081:36;:::i;:::-;28133:89;28215:6;28210:3;28133:89;:::i;:::-;28126:96;;28253:1;28242:9;28238:17;28269:1;28264:137;;;;28415:1;28410:341;;;;28231:520;;28264:137;28348:4;28344:9;28333;28329:25;28324:3;28317:38;28384:6;28379:3;28375:16;28368:23;;28264:137;;28410:341;28477:38;28509:5;28477:38;:::i;:::-;28537:1;28551:154;28565:6;28562:1;28559:13;28551:154;;;28639:7;28633:14;28629:1;28624:3;28620:11;28613:35;28689:1;28680:7;28676:15;28665:26;;28587:4;28584:1;28580:12;28575:17;;28551:154;;;28734:6;28729:3;28725:16;28718:23;;28417:334;;28231:520;;28019:738;;27912:845;;;;:::o;28763:377::-;28869:3;28897:39;28930:5;28897:39;:::i;:::-;28952:89;29034:6;29029:3;28952:89;:::i;:::-;28945:96;;29050:52;29095:6;29090:3;29083:4;29076:5;29072:16;29050:52;:::i;:::-;29127:6;29122:3;29118:16;29111:23;;28873:267;28763:377;;;;:::o;29146:429::-;29323:3;29345:92;29433:3;29424:6;29345:92;:::i;:::-;29338:99;;29454:95;29545:3;29536:6;29454:95;:::i;:::-;29447:102;;29566:3;29559:10;;29146:429;;;;;:::o;29581:155::-;29721:7;29717:1;29709:6;29705:14;29698:31;29581:155;:::o;29742:400::-;29902:3;29923:84;30005:1;30000:3;29923:84;:::i;:::-;29916:91;;30016:93;30105:3;30016:93;:::i;:::-;30134:1;30129:3;30125:11;30118:18;;29742:400;;;:::o;30148:695::-;30426:3;30448:92;30536:3;30527:6;30448:92;:::i;:::-;30441:99;;30557:95;30648:3;30639:6;30557:95;:::i;:::-;30550:102;;30669:148;30813:3;30669:148;:::i;:::-;30662:155;;30834:3;30827:10;;30148:695;;;;;:::o;30849:225::-;30989:34;30985:1;30977:6;30973:14;30966:58;31058:8;31053:2;31045:6;31041:15;31034:33;30849:225;:::o;31080:366::-;31222:3;31243:67;31307:2;31302:3;31243:67;:::i;:::-;31236:74;;31319:93;31408:3;31319:93;:::i;:::-;31437:2;31432:3;31428:12;31421:19;;31080:366;;;:::o;31452:419::-;31618:4;31656:2;31645:9;31641:18;31633:26;;31705:9;31699:4;31695:20;31691:1;31680:9;31676:17;31669:47;31733:131;31859:4;31733:131;:::i;:::-;31725:139;;31452:419;;;:::o;31877:229::-;32017:34;32013:1;32005:6;32001:14;31994:58;32086:12;32081:2;32073:6;32069:15;32062:37;31877:229;:::o;32112:366::-;32254:3;32275:67;32339:2;32334:3;32275:67;:::i;:::-;32268:74;;32351:93;32440:3;32351:93;:::i;:::-;32469:2;32464:3;32460:12;32453:19;;32112:366;;;:::o;32484:419::-;32650:4;32688:2;32677:9;32673:18;32665:26;;32737:9;32731:4;32727:20;32723:1;32712:9;32708:17;32701:47;32765:131;32891:4;32765:131;:::i;:::-;32757:139;;32484:419;;;:::o;32909:175::-;33049:27;33045:1;33037:6;33033:14;33026:51;32909:175;:::o;33090:366::-;33232:3;33253:67;33317:2;33312:3;33253:67;:::i;:::-;33246:74;;33329:93;33418:3;33329:93;:::i;:::-;33447:2;33442:3;33438:12;33431:19;;33090:366;;;:::o;33462:419::-;33628:4;33666:2;33655:9;33651:18;33643:26;;33715:9;33709:4;33705:20;33701:1;33690:9;33686:17;33679:47;33743:131;33869:4;33743:131;:::i;:::-;33735:139;;33462:419;;;:::o;33887:305::-;33927:3;33946:20;33964:1;33946:20;:::i;:::-;33941:25;;33980:20;33998:1;33980:20;:::i;:::-;33975:25;;34134:1;34066:66;34062:74;34059:1;34056:81;34053:107;;;34140:18;;:::i;:::-;34053:107;34184:1;34181;34177:9;34170:16;;33887:305;;;;:::o;34198:177::-;34338:29;34334:1;34326:6;34322:14;34315:53;34198:177;:::o;34381:366::-;34523:3;34544:67;34608:2;34603:3;34544:67;:::i;:::-;34537:74;;34620:93;34709:3;34620:93;:::i;:::-;34738:2;34733:3;34729:12;34722:19;;34381:366;;;:::o;34753:419::-;34919:4;34957:2;34946:9;34942:18;34934:26;;35006:9;35000:4;34996:20;34992:1;34981:9;34977:17;34970:47;35034:131;35160:4;35034:131;:::i;:::-;35026:139;;34753:419;;;:::o;35178:98::-;35229:6;35263:5;35257:12;35247:22;;35178:98;;;:::o;35282:168::-;35365:11;35399:6;35394:3;35387:19;35439:4;35434:3;35430:14;35415:29;;35282:168;;;;:::o;35456:360::-;35542:3;35570:38;35602:5;35570:38;:::i;:::-;35624:70;35687:6;35682:3;35624:70;:::i;:::-;35617:77;;35703:52;35748:6;35743:3;35736:4;35729:5;35725:16;35703:52;:::i;:::-;35780:29;35802:6;35780:29;:::i;:::-;35775:3;35771:39;35764:46;;35546:270;35456:360;;;;:::o;35822:640::-;36017:4;36055:3;36044:9;36040:19;36032:27;;36069:71;36137:1;36126:9;36122:17;36113:6;36069:71;:::i;:::-;36150:72;36218:2;36207:9;36203:18;36194:6;36150:72;:::i;:::-;36232;36300:2;36289:9;36285:18;36276:6;36232:72;:::i;:::-;36351:9;36345:4;36341:20;36336:2;36325:9;36321:18;36314:48;36379:76;36450:4;36441:6;36379:76;:::i;:::-;36371:84;;35822:640;;;;;;;:::o;36468:141::-;36524:5;36555:6;36549:13;36540:22;;36571:32;36597:5;36571:32;:::i;:::-;36468:141;;;;:::o;36615:349::-;36684:6;36733:2;36721:9;36712:7;36708:23;36704:32;36701:119;;;36739:79;;:::i;:::-;36701:119;36859:1;36884:63;36939:7;36930:6;36919:9;36915:22;36884:63;:::i;:::-;36874:73;;36830:127;36615:349;;;;:::o;36970:233::-;37009:3;37032:24;37050:5;37032:24;:::i;:::-;37023:33;;37078:66;37071:5;37068:77;37065:103;;;37148:18;;:::i;:::-;37065:103;37195:1;37188:5;37184:13;37177:20;;36970:233;;;:::o;37209:176::-;37241:1;37258:20;37276:1;37258:20;:::i;:::-;37253:25;;37292:20;37310:1;37292:20;:::i;:::-;37287:25;;37331:1;37321:35;;37336:18;;:::i;:::-;37321:35;37377:1;37374;37370:9;37365:14;;37209:176;;;;:::o;37391:180::-;37439:77;37436:1;37429:88;37536:4;37533:1;37526:15;37560:4;37557:1;37550:15

Swarm Source

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