ETH Price: $4,020.97 (+2.54%)

Token

ERC-20: Hue16bit (HUE16)

Overview

Max Total Supply

180 HUE16

Holders

55

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
HueNft

Compiler Version
v0.8.16+commit.07a7930e

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 20 : HueNft.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.11;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./ISplitter.sol";  // Import the splitter contract
import "./ERC721Merkle.sol";

contract HueNft is ERC721Merkle  {
    ISplitter public splitter;  // Declare the splitter contract
    uint256 public tier;
    address public proceedsRecipient;
    
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _contractURI,
        uint256 _maxSupply,
        uint256 _publicPrice,
        uint256 _publicMaxMintAmount,
        string memory _notRevealedURI,
        bool _isRevealed,
        address _splitter,
        uint256 _tier,
        address _proceedsRecipient,
        address _comissionRecipient,
        address payable _defaultRoyaltyRecipient,
        uint256 _defaultRoyaltyPercentage
    ) ERC721Merkle(
        _name,
        _symbol,
        _contractURI,
        _maxSupply,
        _publicPrice,
        _publicMaxMintAmount,
        "null",
        _notRevealedURI,
        _comissionRecipient,
        0,
        _defaultRoyaltyRecipient,
        _defaultRoyaltyPercentage,
        _isRevealed
    ) {
        splitter = ISplitter(_splitter);  // Set the splitter contract
        tier = _tier;
        proceedsRecipient = _proceedsRecipient;
    }

    modifier onlySplitter() {
        require(msg.sender == address(splitter), "Caller is not the splitter");
        _;
    }

    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        // Before the reveal, return the "not revealed" URI.
        if (!isRevealed) {
            return notRevealedURI;
        }

        // Call the splitter's tokenURI method
        return splitter.tokenURI(tokenId, tier);
    }

    // else is the same!
    function setSplitter(address _splitter) public onlyOwner {
        splitter = ISplitter(_splitter);
    }

    function splitterMint(address to, uint256 tokenId) public onlySplitter {
        require(!_exists(tokenId), "ERC721: token already minted");

        // Your additional split-related logic goes here...

        _mint(to, tokenId);
    }

    function burn(uint256 tokenId) public onlySplitter {
        _burn(tokenId);
    }

    bool private withdrawnA = false;
    bool private withdrawnB = false;

    function withdrawA() external onlyOwner {
        require(!withdrawnA, "Already withdrawn to A");
        uint256 amount = 3.07 ether;
        require(address(this).balance >= amount, "Insufficient balance");

        // Updating the state before making the transfer
        withdrawnA = true;
        (bool success, ) = payable(comissionRecipient).call{value: amount}("");
        require(success, "Transfer failed");
    }

    function withdrawB() external onlyOwner {
        require(withdrawnA, "A must be withdrawn first");
        require(!withdrawnB, "Already withdrawn to B");
        uint256 amount = 58.25 ether;
        require(address(this).balance >= amount, "Insufficient balance");

        // Updating the state before making the transfer
        withdrawnB = true;
        (bool success, ) = payable(proceedsRecipient).call{value: amount}("");
        require(success, "Transfer failed");
    }

    function withdrawRemaining() external onlyOwner {
        require(withdrawnA && withdrawnB, "Initial withdrawals not completed");
        uint256 balance = address(this).balance;
        uint256 toA = balance * 5 / 100;
        uint256 toB = balance - toA;
        (bool successA, ) = payable(comissionRecipient).call{value: toA}("");
        require(successA, "Transfer to A failed");
        (bool successB, ) = payable(proceedsRecipient).call{value: toB}("");
        require(successB, "Transfer to B failed");
    }

    function withdraw() external payable override {
        // Do nothing here
    }

}

File 2 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.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 paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 4 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 5 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 6 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 20 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

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

File 8 of 20 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 20 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 12 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 14 of 20 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 15 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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;
    }
}

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

pragma solidity ^0.8.0;

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

File 17 of 20 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 18 of 20 : ERC721Merkle.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721Template.sol";

contract ERC721Merkle is ERC721Template {
    uint256 public presalePrice;
    uint256 public presaleStartTime = type(uint256).max;
    mapping(uint256 => bytes32) private presaleMerkleRoots;
    uint256[] private tiers;
    mapping(address => uint256) private presaleMints;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _contractURI,
        uint256 _maxSupply,
        uint256 _publicPrice,
        uint256 _publicMaxMintAmount,
        string memory _defaultBaseURI,
        string memory _notRevealedURI,
        address _comissionRecipient,
        uint256 _comissionPercentage,
        address payable _defaultRoyaltyRecipient,
        uint256 _defaultRoyaltyPercentage,
        bool _isRevealed
    ) ERC721Template(
        _name,
        _symbol,
        _contractURI,
        _maxSupply,
        _publicPrice,
        _publicMaxMintAmount,
        _defaultBaseURI,
        _notRevealedURI,
        _comissionRecipient,
        _comissionPercentage,
        _defaultRoyaltyRecipient,
        _defaultRoyaltyPercentage,
        _isRevealed
    ) {
        // add code here if you want to do something specific during contract deployment
    }

    // Get a root for a tier
    function getPresaleMerkleRoot(uint256 tier) public view returns (bytes32) {
        return presaleMerkleRoots[tier];
    }

    function getValidTier(address _user, bytes32[] calldata _studentProof) public view returns (uint256) {
        // if (balanceOf(_user) > 0) {
        //     return 0;
        // }

        uint256 highestValidTier = 0;
        for (uint256 i = 0; i < tiers.length; i++) {
            bytes32 root = presaleMerkleRoots[tiers[i]];
            if (MerkleProof.verify(_studentProof, root, keccak256(abi.encodePacked(_user)))) {
                // Check if the current valid tier is higher than the highestValidTier
                if (tiers[i] > highestValidTier) {
                    highestValidTier = tiers[i];
                }
            }
        }

        return highestValidTier - presaleMintedBy(msg.sender);
    }

    function presaleMintedBy(address account) public view returns (uint256) {
        return presaleMints[account];
    }

    function presaleMint(
        uint256 k,
        bytes32[] calldata _studentProof
    ) external payable {
        require(block.timestamp >= presaleStartTime, "Presale not active");
        require(msg.value >= k * presalePrice, "Insufficient funds for mint");
        uint256 ts = totalSupply();
        require(ts + k <= maxSupply, "Cannot mint more than max supply");
        uint256 validTier = getValidTier(msg.sender, _studentProof);
        // error if the user is not in any tier or if the tier is smaller than the number of tokens user wants to mint
        require(validTier > 0 && validTier >= k, "Not prelisted");
        presaleMints[msg.sender] += k;
        for (uint256 i = 1; i <= k; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

    function setPresaleMerkleRoot(uint256 tier, bytes32 _presaleMerkleRoot) external onlyOwner {
        // If the tier has not been set yet, add it to the tiers list
        if(presaleMerkleRoots[tier] == bytes32(0)) {
            tiers.push(tier);
        }
        presaleMerkleRoots[tier] = _presaleMerkleRoot;
    }

    function setPresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }

    function togglePresaleActive() external onlyOwner {
        if (block.timestamp < presaleStartTime) {
            presaleStartTime = block.timestamp;
        } else {
            // This effectively disables the presale sale by setting the start time to a far future
            presaleStartTime = type(uint256).max;
        }
    }

    // Sets the start time of the public sale to a specific timestamp
    function setPresaleStartTime(uint256 _presaleStartTime) external onlyOwner {
        presaleStartTime = _presaleStartTime;
    }
}

File 19 of 20 : ERC721Template.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.11;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";

contract ERC721Template is ERC721Enumerable, IERC2981, Ownable {
    using Strings for uint256;

    string private baseURI;
    string public notRevealedURI;
    uint256 public maxSupply;
    uint256 public publicPrice;
    uint256 public publicMaxMintAmount;
    uint256 public publicSaleStartTime = type(uint256).max;
    bool public isRevealed;
    // address that will receive a part of revenue on withdrawal
    address public comissionRecipient;
    // percentage of revenue to be sent to comissionRecipient
    uint256 public comissionPercentage;
    // Add this to your variables declarations
    string public contractURI;
    //presale price is set after

    // Default royalty info
    address payable public defaultRoyaltyRecipient;
    uint256 public defaultRoyaltyPercentage;
    // Per-token royalty info
    mapping(uint256 => address payable) public tokenRoyaltyRecipient;
    mapping(uint256 => uint256) public tokenRoyaltyPercentage;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _contractURI,
        uint256 _maxSupply,
        uint256 _publicPrice,
        uint256 _publicMaxMintAmount,
        string memory _defaultBaseURI,
        string memory _notRevealedURI,
        address _comissionRecipient,
        uint256 _comissionPercentage,
        address payable _defaultRoyaltyRecipient,
        uint256 _defaultRoyaltyPercentage,
        bool _isRevealed
    ) ERC721(_name, _symbol) {
        setMaxSupply(_maxSupply);
        setPublicPrice(_publicPrice);
        setContractURI(_contractURI);
        setBaseURI(_defaultBaseURI);
        setNotRevealedURI(_notRevealedURI);
        publicMaxMintAmount = _publicMaxMintAmount;
        comissionRecipient = _comissionRecipient;
        // Ensure commission percentage is between 0 and 10000 (0-100%)
        require(_comissionPercentage <= 10000, "Invalid commission percentage");
        comissionPercentage = _comissionPercentage;
        defaultRoyaltyRecipient = _defaultRoyaltyRecipient;
        defaultRoyaltyPercentage = _defaultRoyaltyPercentage;
        isRevealed = _isRevealed;
    }

    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (isRevealed == false) {
            return notRevealedURI;
        }
        string memory identifier = tokenId.toString();
        return
            bytes(baseURI).length != 0
                ? string(abi.encodePacked(baseURI, identifier, ".json"))
                : "";
    }

    // public

    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(block.timestamp >= publicSaleStartTime, "Public sale not active");
        require(_mintAmount > 0, "You have to mint alteast one");
        require(supply + _mintAmount <= maxSupply, "Max supply reached");
        require(
            msg.value >= publicPrice * _mintAmount,
            "Cost is higher than the amount sent"
        );
        require(
            balanceOf(msg.sender) + _mintAmount <= publicMaxMintAmount,
            "Invalid amount to be minted"
        );
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function adminMint(address _to, uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function setPublicPrice(uint256 _newPrice) public onlyOwner {
        publicPrice = _newPrice;
    }

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

    function setPublicMaxMintAmount(
        uint256 _publicMaxMintAmount
    ) public onlyOwner {
        publicMaxMintAmount = _publicMaxMintAmount;
    }

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

    function setMaxSupply(uint256 _newmaxSupply) public onlyOwner {
        maxSupply = _newmaxSupply;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

    function togglePublicSaleActive() external onlyOwner {
        if (block.timestamp < publicSaleStartTime) {
            publicSaleStartTime = block.timestamp;
        } else {
            // This effectively disables the public sale by setting the start time to a far future
            publicSaleStartTime = type(uint256).max;
        }
    }

    // Sets the start time of the public sale to a specific timestamp
    function setPublicSaleStartTime(uint256 _publicSaleStartTime) external onlyOwner {
        publicSaleStartTime = _publicSaleStartTime;
    }

    function toggleReveal() external onlyOwner {
        isRevealed = !isRevealed;
    }

    // existing functions

    function setDefaultRoyaltyInfo(address payable _defaultRoyaltyRecipient, uint256 _defaultRoyaltyPercentage) public onlyOwner {
        defaultRoyaltyRecipient = _defaultRoyaltyRecipient;
        defaultRoyaltyPercentage = _defaultRoyaltyPercentage;
    }

    function setTokenRoyaltyInfo(uint256 _tokenId, address payable _royaltyRecipient, uint256 _royaltyPercentage) public onlyOwner {
        require(_exists(_tokenId), "Token does not exist");
        tokenRoyaltyRecipient[_tokenId] = _royaltyRecipient;
        tokenRoyaltyPercentage[_tokenId] = _royaltyPercentage;
    }

    // implement ERC2981
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address, uint256) {
        uint256 royaltyPercentage = tokenRoyaltyPercentage[_tokenId] != 0 ? tokenRoyaltyPercentage[_tokenId] : defaultRoyaltyPercentage;
        address royaltyRecipient = tokenRoyaltyRecipient[_tokenId] != address(0) ? tokenRoyaltyRecipient[_tokenId] : defaultRoyaltyRecipient;
        return (royaltyRecipient, (_salePrice * royaltyPercentage) / 10000);
    }

    function withdraw() external payable virtual {
        require(
            msg.sender == owner() || msg.sender == comissionRecipient,
            "Only owner or commission recipient can withdraw"
        );

        uint256 comission = (address(this).balance * comissionPercentage) /
            10000; // Divide by 10000 instead of 100
        uint256 ownerAmount = address(this).balance - comission;

        if (comission > 0) {
            (bool cs, ) = payable(comissionRecipient).call{value: comission}(
                ""
            );
            require(cs);
        }

        if (ownerAmount > 0) {
            (bool os, ) = payable(owner()).call{value: ownerAmount}("");
            require(os);
        }
    }
}

File 20 of 20 : ISplitter.sol
pragma solidity ^0.8.0;

interface ISplitter {
    function tokenURI(uint256 _tokenId, uint256 tier) external view returns (string memory);
}

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"},{"internalType":"uint256","name":"_publicMaxMintAmount","type":"uint256"},{"internalType":"string","name":"_notRevealedURI","type":"string"},{"internalType":"bool","name":"_isRevealed","type":"bool"},{"internalType":"address","name":"_splitter","type":"address"},{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"address","name":"_proceedsRecipient","type":"address"},{"internalType":"address","name":"_comissionRecipient","type":"address"},{"internalType":"address payable","name":"_defaultRoyaltyRecipient","type":"address"},{"internalType":"uint256","name":"_defaultRoyaltyPercentage","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"comissionPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comissionRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultRoyaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultRoyaltyRecipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"}],"name":"getPresaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_studentProof","type":"bytes32[]"}],"name":"getValidTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"k","type":"uint256"},{"internalType":"bytes32[]","name":"_studentProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"presaleMintedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proceedsRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_defaultRoyaltyRecipient","type":"address"},{"internalType":"uint256","name":"_defaultRoyaltyPercentage","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"bytes32","name":"_presaleMerkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleStartTime","type":"uint256"}],"name":"setPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxMintAmount","type":"uint256"}],"name":"setPublicMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleStartTime","type":"uint256"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_splitter","type":"address"}],"name":"setSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"name":"setTokenRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"splitter","outputs":[{"internalType":"contract ISplitter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"splitterMint","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":"tier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenRoyaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenRoyaltyRecipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"payable","type":"function"},{"inputs":[],"name":"withdrawA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRemaining","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010006d1ad45d35d471ba8995770576536c75cb11ac65dad631c90e9779582ed000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc53c4d81fb3fe30bc6c6f468cd3d30139279b52000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072b5d02a57c1c5923cbd310a2321d925b4f3e88f000000000000000000000000111823389d1116e85e2759dbfaef915376947de300000000000000000000000072b5d02a57c1c5923cbd310a2321d925b4f3e88f00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000084875653136626974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000548554531360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51636643584556587938326d6a4e784769637a47486e6367646d61415a4c444c5256697278416d7a785671782f0000000000000000000000000000000000000000000000000000000000000000000000000000000000046e756c6c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020014000000000002000000000301001900000060033002700000062b04300197000300000041035500020000000103550000062b0030019d000100000000001f00000001012001900000000c0000c13d18a603a10000040f0000008001000039000000400010043f0000000001000416000000000110004c000000840000c13d0000000001000031001400000001001d18a611f10000040f00000014080000290000001f0280018f000000020300036700000000070100190000000501800272000000230000613d000000000400001900000005054002100000000006570019000000000553034f000000000505043b00000000005604350000000104400039000000000514004b0000001b0000413d000000000420004c000000320000613d0000000501100210000000000313034f00000000011700190000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f00000000002104350000062c01000041000001c00280008c000000000200001900000000020140190000062c03800197000000000430004c000000000100a0190000062c0330009c000000000102c019000000000110004c000000840000c13d00000000010704330000062d0210009c000000840000213d00000000028700190000000001710019001300000002001d001400000007001d18a612060000040f0000001403000029001200000001001d000000200130003900000000010104330000062d0210009c000000840000213d0000000001310019000000130200002918a612060000040f0000001403000029001100000001001d000000400130003900000000010104330000062d0210009c000000840000213d0000000001310019000000130200002918a612060000040f0000001403000029000000a0023000390000000002020433000d00000002001d00000080023000390000000002020433000f00000002001d00000060023000390000000002020433000e00000002001d001000000001001d000000c00130003900000000010104330000062d0210009c000000840000213d0000000001310019000000130200002918a612060000040f00000014070000290000000009010019000000e0017000390000000003010433000000000130004c0000000001000019000000010100c039000000000113004b000000840000c13d000001000170003900000000050104330000062e0150009c000000840000213d00000120017000390000000002010433000001400170003900000000040104330000062e0140009c000000840000213d000001600170003900000000060104330000062e0160009c000000840000213d000001800170003900000000080104330000062e0180009c000000870000a13d0000000001000019000000000200001918a603980000040f000001a0017000390000000007010433000000400a00043d0000062f01a0009c000001020000813d0000004001a00039000000400010043f000000040100003900000000001a0435000000200ba00039000006300100004100130000000b001d00000000001b043500000012010000290000000001010433001400000001001d0000062d0110009c000001020000213d000b0000000a001d000a00000009001d000300000008001d000400000007001d000500000006001d000600000005001d000700000004001d000800000003001d000900000002001d000000000100041a000000010210019000000001011002700000007f0310018f0000000001036019000c00000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000001170000c13d0000000c01000029000000200110008c000000c50000413d00000000000004350000002002000039000000000100001918a603650000040f00000014030000290000001f023000390000000502200270000000200330008c000000000302001900000000030040190000000c020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000c50000813d000000000001041b0000000101100039000000c00000013d00000014020000290000001f0120008c0000000301200210000c00000001001d000000de0000a13d00000000000004350000002002000039000200000002001d000000000100001918a603650000040f0000000206000029000000200200008a0000001403000029000000000223016f00000000030000190000001205000029000000000423004b0000000004560019000000ed0000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000000d50000013d0000001401000029000000000110004c0000000002000019000000e50000613d00000012010000290000002001100039000000000201043300000014010000290000000101100210000000010300008a0000000c04000029000000000443022f000000000334013f000000000232016f000000fb0000013d0000001403000029000000000232004b000000f80000813d0000000c02000029000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000014020000290000000102200210000000000112019f000000000010041b00000011010000290000000001010433001400000001001d0000062d0110009c000001090000a13d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000101000039000c00000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019001200000002001d0000001f0220008c00000000020000190000000102002039000000000121013f00000001011001900000011e0000613d000006380100004100000000001004350000002201000039000000040010043f0000002402000039000000000100001918a603980000040f0000001201000029000000200110008c000001360000413d000000010100003900000000001004350000002002000039000000000100001918a603650000040f00000014030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000012020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000001360000813d000000000001041b0000000101100039000001310000013d00000014020000290000001f0120008c0000000301200210000200000001001d000001510000a13d0000000101000039001200000001001d00000000001004350000002002000039000100000002001d000000000100001918a603650000040f0000000106000029000000200200008a0000001403000029000000000223016f00000000030000190000001105000029000000000423004b0000000004560019000001610000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000001480000013d0000001401000029000000000110004c0000000001000019000001580000613d00000011010000290000002001100039000000000101043300000014020000290000000102200210001200000002001d000000010200008a0000000203000029000000000332022f000000000223013f000000000121016f0000016e0000013d0000001403000029000000000232004b0000016c0000813d0000000202000029000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000140100002900000001011002100000001202000029000000000121019f0000000c02000029000000000012041b0000000a01000039000000000201041a00000631032001970000000006000411000000000363019f000000000031041b0000062b01000041000000400300043d00000000040004140000062b0540009c00000000040180190000062b0530009c00000000010340190000004001100210000000c003400210000000000113019f0000062e0520019700000632011001c70000800d020000390000000303000039000006330400004118a6189c0000040f0000000101200190000000840000613d000000010200008a0000001001000039001200000002001d000000000021041b18a6123f0000040f0000000d010000390000000e02000029000000000021041b18a6123f0000040f0000000e010000390000000f02000029000000000021041b18a6123f0000040f00000010010000290000000001010433001400000001001d0000062d0110009c000001020000213d0000001301000039001100000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000f00000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000001170000c13d0000000f01000029000000200110008c000001c20000413d000000110100002900000000001004350000002002000039000000000100001918a603650000040f00000014030000290000001f023000390000000502200270000000200330008c000000000302001900000000030040190000000f020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000001c20000813d000000000001041b0000000101100039000001bd0000013d00000014020000290000001f0120008c0000000301200210000f00000001001d000001dc0000a13d000000110100002900000000001004350000002002000039000e00000002001d000000000100001918a603650000040f0000000e06000029000000200200008a0000001403000029000000000223016f00000000030000190000001005000029000000000423004b0000000004560019000001eb0000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000001d30000013d0000001401000029000000000110004c0000000002000019000001e30000613d0000001001000029000000200110003900000000020104330000001401000029000000010110021000000012040000290000000f03000029000000000334022f000000000343013f000000000232016f000001f90000013d0000001403000029000000000232004b000001f60000813d0000000f02000029000000f80220018f0000001203000029000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000014020000290000000102200210000000000112019f0000001102000029000000000012041b18a6123f0000040f0000000b010000290000000001010433001400000001001d0000062d0110009c000001020000213d0000000b01000039001100000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019001000000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000001170000c13d0000001001000029000000200110008c000002280000413d000000110100002900000000001004350000002002000039000000000100001918a603650000040f00000014030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000010020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002280000813d000000000001041b0000000101100039000002230000013d00000014010000290000001f0110008c000002400000a13d000000110100002900000000001004350000002002000039001300000002001d000000000100001918a603650000040f0000001306000029000000200200008a0000001403000029000000000223016f00000000030000190000000b05000029000000000423004b00000000045600190000024e0000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000002370000013d0000001401000029000000000110004c0000000001000019000002460000613d00000013010000290000000001010433000000140400002900000003024002100000001203000029000000000223022f000000000232013f000000000221016f00000001014002100000025d0000013d0000001403000029000000000232004b0000025a0000813d00000014020000290000000302200210000000f80220018f0000001203000029000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000014020000290000000102200210000000000112019f0000001102000029000000000012041b18a6123f0000040f0000000a010000290000000001010433001400000001001d0000062d0110009c000001020000213d0000000c01000039001300000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019001100000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000001170000c13d0000001101000029000000200110008c0000028c0000413d000000130100002900000000001004350000002002000039000000000100001918a603650000040f00000014030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000011020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b0000028c0000813d000000000001041b0000000101100039000002870000013d00000014010000290000001f0110008c000002a40000a13d000000130100002900000000001004350000002002000039001100000002001d000000000100001918a603650000040f0000001106000029000000200200008a0000001403000029000000000223016f00000000030000190000000a05000029000000000423004b0000000004560019000002b40000813d0000000004040433000000000041041b0000002003300039000000200660003900000001011000390000029b0000013d0000001401000029000000000110004c0000000001000019000002ab0000613d0000000a0100002900000020011000390000000001010433000000140400002900000003024002100000001203000029000000000223022f000000000232013f000000000121016f0000000102400210000c00000002001d000002c20000013d0000001403000029000000000232004b000002c00000813d00000014020000290000000302200210000000f80220018f0000001203000029000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000140100002900000001011002100000000c02000029000000000121019f0000001302000029000000000012041b0000000f010000390000000d02000029000000000021041b0000001101000039000000000201041a0000001203000039000000000003041b00000003030000290000062e033001970000001404000039000000000504041a0000063105500197000000000335019f000000000034041b00000015030000390000000404000029000000000043041b0000000503000029000000080330021000000634033001970000000804000029000000000343019f0000063502200197000000000223019f000000000021041b00000019010000390000001202000029000000000021041b00000006010000290000062e011001970000001d02000039000000000302041a0000063103300197000000000113019f0000001f03000039000000000403041a000000000012041b0000001e010000390000000902000029000000000021041b00000007010000290000062e011001970000063602400197000000000112019f000000000013041b00000020010000390000010000100443000001200000044300000100010000390000004002000039000006370300004118a6038e0000040f0002000000000002000200000006001d000100000005001d0000062b050000410000062b0630009c000000000305801900000040033002100000062b0640009c00000000040580190000006004400210000000000334019f0000062b0410009c0000000001058019000000c001100210000000000113019f18a6189c0000040f0000000109000029000000000301001900000060033002700000062b033001970000000205000029000000000453004b00000000050340190000001f0450018f00000005055002720000031d0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000003150000413d000000010220018f000000000640004c0000032d0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0002000000000002000200000005001d000100000004001d0000062b040000410000062b0530009c00000000030480190000062b0510009c0000000001048019000000c0011002100000004003300210000000000113019f00000639011001c718a618a10000040f0000000109000029000000000301001900000060033002700000062b033001970000000205000029000000000453004b00000000050340190000001f0450018f0000000505500272000003510000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000003490000413d000000010220018f000000000640004c000003610000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0000062b030000410000062b0410009c000000000103801900000040011002100000062b0420009c00000000020380190000006002200210000000000112019f00000000020004140000062b0420009c0000000002038019000000c002200210000000000112019f00000632011001c7000080100200003918a618a10000040f0000000102200190000003790000613d000000000101043b000000000001042d0000000001000019000000000200001918a603980000040f00000000030100190000062b0100004100000000040004140000062b0540009c0000000001044019000000c001100210000000600220021000000000011200190000063a01100041000000000203001918a618a10000040f00000001022001900000038b0000613d000000000101043b000000000001042d0000000001000019000000000200001918a603980000040f0000062b040000410000062b0510009c0000000001048019000000400110021000000000013100190000062b0320009c000000000204801900000060022002100000000001210019000018a70001042e0000062b030000410000062b0420009c00000000020380190000062b0410009c000000000103801900000040011002100000006002200210000000000112019f000018a800010430000a0000000000020000008001000039000000400010043f0000000002000031000000040120008c00000d730000413d000a00000000001d0000000201000367000000000301043b000000e0033002700000063b0430009c0000044e0000613d0000063c0430009c000004660000613d0000063d0430009c0000048d0000613d0000063e0430009c000004be0000613d0000063f0430009c000004d90000613d000006400430009c000005090000613d000006410430009c0000052d0000613d000006420430009c0000054d0000613d000006430430009c000005650000613d000006440430009c0000057d0000613d000006450430009c000005950000613d000006460430009c000005a90000613d000006470430009c000005c40000613d000006480430009c000006060000613d000006490430009c000006390000613d0000064a0430009c000006590000613d0000064b0430009c000006740000613d0000064c0430009c000006850000613d0000064d0430009c0000069e0000613d0000064e0430009c000006bd0000613d0000064f0430009c000006ee0000613d000006500430009c000007090000613d000006510430009c0000072d0000613d000006520430009c000007460000613d000006530430009c000007610000613d000006540430009c000007840000613d000006550430009c0000079c0000613d000006560430009c000007bb0000613d000006570430009c000007df0000613d000006580430009c000008000000613d000006590430009c0000081b0000613d0000065a0430009c000008330000613d0000065b0430009c0000084e0000613d0000065c0430009c000008690000613d0000065d0430009c000008820000613d0000065e0430009c000008b00000613d0000065f0430009c000008e30000613d000006600430009c0000092e0000613d000006610430009c000009520000613d000006620430009c0000096b0000613d000006630430009c000009970000613d000006640430009c000009d30000613d000006650430009c000009f60000613d000006660430009c00000a2a0000613d000006670430009c00000a540000613d000006680430009c00000a840000613d000006690430009c00000a9d0000613d0000066a0430009c00000ab50000613d0000066b0430009c00000acd0000613d0000066c0430009c00000ae70000613d0000066d0430009c00000b310000613d0000066e0430009c00000b4c0000613d0000066f0430009c00000b6c0000613d000006700430009c00000b8b0000613d000006710430009c00000bb40000613d000006720430009c00000be70000613d000006730430009c00000bff0000613d000006740430009c00000c230000613d000006750430009c00000c3b0000613d000006760130009c00000c6a0000613d000006770130009c00000caf0000613d000006780130009c00000ce30000613d000006790130009c00000d110000613d0000067a0130009c00000d4a0000613d0000067b0130009c00000d5c0000613d0000067c0130009c00000d730000c13d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f0000062e0110019700000000001004350000001c01000039000000200010043f0000004002000039000000000100001918a603650000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001801000039000000000101041a000000800010043f00000080010000390000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b000006b602100197000000000221004b00000d730000c13d0000000102000039000006b70310009c000004870000613d000006b80310009c000004870000613d000006b90310009c000004870000613d000006ba0110009c00000000020000190000000102006039000000010220018f000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d000000400100043d000900000001001d000000000100041a000800000001001d18a6131d0000040f000000080300002900000009070000290000000000170435000000010230019000000dd80000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c000000200200003900000000020060190000002002200039000000000107001918a612a00000040f0000002001000039000000400200043d000800000002001d00000000001204350000002002200039000000090100002918a612530000040f000000080300002900000000023100490000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b18a6139b0000040f0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b000900000002001d0000062e0220009c00000d730000213d0000002401100370000000000101043b000800000001001d18a6138c0000040f0000062e011001970000000902000029000000000212004b00000faf0000c13d000000400100043d0000006402100039000006b30300004100000000003204350000004402100039000006b40300004100000000003204350000002402100039000000210300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000068b0100004100000000001004390000800b01000039000000040200003918a6037c0000040f0000001003000039000000000203041a000000000121004b00000de40000813d0000068b0100004100000000001004390000800b010000390000000402000039000900000003001d18a6037c0000040f0000000902000029000000000012041b00000fa40000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b00000000001004350000001701000039000000200010043f0000004002000039000000000100001918a603650000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001501000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001e01000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000801000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000000100003118a612780000040f000900000001001d000800000002001d0000000002030019000700000002001d000000000100041118a613e20000040f18a613b30000040f00000009010000290000000802000029000000070300002918a6141b0000040f000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000001902000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b00000000001004350000001701000039000000200010043f0000004002000039000000000100001918a603650000040f0000001502000039000000000101041a000000000110004c000005e60000613d0000004002000039000000000100001918a603650000040f0000000002010019000000000102041a000900000001001d0000001601000039000000200010043f0000004002000039000000000100001918a603650000040f0000001402000039000000000101041a0000062e01100198000005f50000613d0000004002000039000000000100001918a603650000040f0000000002010019000000000102041a000800000001001d00000024010000390000000201100367000000000101043b000000090200002918a616f00000040f000027101210011a000000400100043d0000002003100039000000000023043500000008020000290000062e0220019700000000002104350000004002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b000900000002001d0000062e0220009c00000d730000213d0000002401100370000000000101043b000800000001001d000000090100002918a613600000040f0000000802000029000000000112004b00000fd40000813d000000090100002900000000001004350000000601000039000000200010043f0000004002000039000900000002001d000000000100001918a603650000040f00000008020000290000000000200435000000200010043f0000000001000019000000090200002918a603650000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b00000000001004350000001a01000039000000200010043f0000004002000039000000000100001918a603650000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000001802000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f000000040120008a0000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000080010000390000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001d01000039000000000101041a0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000000100003118a612780000040f000800000001001d000700000002001d000900000003001d000000400100043d000600000001001d18a612940000040f000000060100002900000000000104350000000001000411000000090200002918a613e20000040f18a613b30000040f00000008010000290000000702000029000000090300002918a6141b0000040f000000080100002900000007020000290000000903000029000000060400002918a615ba0000040f18a613d40000040f000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001d01000039000000000101041a0000062e011001970000000002000411000000000112004b000000000100001900000001010060390000000402000039000800000002001d0000000202200367000000000202043b000900000002001d18a618690000040f000000090100002918a6138c0000040f0000062e0210019800000de70000c13d0000000801000039000000000101041a000700000001001d000000090100002900000000001004350000000901000039000000200010043f0000004002000039000000000100001918a603650000040f0000000702000029000000000021041b000000090100002918a6162f0000040f00000e370000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000000f02000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b0000000802000039000000000202041a000000000221004b00000e6f0000813d18a616200000040f0000000302200210000000000101041a000000000121022f000000ff0220008c00000000020100190000000002002019000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001401000039000000000101041a0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001101000039000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000000100003118a612f20000040f000900000001001d18a6134c0000040f00000009030000290000000002030433000006a70120009c00000d550000813d0000000b01000039000800000001001d000000000101041a000700000002001d18a6131d0000040f0000000706000029000000200210008c00000d760000413d0000001f026000390000000502200270000006a802200041000006a803000041000000200460008c0000000002034019000000080300002900000000003004350000001f011000390000000501100270000006a801100041000000000312004b00000d760000813d000000000002041b00000001022000390000077f0000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001201000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000001101000039000000000201041a000001000300008a000000000332016f000000ff0220019000000000020000190000000102006039000000000223019f000000000021041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f000900000001001d18a6134c0000040f00000009010000290000062e011001970000001402000039000000000302041a0000063103300197000000000113019f000000000012041b00000024010000390000000201100367000000000101043b0000001502000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b00000000001004350000001601000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b18a6138c0000040f0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001001000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000001002000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000000d02000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f18a613600000040f000000400300043d000000000013043500000020020000390000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000000a01000039000000000201041a0000063103200197000000000031041b000000400500043d0000062b0100004100000000030004140000062b0430009c00000000030180190000062b0450009c000900000005001d00000000010540190000004001100210000000c003300210000000000131019f0000062e0520019700000632011001c70000800d0200003900000003030000390000063304000041000000000600001918a6189c0000040f000000010120019000000d730000613d00000009010000290000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000c01000039000700000001001d000000000101041a000800000001001d000000400200043d000900000002001d18a6131d0000040f000000080300002900000009070000290000000000170435000000010230019000000e800000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c000000200200003900000000020060190000002002200039000000000107001918a612a00000040f0000002001000039000000400200043d000800000002001d00000000001204350000002002200039000000090100002918a612530000040f000000080300002900000000023100490000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000001f02000039000000000302041a000006820130019800000e8d0000c13d00000683010000410000000000100439000000000100041000000004001004430000800a01000039000900000002001d0000002402000039000800000003001d18a6037c0000040f000006a30110009c0000000001000019000000010100203918a6187a0000040f0000000801000029000006a401100197000006a5011001c70000000902000029000000000012041b00000001030000390000001101000039000000000201041a000000000100041400000008022002700000062e04200197000000040240008c000009260000613d0000062b02000041000000400300043d0000062b0530009c00000000030280190000062b0510009c0000000001028019000000c0011002100000004002300210000000000112019f00000632011001c70000800902000039000006a603000041000000000500001918a6189c0000040f000000000301001900000060033002700001062b0030019d0003000000010355000000010320018f000900000003001d18a6151e0000040f000000090100002918a6188b0000040f000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000068b0100004100000000001004390000800b01000039000000040200003918a6037c0000040f0000001903000039000000000203041a000000000121004b00000e9b0000813d0000068b0100004100000000001004390000800b010000390000000402000039000900000003001d18a6037c0000040f0000000902000029000000000012041b00000fa40000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000a01000039000000000101041a0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f000800000001001d0000001d01000039000000000101041a0000062e011001970000000002000411000000000112004b0000000001000019000000010100603900000024020000390000000202200367000000000202043b000900000002001d18a618690000040f000000090100002918a615130000040f000000000110004c0000000001000019000000010100603918a616ff0000040f0000000801000029000000090200002918a617100000040f000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b000900000001001d18a6134c0000040f000000090100002900000000001004350000001a01000039000800000001001d000000200010043f0000004002000039000000000100001918a603650000040f00000008050000290000000904000029000000000101041a000000000110004c000009c60000c13d0000001b02000039000000000102041a0000062d0310009c00000d550000213d0000000103100039000000000032041b000000000302041a000000000313004b00000fa80000a13d0000000000200435000006a101100041000000000041041b0000000000400435000000200050043f0000004002000039000000000100001918a603650000040f00000024020000390000000202200367000000000202043b000000000021041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000000100003118a612f20000040f000900000001001d18a6134c0000040f000000090300002900000000020304330000062d0120009c00000d550000213d0000001301000039000800000001001d000000000101041a000700000002001d18a6131d0000040f0000000706000029000000200210008c00000d890000413d0000001f02600039000000050220027000000689022000410000068903000041000000200460008c0000000002034019000000080300002900000000003004350000001f0110003900000005011002700000068901100041000000000312004b00000d890000813d000000000002041b0000000102200039000009f10000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000101000039000700000001001d000000000101041a000800000001001d000000400200043d000900000002001d18a6131d0000040f000000080300002900000009070000290000000000170435000000010230019000000e9e0000c13d000001000200008a000000000223016f00000020057000390000000000250435000000000110004c0000002002000039000000000200601900000000012500190000000002710049000000000107001918a612a00000040f0000002001000039000000400200043d000800000002001d00000000001204350000002002200039000000090100002918a612530000040f000000080300002900000000023100490000000001030019000000000300001918a6038e0000040f000000040220008a0000062c03000041000000200420008c000000000400001900000000040340190000062c02200197000000000520004c000000000300a0190000062c0220009c00000000020400190000000002036019000000000220004c00000d730000c13d0000000802000039000000000202041a000400000002001d0000000401100370000000000101043b000500000001001d0000068b0100004100000000001004390000800b01000039000000040200003918a6037c0000040f0000001002000039000000000202041a000000000121004b00000d9c0000813d000000400100043d00000044021000390000069f0300004100000000003204350000002402100039000000160300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b00000000030200190000062e0220009c00000d730000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000900000002001d000000000112004b00000d730000c13d0000000004000411000000000134004b0000106d0000c13d000000400100043d0000004402100039000006990300004100000000003204350000002402100039000000190300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001f01000039000000000101041a0000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001901000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000e01000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001101000039000000000101041a00000008011002700000062e02100197000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d0000000003000031000000040130008a0000062c02000041000000800410008c000000000400001900000000040240190000062c01100197000000000510004c000000000200a0190000062c0110009c00000000010400190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b000900000002001d0000062e0220009c00000d730000213d0000002402100370000000000202043b000800000002001d0000062e0220009c00000d730000213d0000006402100370000000000402043b0000062d0240009c00000d730000213d00000023024000390000062c05000041000000000632004b000000000600001900000000060580190000062c073001970000062c02200197000000000872004b0000000005008019000000000272013f0000062c0220009c00000000020600190000000002056019000000000220004c00000d730000c13d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000700000001001d000000240140003918a612b40000040f000600000001001d0000000001000411000000070200002918a613e20000040f18a613b30000040f00000009010000290000000802000029000000070300002918a6141b0000040f000000090100002900000008020000290000000703000029000000060400002918a615ba0000040f18a613d40000040f000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f00000004010000390000000201100367000000000101043b0000000e02000039000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b18a617920000040f0000002002000039000000400300043d000900000003001d0000000000230435000000200230003918a612530000040f000000090300002900000000023100490000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f000900000001001d18a6134c0000040f00000009010000290000062e011001970000001d02000039000000000302041a0000063103300197000000000113019f000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d0000000002000031000000040120008a0000062c03000041000000400410008c000000000400001900000000040340190000062c01100197000000000510004c000000000300a0190000062c0110009c00000000010400190000000001036019000000000110004c00000d730000c13d00000002010003670000000403100370000000000303043b000900000003001d0000062e0330009c00000d730000213d0000002401100370000000000101043b0000062d0310009c00000d730000213d000000040110003918a6132f0000040f0000000003010019000000000402001900000009010000290000000002030019000000000304001918a6164a0000040f000000400300043d000000000013043500000020020000390000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000600310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b000900000002001d0000002401100370000000000101043b000800000001001d0000062e0110009c00000d730000213d18a6134c0000040f000000090100002900000000001004350000000201000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a0000062e0110019800000fe50000c13d000000400100043d0000004402100039000006960300004100000000003204350000002402100039000000140300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000f01000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000001f03000039000000000203041a000006820120019800000eac0000c13d000000400100043d0000004402100039000006950300004100000000003204350000002402100039000000190300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000000d01000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f000000040320008a0000062c04000041000000400530008c000000000500001900000000050440190000062c03300197000000000630004c000000000400a0190000062c0330009c00000000030500190000000003046019000000000330004c00000d730000c13d0000000403100370000000000403043b0000002401100370000000000101043b0000062d0310009c00000d730000213d000500000004001d000000040110003918a6132f0000040f0000068b030000410000000000300439000800000001001d000700000002001d0000800b01000039000000040200003918a6037c0000040f0000001902000039000000000202041a000000000121004b00000ee00000813d000000400100043d00000044021000390000068f0300004100000000003204350000002402100039000000120300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000002010003670000000402100370000000000202043b000900000002001d0000062e0220009c00000d730000213d0000002401100370000000000101043b000500000001001d18a6134c0000040f00000001030000390000000a01000029000300000001001d0000000801000039000000000101041a000400000001001d000000010100008a000200000001001d0000000501000029000000000113004b000010970000213d00000004010000290000000002310019000000000112004b0000000001000019000000010100403900000001011001900000117c0000c13d000000400400043d0000068a0140009c00000d550000213d0000002001400039000000400010043f000000030100002900000000001404350000000901000029000800000003001d000600000002001d000700000004001d18a617100000040f00000009010000290000000602000029000000070300002918a615570000040f18a613d40000040f000000080300002900000001013000390000000202000029000000000223004b000000000301001900000c8d0000c13d0000117c0000013d0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d0000001301000039000700000001001d000000000101041a000800000001001d000000400200043d000900000002001d18a6131d0000040f000000080300002900000009070000290000000000170435000000010230019000000efb0000c13d000001000200008a000000000223016f00000020057000390000000000250435000000000110004c0000002002000039000000000200601900000000012500190000000002710049000000000107001918a612a00000040f0000002001000039000000400200043d000800000002001d00000000001204350000002002200039000000090100002918a612530000040f000000080300002900000000023100490000000001030019000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000400310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a612660000040f000900000001001d18a6126f0000040f00000009020000290000062e0220019700000000002004350000000502000039000000200020043f000800000001001d0000004002000039000900000002001d000000000100001918a603650000040f00000008020000290000062e022001970000000000200435000000200010043f0000000001000019000000090200002918a603650000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001918a6038e0000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000000310004c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d18a6134c0000040f0000001f03000039000000000203041a0000068101200197000006820220019800000f090000613d000000000110004c00000f090000613d000900000003001d00000683010000410000000000100439000000000100041000000004001004430000800a01000039000000240200003918a6037c0000040f000006840210009c0000117c0000213d0000000105000039000700000001001d000000141210011a000600000002001d0000001101000039000000000201041a0000000001000414000000400300043d00000008022002700000062e04200197000000040240008c000010ca0000613d0000000702000029000000140220008c000010b80000813d000000000204001900000000040000190000000005000019000000000600001918a602fa0000040f0000000005010019000010ca0000013d0000000001000416000000000110004c00000d730000c13d000000000100003118a612f20000040f000900000001001d18a6134c0000040f000000090300002900000000020304330000062d0120009c00000dad0000a13d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000001000416000000000110004c00000d730000c13d000000040100008a00000000011000310000062c02000041000000200310008c000000000300001900000000030240190000062c01100197000000000410004c000000000200a0190000062c0110009c00000000010300190000000001026019000000000110004c00000d730000c13d00000004010000390000000201100367000000000101043b000900000001001d0000062e0110009c00000f1a0000a13d0000000001000019000000000200001918a603980000040f0000001f0160008c00000f2f0000a13d00000008010000290000000000100435000000200100008a000000000216016f000006a801000041000000200300003900000000040000190000000907000029000000000524004b000000000573001900000f3f0000813d0000000005050433000000000051041b00000020044000390000002003300039000000010110003900000d800000013d0000001f0160008c00000f4e0000a13d00000008010000290000000000100435000000200100008a000000000216016f0000068901000041000000200300003900000000040000190000000907000029000000000524004b000000000573001900000f5e0000813d0000000005050433000000000051041b00000020044000390000002003300039000000010110003900000d930000013d0000000505000029000000000150004c00000f6d0000c13d000000400100043d00000044021000390000069e03000041000000000032043500000024021000390000001c0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000c01000039000800000001001d000000000101041a000700000002001d18a6131d0000040f0000000706000029000000200210008c00000dc50000413d0000001f02600039000000050220027000000680022000410000068003000041000000200460008c0000000002034019000000080300002900000000003004350000001f0110003900000005011002700000068001100041000000000312004b00000dc50000813d000000000002041b000000010220003900000dc00000013d0000001f0160008c00000f860000a13d00000008010000290000000000100435000000200100008a000000000216016f0000068001000041000000200300003900000000040000190000000907000029000000000524004b000000000573001900000f960000813d0000000005050433000000000051041b00000020044000390000002003300039000000010110003900000dcf0000013d000006b503000041000000200470003900000000000004350000000002000019000000000512004b000004af0000813d0000000005240019000000000603041a00000000006504350000002002200039000000010330003900000ddc0000013d000000010100008a000000000013041b00000fa40000013d000700000002001d18a613600000040f000000000210004c00000009020000290000117c0000613d000000010110008a000600000001001d00000000002004350000000701000039000400000001001d000000200010043f0000004002000039000000000100001918a603650000040f000000000301041a0000000601000029000000000113004b00000e220000613d000000070100002900000000001004350000000601000039000200000001001d000000200010043f0000004002000039000500000002001d0000000001000019000300000003001d18a603650000040f00000006020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f000000000101041a000100000001001d000000070100002900000000001004350000000201000029000000200010043f0000000001000019000000050200002918a603650000040f00000003020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f0000000102000029000000000021041b00000000002004350000000401000029000000200010043f0000000001000019000000050200002918a603650000040f0000000302000029000000000021041b000000090100002900000000001004350000004002000039000500000002001d000000000100001918a603650000040f000000000001041b000000070100002900000000001004350000000601000039000000200010043f0000000001000019000000050200002918a603650000040f00000006020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f000000000001041b0000000803000039000000000403041a000000000140004c00000009010000290000117c0000613d00000000001004350000000901000039000500000001001d000000200010043f00000040020000390000000001000019000700000003001d000600000004001d18a603650000040f00000006040000290000000703000029000000000501041a000000010140008a000000000203041a000000000112004b00000fa80000a13d0000000000300435000000000103041a000000000151004b00000fa80000a13d000006ab01400041000000000101041a000006ac02500041000000000012041b00000000001004350000000501000029000000200010043f0000004002000039000600000002001d0000000001000019000500000005001d18a603650000040f0000000502000029000000000021041b000000090100002900000000001004350000000001000019000000060200002918a603650000040f0000000703000029000000000001041b000000000103041a000000000210004c000010f10000c13d000006380100004100000000001004350000003101000039000000040010043f0000002402000039000000000100001918a603980000040f000000400100043d0000006402100039000006a90300004100000000003204350000004402100039000006aa03000041000000000032043500000024021000390000002c0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f0000000a020000290000000703000029000000000032043500000680030000410000002004700039000000000512004b000008d40000813d0000000005240019000000000603041a00000000006504350000002002200039000000010330003900000e850000013d000000400100043d0000004402100039000006a20300004100000000003204350000002402100039000000160300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000000010100008a000000000013041b00000fa40000013d0000000a0300002900000007020000290000000000230435000006a00400004100000020020000390000000005370019000000000613004b00000a1a0000813d0000002005500039000000000604041a00000000006504350000002003300039000000010440003900000ea30000013d000006810120019800000fff0000c13d00000683010000410000000000100439000000000100041000000004001004430000800a01000039000900000002001d0000002402000039000800000003001d18a6037c0000040f000006910110009c0000000001000019000000010100203918a6187a0000040f0000000902000029000006920120019700000693011001c70000000803000029000000000013041b000000010300003900000000010004140000062e04200197000000040240008c00000ed80000613d0000062b02000041000000400300043d0000062b0530009c00000000030280190000062b0510009c0000000001028019000000c0011002100000004002300210000000000112019f00000632011001c700008009020000390000069403000041000000000500001918a6189c0000040f000000000301001900000060033002700001062b0030019d0003000000010355000000010320018f000900000003001d18a6151e0000040f000000090100002918a6188b0000040f000000400100043d0000000002000019000000000300001918a6038e0000040f00000000010004160000001802000039000000000202041a0000000505000029000000000350004c00000eea0000613d000000010300008a00000000435300d9000000000323004b0000117c0000413d00000000325200a9000000000121004b000010290000813d000000400100043d00000044021000390000068e03000041000000000032043500000024021000390000001b0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000a0300002900000007020000290000000000230435000006890400004100000020020000390000000005370019000000000613004b00000cd30000813d0000002005500039000000000604041a00000000006504350000002003300039000000010440003900000f000000013d000000400100043d0000006402100039000006870300004100000000003204350000004402100039000006880300004100000000003204350000002402100039000000210300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f18a6134c0000040f0000000906000029000000000160004c0000100d0000c13d000000400100043d00000064021000390000067d03000041000000000032043500000044021000390000067e0300004100000000003204350000002402100039000000260300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f000000000160004c0000000001000019000000090200002900000f350000613d000000200120003900000000010104330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f0000000802000029000000000012041b00000fa40000013d000000000262004b00000f490000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b000000010160021000000001011001bf0000000802000029000000000012041b00000fa40000013d000000000160004c0000000001000019000000090200002900000f540000613d000000200120003900000000010104330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f0000000802000029000000000012041b00000fa40000013d000000000262004b00000f680000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b000000010160021000000001011001bf0000000802000029000000000012041b00000fa40000013d00000004020000290000000001520019000000000221004b0000000002000019000000010200403900000001022001900000117c0000c13d0000000d02000039000000000202041a000000000121004b0000109b0000a13d000000400100043d00000044021000390000069d0300004100000000003204350000002402100039000000120300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000000000160004c0000000001000019000000090200002900000f8c0000613d000000200120003900000000010104330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f0000000802000029000000000012041b00000fa40000013d000000000262004b00000fa00000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b000000010160021000000001011001bf0000000802000029000000000012041b000000400100043d0000000002000019000000000300001918a6038e0000040f000006380100004100000000001004350000003201000039000000040010043f0000002402000039000000000100001918a603980000040f0000000003000411000000000213004b000010440000613d00000000001004350000000501000039000000200010043f0000004002000039000700000002001d0000000001000019000600000003001d18a603650000040f00000006020000290000000000200435000000200010043f0000000001000019000000070200002918a603650000040f000000000101041a000000ff01100190000010440000c13d000000400100043d0000006402100039000006b00300004100000000003204350000004402100039000006b103000041000000000032043500000024021000390000003d0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f000000400100043d0000006402100039000006ae0300004100000000003204350000004402100039000006af03000041000000000032043500000024021000390000002b0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f000000090100002900000000001004350000001601000039000000200010043f0000004002000039000900000002001d000000000100001918a603650000040f000000000201041a00000631022001970000000803000029000000000223019f000000000021041b0000001701000039000000200010043f0000000001000019000000090200002918a603650000040f00000044020000390000000202200367000000000202043b000000000021041b000000400100043d0000000002000019000000000300001918a6038e0000040f000000400100043d0000004402100039000006900300004100000000003204350000002402100039000000160300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000a01000039000000000201041a0000063103200197000000000336019f000000000031041b000000400500043d0000062b0100004100000000030004140000062b0430009c00000000030180190000062b0450009c000800000005001d00000000010540190000004001100210000000c003300210000000000113019f0000062e0520019700000632011001c70000800d020000390000000303000039000006330400004118a6189c0000040f000000010120019000000d730000613d00000008010000290000000002000019000000000300001918a6038e0000040f0000000801000039000000000101041a000400000001001d0000000001150019000000000251004b0000000002000019000000010200403900000001022001900000117c0000c13d0000000d02000039000600000002001d000000000202041a000000000121004b000011330000a13d000000400100043d00000044021000390000068d0300004100000000003204350000067f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003918a603980000040f000000080100002900000000001004350000000401000039000700000001001d000000200010043f0000004002000039000000000100001918a603650000040f000000000201041a00000631022001970000000903000029000000000232019f000000000021041b000000080100002918a6138c0000040f0000062b02000041000000400500043d00000000030004140000062b0430009c00000000030280190000062b0450009c000600000005001d00000000020540190000004002200210000000c003300210000000000232019f00000632032001c70000062e051001970000800d02000039000006b204000041000000000103001900000007030000290000000906000029000000080700002918a6189c0000040f000000010120019000000d730000613d00000006010000290000000002000019000000000300001918a6038e0000040f00000000004004350000000501000039000000200010043f0000004002000039000600000002001d0000000001000019000800000003001d000700000004001d18a603650000040f00000008020000290000000000200435000000200010043f0000000001000019000000060200002918a603650000040f000001000200008a000000000301041a000000000223016f0000000904000029000000ff0340018f000000000223019f000000000021041b000000400100043d00000000004104350000062b0200004100000000030004140000062b0430009c00000000030280190000062b0410009c00000000010280190000004001100210000000c002300210000000000112019f00000697011001c70000800d02000039000000030300003900000698040000410000000705000029000000080600002918a6189c0000040f000000010120019000000d730000613d0000000a02000029000000400100043d000000000300001918a6038e0000040f00000000010004160000000e02000039000000000202041a000000000320004c000010a40000613d000000010300008a00000000432300d9000000000353004b0000117c0000413d00000000322500a9000000000121004b000011720000813d000000400100043d00000064021000390000069b03000041000000000032043500000044021000390000069c0300004100000000003204350000002402100039000000230300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f0000062b020000410000062b0530009c00000000030280190000062b0510009c0000000001028019000000c0011002100000004002300210000000000112019f00000632011001c700008009020000390000000603000029000000000500001918a6189c0000040f000000000301001900000060033002700001062b0030019d0003000000010355000000010520018f000800000005001d18a6151e0000040f0000000801000029000000000110004c000010dd0000c13d000000400100043d0000004402100039000006860300004100000000003204350000002402100039000000140300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000101000039000800000001001d0000000901000029000000000201041a0000000001000414000000400300043d0000062e04200197000000040240008c000011970000613d00000007050000290000000606000029000000000265004b000011830000c13d000000000204001900000000040000190000000005000019000000000600001918a602fa0000040f000800000001001d000011970000013d0000000000300435000006ab02100041000000000002041b000000010110008a000000000013041b000000090100002918a6138c0000040f000000090200002900000000002004350000000802000029000000200020043f000600000001001d0000004002000039000700000002001d000000000100001918a603650000040f000000000201041a0000063102200197000000000021041b00000006010000290000062e01100197000600000001001d00000000001004350000000301000039000000200010043f0000000001000019000000070200002918a603650000040f000000000201041a000000010220008a000000000021041b000000090100002900000000001004350000000201000039000000200010043f0000000001000019000000070200002918a603650000040f000000000201041a0000063102200197000000000021041b0000062b01000041000000400400043d00000000020004140000062b0320009c00000000020180190000062b0340009c000700000004001d00000000010440190000004001100210000000c002200210000000000112019f00000632011001c70000800d02000039000006ad04000041000000080300002900000006050000290000000006000019000000090700002918a6189c0000040f000000010120019000000d730000613d00000007010000290000000002000019000000000300001918a6038e0000040f0000000001000411000900000001001d0000000802000029000000070300002918a6164a0000040f000000000210004c000011a90000613d0000000502000029000000000121004b000011a90000413d000000090100002900000000001004350000001c01000039000000200010043f0000004002000039000000000100001918a603650000040f000000000201041a00000005040000290000000002240019000000000342004b0000000003000019000000010300403900000001033001900000117c0000c13d000000000021041b00000001030000390000000a01000029000300000001001d000000000143004b000010970000213d00000004010000290000000002310019000000000112004b0000000001000019000000010100403900000001011001900000117c0000c13d000800000003001d000000400300043d0000068a0130009c00000d550000213d0000002001300039000000400010043f000000030100002900000000001304350000000901000029000600000002001d000700000003001d18a617100000040f00000009010000290000000602000029000000070300002918a615570000040f18a613d40000040f00000008030000290000000101300039000000010200008a000000000223004b00000000030100190000000504000029000011500000c13d0000117c0000013d0000000001000411000900000001001d18a613600000040f00000005030000290000000001130019000000000231004b000000000200001900000001020040390000000102200190000011b70000613d000006380100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001918a603980000040f00000000056500490000062b020000410000062b0630009c00000000030280190000062b0610009c0000000001028019000000c0011002100000004002300210000000000112019f00000632011001c700008009020000390000000003050019000000000500001918a6189c0000040f000000000301001900000060033002700001062b0030019d0003000000010355000000010120018f000800000001001d18a6151e0000040f0000000801000029000000000110004c00000fa40000c13d000000400100043d0000004402100039000006850300004100000000003204350000002402100039000000140300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000000400100043d00000044021000390000068c0300004100000000003204350000002402100039000000060300002900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000000f02000039000000000202041a000000000121004b000011c90000a13d000000400100043d00000044021000390000069a03000041000000000032043500000024021000390000001b0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f00000001030000390000000a01000029000300000001001d000000010100008a000200000001001d0000000501000029000000000113004b000010970000213d00000004010000290000000002310019000000000112004b0000000001000019000000010100403900000001011001900000117c0000c13d000800000003001d000000400300043d0000068a0130009c00000d550000213d0000002001300039000000400010043f000000030100002900000000001304350000000901000029000600000002001d000700000003001d18a617100000040f00000009010000290000000602000029000000070300002918a615570000040f18a613d40000040f000000080200002900000001012000390000000203000029000000000232004b00000000030100190000000501000029000011cf0000c13d0000117c0000013d0000001f01100039000000200200008a000000000221016f000000400100043d0000000002210019000000000312004b000000000300001900000001030040390000062d0420009c000011ff0000213d0000000103300190000011ff0000c13d000000400020043f000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f00030000000000020000001f051000390000062c07000041000000000325004b000000000300001900000000030740190000062c042001970000062c06500197000000000546004b00000000050000190000000005072019000000000446013f0000062c0440009c0000000003056019000000000330004c000012350000613d000300000002001d0000000003010433000006a70230009c000200000001001d000012380000813d0000003f01300039000000200200008a000000000121016f000100000003001d18a611f10000040f000000010600002900000000006104350000000205000029000000000265001900000020022000390000000303000029000000000232004b000012350000213d0000000002000019000000000362004b000012310000813d00000020022000390000000003120019000000000452001900000000040404330000000000430435000012290000013d000000000216001900000020022000390000000000020435000000000001042d0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000a01000039000000000101041a0000062e011001970000000002000411000000000121004b000012460000c13d000000000001042d000000400100043d0000004402100039000006bb0300004100000000003204350000067f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003918a603980000040f0000000003010433000000000032043500000020022000390000000004000019000000000534004b0000125f0000813d00000000052400190000002004400039000000000614001900000000060604330000000000650435000012570000013d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000004010000390000000201100367000000000101043b000006a50210009c0000126c0000813d000000000001042d0000000001000019000000000200001918a603980000040f00000024010000390000000201100367000000000101043b000006a50210009c000012750000813d000000000001042d0000000001000019000000000200001918a603980000040f000000040110008a0000062c020000410000005f0310008c000000000300001900000000030220190000062c01100197000000000410004c00000000020080190000062c0110009c00000000010300190000000001026019000000000110004c000012910000613d00000002030003670000000401300370000000000101043b0000062e0210009c000012910000213d0000002402300370000000000202043b0000062e0420009c000012910000213d0000004403300370000000000303043b000000000001042d0000000001000019000000000200001918a603980000040f000006bc0210009c000012990000813d0000002001100039000000400010043f000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000062d0310009c000012ad0000213d0000000102200190000012ad0000c13d000000400010043f000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000004010019000006a70120009c000012e80000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b000000000600001900000001060040390000062d0750009c000012e80000213d0000000106600190000012e80000c13d000000400050043f00000000002104350000000005420019000000000335004b000012ef0000213d0000001f0520018f000000020440036700000020031000390000000506200272000012d60000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000012ce0000413d000000000750004c000012e50000613d0000000506600210000000000464034f00000000066300190000000305500210000000000706043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f000000000046043500000000022300190000000000020435000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000001000019000000000200001918a603980000040f0000000003010019000000040130008a0000062c020000410000001f0410008c000000000400001900000000040220190000062c01100197000000000510004c00000000020080190000062c0110009c00000000010400190000000001026019000000000110004c0000131a0000613d00000002020003670000000401200370000000000101043b0000062d0410009c0000131a0000213d00000023041000390000062c05000041000000000634004b000000000600001900000000060580190000062c073001970000062c04400197000000000874004b0000000005008019000000000474013f0000062c0440009c00000000040600190000000004056019000000000440004c0000131a0000c13d0000000404100039000000000242034f000000000202043b000000240110003918a612b40000040f000000000001042d0000000001000019000000000200001918a603980000040f000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000013280000c13d000000000001042d000006380100004100000000001004350000002201000039000000040010043f0000002402000039000000000100001918a603980000040f0000001f031000390000062c04000041000000000523004b000000000500001900000000050440190000062c062001970000062c03300197000000000763004b000000000400a019000000000363013f0000062c0330009c00000000030500190000000003046019000000000330004c000013490000613d0000000203100367000000000303043b0000062d0430009c000013490000213d000000050430021000000020011000390000000004410019000000000224004b000013490000213d0000000002030019000000000001042d0000000001000019000000000200001918a603980000040f0000000a01000039000000000101041a0000062e011001970000000002000411000000000121004b000013530000c13d000000000001042d000000400100043d0000004402100039000006bb0300004100000000003204350000067f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003918a603980000040f0000062e011001980000136a0000613d00000000001004350000000301000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a000000000001042d000000400100043d0000006402100039000006bd0300004100000000003204350000004402100039000006be0300004100000000003204350000002402100039000000290300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f000000000110004c0000137e0000613d000000000001042d000000400100043d0000004402100039000006bf0300004100000000003204350000002402100039000000180300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000100000000000200000000001004350000000201000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a0000062e01100198000100000001001d0000000001000019000000010100c03918a6137b0000040f0000000101000029000000000001042d0002000000000002000200000001001d00000000001004350000000201000039000000200010043f0000004002000039000100000002001d000000000100001918a603650000040f000000000101041a0000062e011001980000000001000019000000010100c03918a6137b0000040f000000020100002900000000001004350000000401000039000000200010043f0000000001000019000000010200002918a603650000040f000000000101041a0000062e01100197000000000001042d000000000110004c000013b60000613d000000000001042d000000400100043d0000006402100039000006c00300004100000000003204350000004402100039000006c103000041000000000032043500000024021000390000002d0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f0000006002100039000006c20300004100000000003204350000004002100039000006c3030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000110004c000013d80000613d000000000001042d000000400200043d000100000002001d0000067f010000410000000000120435000000040120003918a613c70000040f00000001030000290000000002310049000000000103001918a603980000040f0003000000000002000300000001001d000200000002001d000000000102001918a6138c0000040f000000010200003900000003030000290000062e033001970000062e01100197000300000003001d000000000313004b000014050000613d00000000001004350000000501000039000000200010043f0000004002000039000100000002001d000000000100001918a603650000040f00000003020000290000000000200435000000200010043f0000000001000019000000010200002918a603650000040f000000000101041a000000ff02100190000014050000c13d000000020100002918a6139b0000040f0000062e011001970000000302000029000000000121004b000000000200001900000001020060390000000001020019000000000001042d000000000110004c0000140a0000613d000000000001042d000000400100043d0000006402100039000006c40300004100000000003204350000004402100039000006c50300004100000000003204350000002402100039000000250300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f000a000000000002000700000002001d000600000001001d000a00000003001d000000000103001918a6138c0000040f00000006020000290000062e022001970000062e01100197000900000002001d000000000121004b0000000001000019000000010100603918a614070000040f00000007010000290000062e04100198000014f80000613d0000000903000029000000000130004c000800000004001d000014850000613d000000000143004b000014950000613d000000060100002918a613600000040f000000000210004c0000150c0000613d000000010110008a000600000001001d0000000a0100002900000000001004350000000701000039000400000001001d000000200010043f0000004002000039000000000100001918a603650000040f000000000301041a0000000601000029000000000113004b0000146d0000613d000000090100002900000000001004350000000601000039000200000001001d000000200010043f0000004002000039000500000002001d0000000001000019000300000003001d18a603650000040f00000006020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f000000000101041a000100000001001d000000090100002900000000001004350000000201000029000000200010043f0000000001000019000000050200002918a603650000040f00000003020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f0000000102000029000000000021041b00000000002004350000000401000029000000200010043f0000000001000019000000050200002918a603650000040f0000000302000029000000000021041b0000000a0100002900000000001004350000004002000039000500000002001d000000000100001918a603650000040f000000000001041b000000090100002900000000001004350000000601000039000000200010043f0000000001000019000000050200002918a603650000040f00000006020000290000000000200435000000200010043f0000000001000019000000050200002918a603650000040f0000000903000029000000000001041b0000000804000029000014950000013d0000000801000039000000000101041a000600000001001d0000000a0100002900000000001004350000000901000039000000200010043f0000004002000039000000000100001918a603650000040f0000000602000029000000000021041b0000000a0100002918a6162f0000040f00000008040000290000000903000029000000000134004b000014b20000613d000000070100002918a613600000040f000000080200002900000000002004350000000602000039000000200020043f000700000001001d0000004002000039000600000002001d000000000100001918a603650000040f00000007020000290000000000200435000000200010043f0000000001000019000000060200002918a603650000040f0000000a02000029000000000021041b00000000002004350000000701000039000000200010043f0000000001000019000000060200002918a603650000040f0000000702000029000000000021041b0000000a0100002918a6138c0000040f0000062e011001970000000902000029000000000121004b0000000001000019000000010100603918a614070000040f0000000a0100002900000000001004350000000401000039000600000001001d000000200010043f0000004002000039000700000002001d000000000100001918a603650000040f000000000201041a0000063102200197000000000021041b000000090100002900000000001004350000000301000039000000200010043f0000000001000019000000070200002918a603650000040f000000000201041a000000010220008a000000000021041b000000080100002900000000001004350000000001000019000000070200002918a603650000040f000000000201041a0000000102200039000000000021041b0000000a0100002900000000001004350000000201000039000000200010043f0000000001000019000000070200002918a603650000040f000000000201041a00000631022001970000000806000029000000000262019f000000000021041b0000062b01000041000000400200043d00000000030004140000062b0430009c00000000030180190000062b0420009c00000000010240190000004001100210000000c002300210000000000112019f00000632011001c70000800d02000039000006ad04000041000000060300002900000009050000290000000a0700002918a6189c0000040f0000000101200190000015090000613d000000000001042d000000400100043d0000006402100039000006c60300004100000000003204350000004402100039000006c70300004100000000003204350000002402100039000000240300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000840200003918a603980000040f0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001918a603980000040f00000000001004350000000201000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a0000062e011001980000000001000019000000010100c039000000000001042d000000600100003900000001020000320000154f0000613d000006a70120009c000015500000813d0000003f01200039000000200300008a000000000331016f000000400100043d0000000003310019000000000413004b000000000400001900000001040040390000062d0530009c000015500000213d0000000104400190000015500000c13d000000400030043f00000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500272000015400000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000015380000413d000000000640004c0000154f0000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0004000000000002000300000003001d000200000002001d000006c8020000410000000000200439000400000001001d00000004001004430000800201000039000000240200003918a6037c0000040f0000000102000039000000000110004c0000159e0000613d000000400300043d000000640130003900000080020000390000000000210435000000440130003900000002020000290000000000210435000006c9010000410000000000130435000000040130003900000000020004110000000000210435000000240130003900000000000104350000000001000414000100000001001d000200000003001d0000008402300039000000030100002918a612530000040f00000004020000290000062e02200197000000040320008c000015840000613d0000000203000029000000000431004900000020060000390000000101000029000000000503001918a602fa0000040f000000000110004c000015aa0000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000002050000290000000002530019000000000332004b000000000300001900000001030040390000062d0420009c0000000004050019000015a30000213d0000000103300190000015a30000c13d000000400020043f0000001f0110008c000015a00000a13d0000000001040433000006b602100197000000000221004b000015a00000c13d000006c90110009c000000000200001900000001020060390000000001020019000000000001042d0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f18a6151e0000040f0000000002010433000000000320004c000015b80000c13d000000400200043d000400000002001d0000067f010000410000000000120435000000040120003918a613c70000040f00000004030000290000000002310049000000000103001918a603980000040f000000200110003918a603980000040f0004000000000002000300000004001d000200000003001d000100000001001d000006c8010000410000000000100439000400000002001d00000004002004430000800201000039000000240200003918a6037c0000040f0000000102000039000000000110004c000016040000613d000000400300043d00000064013000390000008002000039000000000021043500000044013000390000000202000029000000000021043500000001010000290000062e0110019700000024023000390000000000120435000006c90100004100000000001304350000000401300039000000000200041100000000002104350000000001000414000100000001001d000200000003001d0000008402300039000000030100002918a612530000040f00000004020000290000062e02200197000000040320008c000015ea0000613d0000000203000029000000000431004900000020060000390000000101000029000000000503001918a602fa0000040f000000000110004c000016100000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000002050000290000000002530019000000000332004b000000000300001900000001030040390000062d0420009c0000000004050019000016090000213d0000000103300190000016090000c13d000000400020043f0000001f0110008c000016060000a13d0000000001040433000006b602100197000000000221004b000016060000c13d000006c90110009c000000000200001900000001020060390000000001020019000000000001042d0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f18a6151e0000040f0000000002010433000000000320004c0000161e0000c13d000000400200043d000400000002001d0000067f010000410000000000120435000000040120003918a613c70000040f00000004030000290000000002310049000000000103001918a603980000040f000000200110003918a603980000040f0000000802000039000000000302041a000000000313004b000016280000a13d0000000000200435000006ac011000410000000002000019000000000001042d000006380100004100000000001004350000003201000039000000040010043f0000002402000039000000000100001918a603980000040f0000000803000039000000000203041a000006a70420009c0000163c0000813d0000000104200039000000000043041b000000000403041a000000000424004b000016430000a13d0000000000300435000006ac02200041000000000012041b000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f000006380100004100000000001004350000003201000039000000040010043f0000002402000039000000000100001918a603980000040f0011000000000002000e00000003001d0000000503300210000300000002001d00000000042300190000003f02300039000000200300008a000000000232016f000400000002001d0000006001100210000800000001001d0000001b03000039000000000103041a000900000001001d0000001a01000039000700000001001d0000004001000039000600000001001d0000001401000039000500000001001d000100000000001d0000000005000019000d00000004001d000200000003001d0000000901000029000000000115004b000016cb0000813d000000000103041a000000000151004b000016df0000a13d0000000000300435000c00000005001d000006a101500041000a00000001001d000000000101041a00000000001004350000000701000029000000200010043f0000000001000019000000060200002918a603650000040f000000000101041a000b00000001001d000000400300043d00000005010000290000000000130435000000200130003900000008020000290000000000210435000006ca0230009c000016d80000213d0000004002300039001000000002001d000000400020043f0000000002030433001100000003001d18a603650000040f000000110400002900000010060000290000000e020000290000062d0220009c000016d80000213d000000040200002900000000022600190000062d0320009c000016d80000213d000000400020043f0000000e02000029000000000026043500000000020000310000000d05000029000000000225004b000016e60000213d0000006002400039000f00000002001d0000000303000029000000000453004b0000169e0000813d0000000204300367000000000404043b000000000042043500000020033000390000002002200039000016960000013d00000000030000190000000002060433000000000223004b000016b40000813d0000000502300210001100000003001d0000000f0300002900000000022300190000000002020433000000000321004b000000000302001900000000030140190000000000300435000000000102a019000000200010043f0000004002000039000000000100001918a603650000040f0000001103000029000000100600002900000001033000390000169f0000013d0000000b02000029000000000121004b0000000d0400002900000002030000290000000c05000029000016c90000c13d000000000103041a000000000151004b000016df0000a13d00000000003004350000000a01000029000000000101041a0000000102000029000000000121004b000016c90000a13d000000000103041a000000000151004b000016df0000a13d0000000a01000029000000000101041a000100000001001d0000000105500039000016620000013d000000000100041100000000001004350000001c01000039000000200010043f0000004002000039000000000100001918a603650000040f000000000101041a0000000103000029000000000213004b000016e90000413d0000000001130049000000000001042d000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f000006380100004100000000001004350000003201000039000000040010043f0000002402000039000000000100001918a603980000040f0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001918a603980000040f000000000310004c000016f60000613d000000010300008a00000000431300d9000000000323004b000016f80000413d00000000211200a9000000000001042d000006380100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001918a603980000040f000000000110004c000017020000613d000000000001042d000000400100043d0000004402100039000006cb03000041000000000032043500000024021000390000001c0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0006000000000002000200000001001d0000062e01100198000400000001001d000017820000613d00000000002004350000000201000039000300000001001d000000200010043f0000004003000039000600000003001d0000000001000019000500000002001d000000000203001918a603650000040f000000000101041a0000062e011001980000000001000019000000010100603918a616ff0000040f0000000801000039000000000101041a000100000001001d000000050100002900000000001004350000000901000039000000200010043f0000000001000019000000060200002918a603650000040f0000000102000029000000000021041b000000050100002918a6162f0000040f000000020100002918a613600000040f000000040200002900000000002004350000000602000039000000200020043f000200000001001d0000000001000019000000060200002918a603650000040f00000002020000290000000000200435000000200010043f0000000001000019000000060200002918a603650000040f0000000502000029000000000021041b00000000002004350000000701000039000000200010043f0000000001000019000000060200002918a603650000040f0000000202000029000000000021041b000000050100002900000000001004350000000301000029000000200010043f0000000001000019000000060200002918a603650000040f000000000101041a0000062e011001980000000001000019000000010100603918a616ff0000040f000000040100002900000000001004350000000301000039000000200010043f0000000001000019000000060200002918a603650000040f000000000201041a0000000102200039000000000021041b000000050100002900000000001004350000000301000029000000200010043f0000000001000019000000060200002918a603650000040f000000000201041a00000631022001970000000406000029000000000262019f000000000021041b0000062b01000041000000400200043d00000000030004140000062b0430009c00000000030180190000062b0420009c00000000010240190000004001100210000000c002300210000000000112019f00000632011001c70000800d020000390000000403000039000006ad040000410000000005000019000000050700002918a6189c0000040f00000001012001900000178f0000613d000000000001042d000000400100043d0000004402100039000006cc0300004100000000003204350000067f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003918a603980000040f0000000001000019000000000200001918a603980000040f00030000000000020000001102000039000000000202041a000000ff02200190000018110000613d0000001d02000039000000000202041a0000001e03000039000000000303041a000000400800043d00000024048000390000000000340435000006cd0300004100000000003804350000000403800039000000000013043500000000010004140000062e02200197000000040320008c000017ae0000613d000000000308001900000000040800190000000005000019000300000008001d18a603310000040f0000000308000029000000000110004c000018490000613d000000030200036700000001010000310000001f0310018f0000000504100272000017bc0000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000017b40000413d000000000530004c000017cb0000613d0000000504400210000000000242034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f03100039000000200200008a000000000323016f0000000009830019000000000339004b000000000300001900000001030040390000062d0490009c000018420000213d0000000103300190000018420000c13d0000062c030000410000001f0410008c000000000400001900000000040320190000062c05100197000000000650004c00000000030080190000062c0550009c000000000304c019000000400090043f000000000330004c0000183f0000613d00000000040804330000062d0340009c0000183f0000213d000000000381001900000000048400190000001f014000390000062c05000041000000000631004b000000000600001900000000060580190000062c011001970000062c07300197000000000871004b0000000005008019000000000171013f0000062c0110009c00000000010600190000000001056019000000000110004c0000183f0000c13d00000000010404330000062d0510009c000018420000213d0000003f05100039000000000225016f00000000029200190000062d0520009c000018420000213d000000400020043f000000000019043500000020024000390000000004120019000000000334004b0000183f0000213d00000020039000390000000004000019000000000514004b0000180e0000813d00000000053400190000000006420019000000000606043300000000006504350000002004400039000018060000013d00000000013100190000000000010435000018300000013d0000000c01000039000100000001001d000000000101041a000200000001001d000000400200043d000300000002001d18a6131d0000040f0000000203000029000000030900002900000000001904350000000102300190000018320000c13d000001000200008a000000000223016f00000020039000390000000000230435000000000110004c000000200200003900000000020060190000003f01200039000000200200008a000000000221016f0000000001920019000000000221004b000000000200001900000001020040390000062d0310009c000018420000213d0000000102200190000018420000c13d000000400010043f0000000001090019000000000001042d00000001020000290000000000200435000006800300004100000020049000390000000002000019000000000512004b000018240000813d0000000005240019000000000603041a000000000065043500000020022000390000000103300039000018370000013d0000000001000019000000000200001918a603980000040f000006380100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001918a603980000040f0000000302000367000000400100043d00000001040000310000001f0340018f0000000504400272000018580000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000018500000413d000000000530004c000018670000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f0000000000240435000000010200003118a603980000040f000000000110004c0000186c0000613d000000000001042d000000400100043d0000004402100039000006ce03000041000000000032043500000024021000390000001a0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000000000110004c0000187d0000613d000000000001042d000000400100043d0000004402100039000006cf0300004100000000003204350000002402100039000000140300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f000000000110004c0000188e0000613d000000000001042d000000400100043d0000004402100039000006d003000041000000000032043500000024021000390000000f0300003900000000003204350000067f020000410000000000210435000000040210003900000020030000390000000000320435000000640200003918a603980000040f0000189f002104210000000102000039000000000001042d00000000020000190000189e0000013d000018a4002104230000000102000039000000000001042d0000000002000019000018a30000013d000018a600000432000018a70001042e000018a80001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffc06e756c6c00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffff0000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e7fa80000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000c894cfe000000000000000000000000000000000000000000000000000000000ee196f500000000000000000000000000000000000000000000000000000000139d83250000000000000000000000000000000000000000000000000000000016f4d0220000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000296cab55000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000034747a7f000000000000000000000000000000000000000000000000000000003549345e000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003cd8045e0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000048313029000000000000000000000000000000000000000000000000000000004f6ccce700000000000000000000000000000000000000000000000000000000535ba42f0000000000000000000000000000000000000000000000000000000054214f690000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000059939b2e000000000000000000000000000000000000000000000000000000005b8ad42900000000000000000000000000000000000000000000000000000000600dd5ea0000000000000000000000000000000000000000000000000000000062b974e2000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000006bb7b1d9000000000000000000000000000000000000000000000000000000006d5d40c6000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000072250380000000000000000000000000000000000000000000000000000000007549487c0000000000000000000000000000000000000000000000000000000089b0649b000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008e0d58bd000000000000000000000000000000000000000000000000000000008fe3ac1800000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a304ee7600000000000000000000000000000000000000000000000000000000a82524b200000000000000000000000000000000000000000000000000000000a945bf8000000000000000000000000000000000000000000000000000000000ac29b7d200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c627525500000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000c93fc83d00000000000000000000000000000000000000000000000000000000cb60ec9000000000000000000000000000000000000000000000000000000000cc1acb9d00000000000000000000000000000000000000000000000000000000cce54e4400000000000000000000000000000000000000000000000000000000cd3c6c2600000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000e3e1e8ef00000000000000000000000000000000000000000000000000000000e58306f900000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ee38db9500000000000000000000000000000000000000000000000000000000f2c4ce1e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5a900f364647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c700000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3933333333333333333333333333333333333333333333333333333333333333335472616e7366657220746f2042206661696c65640000000000000000000000005472616e7366657220746f2041206661696c65640000000000000000000000006400000000000000000000000000000000000000000000000000000000000000496e697469616c207769746864726177616c73206e6f7420636f6d706c65746566de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090000000000000000000000000000000000000000000000000ffffffffffffffdf796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391324e6f74207072656c69737465640000000000000000000000000000000000000043616e6e6f74206d696e74206d6f7265207468616e206d617820737570706c79496e73756666696369656e742066756e647320666f72206d696e74000000000050726573616c65206e6f74206163746976650000000000000000000000000000416c72656164792077697468647261776e20746f20420000000000000000000000000000000000000000000000000000000000000000000328619260d680ffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000328619260d681000041206d7573742062652077697468647261776e20666972737400000000000000546f6b656e20646f6573206e6f74206578697374000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000496e76616c696420616d6f756e7420746f206265206d696e7465640000000000656e740000000000000000000000000000000000000000000000000000000000436f737420697320686967686572207468616e2074686520616d6f756e7420734d617820737570706c7920726561636865640000000000000000000000000000596f75206861766520746f206d696e7420616c7465617374206f6e65000000005075626c69632073616c65206e6f742061637469766500000000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf63ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1416c72656164792077697468647261776e20746f2041000000000000000000000000000000000000000000000000000000000000000000002a9ad4bc0472ffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a9ad4bc0473000000000000000000000000000000000000000000000000000100000000000000000175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db97574206f6620626f756e64730000000000000000000000000000000000000000455243373231456e756d657261626c653a20676c6f62616c20696e646578206ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee2f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef74206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f756b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563ffffffff00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000ffffffffffffffe06c6964206f776e657200000000000000000000000000000000000000000000004552433732313a2061646472657373207a65726f206973206e6f7420612076614552433732313a20696e76616c696420746f6b656e204944000000000000000072206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6563656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152656f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164641806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf4552433732313a20746f6b656e20616c7265616479206d696e746564000000004552433732313a206d696e7420746f20746865207a65726f206164647265737392cb829d0000000000000000000000000000000000000000000000000000000043616c6c6572206973206e6f74207468652073706c6974746572000000000000496e73756666696369656e742062616c616e63650000000000000000000000005472616e73666572206661696c65640000000000000000000000000000000000

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

0x00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc53c4d81fb3fe30bc6c6f468cd3d30139279b52000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072b5d02a57c1c5923cbd310a2321d925b4f3e88f000000000000000000000000111823389d1116e85e2759dbfaef915376947de300000000000000000000000072b5d02a57c1c5923cbd310a2321d925b4f3e88f00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000084875653136626974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000548554531360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51636643584556587938326d6a4e784769637a47486e6367646d61415a4c444c5256697278416d7a785671782f0000000000000000000000000000000000000000000000000000000000000000000000000000000000046e756c6c00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Hue16bit
Arg [1] : _symbol (string): HUE16
Arg [2] : _contractURI (string): ipfs://QmQcfCXEVXy82mjNxGiczGHncgdmaAZLDLRVirxAmzxVqx/
Arg [3] : _maxSupply (uint256): 25600
Arg [4] : _publicPrice (uint256): 0
Arg [5] : _publicMaxMintAmount (uint256): 1000
Arg [6] : _notRevealedURI (string): null
Arg [7] : _isRevealed (bool): True
Arg [8] : _splitter (address): 0xDC53C4d81fb3Fe30bc6C6f468CD3D30139279b52
Arg [9] : _tier (uint256): 2
Arg [10] : _proceedsRecipient (address): 0x72B5D02A57c1C5923Cbd310a2321D925b4f3E88f
Arg [11] : _comissionRecipient (address): 0x111823389d1116e85E2759DBfaEf915376947DE3
Arg [12] : _defaultRoyaltyRecipient (address): 0x72B5D02A57c1C5923Cbd310a2321D925b4f3E88f
Arg [13] : _defaultRoyaltyPercentage (uint256): 500

-----Encoded View---------------


[ 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.