ETH Price: $3,422.93 (-0.51%)
Gas: 3 Gwei

Token

Moonapez (MA)
 

Overview

Max Total Supply

8,000 MA

Holders

2,364

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mcning.eth
Balance
1 MA
0xddb0766ff83a91980c0cc4b9137e089bd8385d7a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Moonapez

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Moonapez.sol
// SPDX-License-Identifier: MIT

// • ▌ ▄ ·.              ▐ ▄  ▄▄▄·  ▄▄▄·▄▄▄ .·▄▄▄▄•
// ·██ ▐███▪▪     ▪     •█▌▐█▐█ ▀█ ▐█ ▄█▀▄.▀·▪▀·.█▌
// ▐█ ▌▐▌▐█· ▄█▀▄  ▄█▀▄ ▐█▐▐▌▄█▀▀█  ██▀·▐▀▀▪▄▄█▀▀▀•
// ██ ██▌▐█▌▐█▌.▐▌▐█▌.▐▌██▐█▌▐█ ▪▐▌▐█▪·•▐█▄▄▌█▌▪▄█▀
// ▀▀  █▪▀▀▀ ▀█▄▀▪ ▀█▄▀▪▀▀ █▪ ▀  ▀ .▀    ▀▀▀ ·▀▀▀ •

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";

contract Moonapez is ERC721A, Ownable, ReentrancyGuard {
    
    uint256 public MINT_PRICE = 0.003 ether;
    uint256 public MAX_SUPPLY = 8000;
    uint256 public MAX_FREE_SUPPLY = 4000;
    uint256 public MAX_FREE_PER_WALLET = 2;
    uint256 public MAX_PUBLIC_PER_WALLET = 10;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) public addressFreeMintedBalance;

    constructor(string memory initBaseURI) ERC721A("Moonapez", "MA") {
        baseURI = initBaseURI;
    }

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

    function freeMint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(
            addressFreeMintedCount + _mintAmount <= MAX_FREE_PER_WALLET,
            "Max Moonapez per address exceeded"
        );
        require(_mintAmount > 0, "Cannot mint 0 Moonapez");
        require(
            s + _mintAmount <= MAX_FREE_SUPPLY,
            "Cannot exceed Moonapez supply"
        );
        for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;
        }
        _safeMint(msg.sender, _mintAmount);
        delete s;
        delete addressFreeMintedCount;
    }

    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0 Moonapez");
        require(
            _mintAmount <= MAX_PUBLIC_PER_WALLET,
            "Cant mint more Moonapez"
        );
        require(s + _mintAmount <= MAX_SUPPLY, "Cant exceed Moonapez supply");
        require(msg.value >= MINT_PRICE * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        MINT_PRICE = _newPrice;
    }

    function setMaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
        MAX_FREE_SUPPLY = _newMaxFreeSupply;
    }

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

    function setMaxPublicMintAmountPerWallet(uint256 _amount) public onlyOwner {
        MAX_PUBLIC_PER_WALLET = _amount;
    }

    function setFreeMintAmountPerWallet(uint256 _amount) public onlyOwner {
        MAX_FREE_PER_WALLET = _amount;
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : 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 6 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : 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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 13 : 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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 12 of 13 : 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 13 of 13 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreeMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPublicMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

6080604052660aa87bee538000600a55611f40600b55610fa0600c556002600d55600a600e553480156200003257600080fd5b506040516200407538038062004075833981810160405281019062000058919062000476565b6040518060400160405280600881526020017f4d6f6f6e6170657a0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d410000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000dc92919062000229565b508060039080519060200190620000f592919062000229565b50620001066200015660201b60201c565b60008190555050506200012e620001226200015b60201b60201c565b6200016360201b60201c565b600160098190555080600f90805190602001906200014e92919062000229565b50506200052c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023790620004f6565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200034282620002f7565b810181811067ffffffffffffffff8211171562000364576200036362000308565b5b80604052505050565b600062000379620002d9565b905062000387828262000337565b919050565b600067ffffffffffffffff821115620003aa57620003a962000308565b5b620003b582620002f7565b9050602081019050919050565b60005b83811015620003e2578082015181840152602081019050620003c5565b83811115620003f2576000848401525b50505050565b60006200040f62000409846200038c565b6200036d565b9050828152602081018484840111156200042e576200042d620002f2565b5b6200043b848285620003c2565b509392505050565b600082601f8301126200045b576200045a620002ed565b5b81516200046d848260208601620003f8565b91505092915050565b6000602082840312156200048f576200048e620002e3565b5b600082015167ffffffffffffffff811115620004b057620004af620002e8565b5b620004be8482850162000443565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050f57607f821691505b60208210811415620005265762000525620004c7565b5b50919050565b613b39806200053c6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d57806398710d1e116100a0578063bd62869a1161006f578063bd62869a1461069a578063c002d23d146106c3578063c87b56dd146106ee578063e985e9c51461072b578063f2fde38b14610768576101ee565b806398710d1e14610601578063a0712d681461062c578063a22cb46514610648578063b88d4fde14610671576101ee565b80637c928fe9116100dc5780637c928fe9146105665780638da5cb5b1461058257806391b7f5ed146105ad57806395d89b41146105d6576101ee565b80636c0360eb146104aa57806370a08231146104d5578063715018a6146105125780637c6b172d14610529576101ee565b80632fbba115116101855780634e26d1af116101545780634e26d1af146103f057806355f804b31461041b5780635b28fd91146104445780636352211e1461046d576101ee565b80632fbba1151461036957806332cb6b0c146103925780633ccfd60b146103bd57806342842e0e146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806311df65fd146102ec57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302ddb65b1461023057806306fdde031461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bbb565b610791565b6040516102279190612c03565b60405180910390f35b34801561023c57600080fd5b50610245610873565b6040516102529190612c37565b60405180910390f35b34801561026757600080fd5b50610270610879565b60405161027d9190612ceb565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612d39565b61090b565b6040516102ba9190612da7565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612dee565b610987565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d39565b610a8c565b005b34801561032157600080fd5b5061032a610b12565b6040516103379190612c37565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e2e565b610b29565b005b34801561037557600080fd5b50610390600480360381019061038b9190612d39565b610b39565b005b34801561039e57600080fd5b506103a7610bc9565b6040516103b49190612c37565b60405180910390f35b6103c5610bcf565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612e2e565b610cc4565b005b3480156103fc57600080fd5b50610405610ce4565b6040516104129190612c37565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612fb6565b610cea565b005b34801561045057600080fd5b5061046b60048036038101906104669190612d39565b610d80565b005b34801561047957600080fd5b50610494600480360381019061048f9190612d39565b610e06565b6040516104a19190612da7565b60405180910390f35b3480156104b657600080fd5b506104bf610e1c565b6040516104cc9190612ceb565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612fff565b610eaa565b6040516105099190612c37565b60405180910390f35b34801561051e57600080fd5b50610527610f7a565b005b34801561053557600080fd5b50610550600480360381019061054b9190612fff565b611002565b60405161055d9190612c37565b60405180910390f35b610580600480360381019061057b9190612d39565b61101a565b005b34801561058e57600080fd5b5061059761122c565b6040516105a49190612da7565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612d39565b611256565b005b3480156105e257600080fd5b506105eb6112dc565b6040516105f89190612ceb565b60405180910390f35b34801561060d57600080fd5b5061061661136e565b6040516106239190612c37565b60405180910390f35b61064660048036038101906106419190612d39565b611374565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613058565b6114da565b005b34801561067d57600080fd5b5061069860048036038101906106939190613139565b611652565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612d39565b6116ca565b005b3480156106cf57600080fd5b506106d8611750565b6040516106e59190612c37565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612d39565b611756565b6040516107229190612ceb565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906131bc565b6117fd565b60405161075f9190612c03565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612fff565b611891565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c575061086b82611989565b5b9050919050565b600c5481565b6060600280546108889061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b49061322b565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826119f3565b61094c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099282610e06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a19611a41565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c57610a4581610a40611a41565b6117fd565b610a7b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a87838383611a49565b505050565b610a94611a41565b73ffffffffffffffffffffffffffffffffffffffff16610ab261122c565b73ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906132a9565b60405180910390fd5b80600d8190555050565b6000610b1c611afb565b6001546000540303905090565b610b34838383611b00565b505050565b610b41611a41565b73ffffffffffffffffffffffffffffffffffffffff16610b5f61122c565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906132a9565b60405180910390fd5b610bc6610bc0611a41565b82611fb6565b50565b600b5481565b610bd7611a41565b73ffffffffffffffffffffffffffffffffffffffff16610bf561122c565b73ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906132a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c71906132fa565b60006040518083038185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50565b610cdf83838360405180602001604052806000815250611652565b505050565b600e5481565b610cf2611a41565b73ffffffffffffffffffffffffffffffffffffffff16610d1061122c565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906132a9565b60405180910390fd5b80600f9080519060200190610d7c929190612a69565b5050565b610d88611a41565b73ffffffffffffffffffffffffffffffffffffffff16610da661122c565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906132a9565b60405180910390fd5b80600c8190555050565b6000610e1182611fd4565b600001519050919050565b600f8054610e299061322b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e559061322b565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f82611a41565b73ffffffffffffffffffffffffffffffffffffffff16610fa061122c565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906132a9565b60405180910390fd5b611000600061225f565b565b60106020528060005260406000206000915090505481565b60026009541415611060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110579061335b565b60405180910390fd5b60026009819055506000611072610b12565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5483826110c791906133aa565b1115611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613472565b60405180910390fd5b6000831161114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906134de565b60405180910390fd5b600c54838361115a91906133aa565b111561119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061354a565b60405180910390fd5b60005b8381101561120c57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906111f69061356a565b9190505550806112059061356a565b905061119e565b506112173384611fb6565b60009150600090505050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61125e611a41565b73ffffffffffffffffffffffffffffffffffffffff1661127c61122c565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906132a9565b60405180910390fd5b80600a8190555050565b6060600380546112eb9061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061322b565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b5050505050905090565b600d5481565b600260095414156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061335b565b60405180910390fd5b600260098190555060006113cc610b12565b905060008211611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906135ff565b60405180910390fd5b600e54821115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061366b565b60405180910390fd5b600b54828261146591906133aa565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906136d7565b60405180910390fd5b81600a546114b491906136f7565b3410156114c057600080fd5b6114ca3383611fb6565b6000905050600160098190555050565b6114e2611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611547576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611554611a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611601611a41565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116469190612c03565b60405180910390a35050565b61165d848484611b00565b61167c8373ffffffffffffffffffffffffffffffffffffffff16612325565b156116c45761168d84848484612348565b6116c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116d2611a41565b73ffffffffffffffffffffffffffffffffffffffff166116f061122c565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906132a9565b60405180910390fd5b80600e8190555050565b600a5481565b6060611761826119f3565b6117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906137c3565b60405180910390fd5b60006117aa6124a8565b905060008151116117ca57604051806020016040528060008152506117f5565b806117d48461253a565b6040516020016117e592919061386b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611899611a41565b73ffffffffffffffffffffffffffffffffffffffff166118b761122c565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119749061390c565b60405180910390fd5b6119868161225f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fe611afb565b11158015611a0d575060005482105b8015611a3a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b0b82611fd4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a41565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a41565b6117fd565b5b80611c0b5750611bd4611a41565b73ffffffffffffffffffffffffffffffffffffffff16611bf38461090b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb8858585600161269b565b611cc460008487611a49565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126a1565b5050505050565b611fd08282604051806020016040528060008152506126a7565b5050565b611fdc612aef565b600082905080611fea611afb565b1161222857600054811015612227576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161222557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210957809250505061225a565b5b60011561222457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461221f57809250505061225a565b61210a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236e611a41565b8786866040518563ffffffff1660e01b81526004016123909493929190613981565b602060405180830381600087803b1580156123aa57600080fd5b505af19250505080156123db57506040513d601f19601f820116820180604052508101906123d891906139e2565b60015b612455573d806000811461240b576040519150601f19603f3d011682016040523d82523d6000602084013e612410565b606091505b5060008151141561244d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546124b79061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e39061322b565b80156125305780601f1061250557610100808354040283529160200191612530565b820191906000526020600020905b81548152906001019060200180831161251357829003601f168201915b5050505050905090565b60606000821415612582576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612696565b600082905060005b600082146125b457808061259d9061356a565b915050600a826125ad9190613a3e565b915061258a565b60008167ffffffffffffffff8111156125d0576125cf612e8b565b5b6040519080825280601f01601f1916602001820160405280156126025781602001600182028036833780820191505090505b5090505b6000851461268f5760018261261b9190613a6f565b9150600a8561262a9190613aa3565b603061263691906133aa565b60f81b81838151811061264c5761264b613ad4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126889190613a3e565b9450612606565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612714576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561274f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275c600085838661269b565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061291d8673ffffffffffffffffffffffffffffffffffffffff16612325565b156129e2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129926000878480600101955087612348565b6129c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129235782600054146129dd57600080fd5b612a4d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106129e3575b816000819055505050612a6360008583866126a1565b50505050565b828054612a759061322b565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612b32565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b4b576000816000905550600101612b33565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b9881612b63565b8114612ba357600080fd5b50565b600081359050612bb581612b8f565b92915050565b600060208284031215612bd157612bd0612b59565b5b6000612bdf84828501612ba6565b91505092915050565b60008115159050919050565b612bfd81612be8565b82525050565b6000602082019050612c186000830184612bf4565b92915050565b6000819050919050565b612c3181612c1e565b82525050565b6000602082019050612c4c6000830184612c28565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c8c578082015181840152602081019050612c71565b83811115612c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cbd82612c52565b612cc78185612c5d565b9350612cd7818560208601612c6e565b612ce081612ca1565b840191505092915050565b60006020820190508181036000830152612d058184612cb2565b905092915050565b612d1681612c1e565b8114612d2157600080fd5b50565b600081359050612d3381612d0d565b92915050565b600060208284031215612d4f57612d4e612b59565b5b6000612d5d84828501612d24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9182612d66565b9050919050565b612da181612d86565b82525050565b6000602082019050612dbc6000830184612d98565b92915050565b612dcb81612d86565b8114612dd657600080fd5b50565b600081359050612de881612dc2565b92915050565b60008060408385031215612e0557612e04612b59565b5b6000612e1385828601612dd9565b9250506020612e2485828601612d24565b9150509250929050565b600080600060608486031215612e4757612e46612b59565b5b6000612e5586828701612dd9565b9350506020612e6686828701612dd9565b9250506040612e7786828701612d24565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ec382612ca1565b810181811067ffffffffffffffff82111715612ee257612ee1612e8b565b5b80604052505050565b6000612ef5612b4f565b9050612f018282612eba565b919050565b600067ffffffffffffffff821115612f2157612f20612e8b565b5b612f2a82612ca1565b9050602081019050919050565b82818337600083830152505050565b6000612f59612f5484612f06565b612eeb565b905082815260208101848484011115612f7557612f74612e86565b5b612f80848285612f37565b509392505050565b600082601f830112612f9d57612f9c612e81565b5b8135612fad848260208601612f46565b91505092915050565b600060208284031215612fcc57612fcb612b59565b5b600082013567ffffffffffffffff811115612fea57612fe9612b5e565b5b612ff684828501612f88565b91505092915050565b60006020828403121561301557613014612b59565b5b600061302384828501612dd9565b91505092915050565b61303581612be8565b811461304057600080fd5b50565b6000813590506130528161302c565b92915050565b6000806040838503121561306f5761306e612b59565b5b600061307d85828601612dd9565b925050602061308e85828601613043565b9150509250929050565b600067ffffffffffffffff8211156130b3576130b2612e8b565b5b6130bc82612ca1565b9050602081019050919050565b60006130dc6130d784613098565b612eeb565b9050828152602081018484840111156130f8576130f7612e86565b5b613103848285612f37565b509392505050565b600082601f8301126131205761311f612e81565b5b81356131308482602086016130c9565b91505092915050565b6000806000806080858703121561315357613152612b59565b5b600061316187828801612dd9565b945050602061317287828801612dd9565b935050604061318387828801612d24565b925050606085013567ffffffffffffffff8111156131a4576131a3612b5e565b5b6131b08782880161310b565b91505092959194509250565b600080604083850312156131d3576131d2612b59565b5b60006131e185828601612dd9565b92505060206131f285828601612dd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061324357607f821691505b60208210811415613257576132566131fc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613293602083612c5d565b915061329e8261325d565b602082019050919050565b600060208201905081810360008301526132c281613286565b9050919050565b600081905092915050565b50565b60006132e46000836132c9565b91506132ef826132d4565b600082019050919050565b6000613305826132d7565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613345601f83612c5d565b91506133508261330f565b602082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133b582612c1e565b91506133c083612c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133f5576133f461337b565b5b828201905092915050565b7f4d6178204d6f6f6e6170657a207065722061646472657373206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061345c602183612c5d565b915061346782613400565b604082019050919050565b6000602082019050818103600083015261348b8161344f565b9050919050565b7f43616e6e6f74206d696e742030204d6f6f6e6170657a00000000000000000000600082015250565b60006134c8601683612c5d565b91506134d382613492565b602082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f43616e6e6f7420657863656564204d6f6f6e6170657a20737570706c79000000600082015250565b6000613534601d83612c5d565b915061353f826134fe565b602082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600061357582612c1e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135a8576135a761337b565b5b600182019050919050565b7f43616e74206d696e742030204d6f6f6e6170657a000000000000000000000000600082015250565b60006135e9601483612c5d565b91506135f4826135b3565b602082019050919050565b60006020820190508181036000830152613618816135dc565b9050919050565b7f43616e74206d696e74206d6f7265204d6f6f6e6170657a000000000000000000600082015250565b6000613655601783612c5d565b91506136608261361f565b602082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f43616e7420657863656564204d6f6f6e6170657a20737570706c790000000000600082015250565b60006136c1601b83612c5d565b91506136cc8261368b565b602082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b600061370282612c1e565b915061370d83612c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137465761374561337b565b5b828202905092915050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006137ad602183612c5d565b91506137b882613751565b604082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b600081905092915050565b60006137f982612c52565b61380381856137e3565b9350613813818560208601612c6e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138556005836137e3565b91506138608261381f565b600582019050919050565b600061387782856137ee565b915061388382846137ee565b915061388e82613848565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138f6602683612c5d565b91506139018261389a565b604082019050919050565b60006020820190508181036000830152613925816138e9565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139538261392c565b61395d8185613937565b935061396d818560208601612c6e565b61397681612ca1565b840191505092915050565b60006080820190506139966000830187612d98565b6139a36020830186612d98565b6139b06040830185612c28565b81810360608301526139c28184613948565b905095945050505050565b6000815190506139dc81612b8f565b92915050565b6000602082840312156139f8576139f7612b59565b5b6000613a06848285016139cd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a4982612c1e565b9150613a5483612c1e565b925082613a6457613a63613a0f565b5b828204905092915050565b6000613a7a82612c1e565b9150613a8583612c1e565b925082821015613a9857613a9761337b565b5b828203905092915050565b6000613aae82612c1e565b9150613ab983612c1e565b925082613ac957613ac8613a0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220066acc684edb15c559634ac638142e3c3db63aa7b5d2239e8af6e20ac154c35664736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569616c733669376877776366773577637a6e6a327834633635707237323678657132637071616233783661756375647962736468712e697066732e6e667473746f726167652e6c696e6b2f00000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d57806398710d1e116100a0578063bd62869a1161006f578063bd62869a1461069a578063c002d23d146106c3578063c87b56dd146106ee578063e985e9c51461072b578063f2fde38b14610768576101ee565b806398710d1e14610601578063a0712d681461062c578063a22cb46514610648578063b88d4fde14610671576101ee565b80637c928fe9116100dc5780637c928fe9146105665780638da5cb5b1461058257806391b7f5ed146105ad57806395d89b41146105d6576101ee565b80636c0360eb146104aa57806370a08231146104d5578063715018a6146105125780637c6b172d14610529576101ee565b80632fbba115116101855780634e26d1af116101545780634e26d1af146103f057806355f804b31461041b5780635b28fd91146104445780636352211e1461046d576101ee565b80632fbba1151461036957806332cb6b0c146103925780633ccfd60b146103bd57806342842e0e146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806311df65fd146102ec57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302ddb65b1461023057806306fdde031461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bbb565b610791565b6040516102279190612c03565b60405180910390f35b34801561023c57600080fd5b50610245610873565b6040516102529190612c37565b60405180910390f35b34801561026757600080fd5b50610270610879565b60405161027d9190612ceb565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612d39565b61090b565b6040516102ba9190612da7565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612dee565b610987565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d39565b610a8c565b005b34801561032157600080fd5b5061032a610b12565b6040516103379190612c37565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e2e565b610b29565b005b34801561037557600080fd5b50610390600480360381019061038b9190612d39565b610b39565b005b34801561039e57600080fd5b506103a7610bc9565b6040516103b49190612c37565b60405180910390f35b6103c5610bcf565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612e2e565b610cc4565b005b3480156103fc57600080fd5b50610405610ce4565b6040516104129190612c37565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612fb6565b610cea565b005b34801561045057600080fd5b5061046b60048036038101906104669190612d39565b610d80565b005b34801561047957600080fd5b50610494600480360381019061048f9190612d39565b610e06565b6040516104a19190612da7565b60405180910390f35b3480156104b657600080fd5b506104bf610e1c565b6040516104cc9190612ceb565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612fff565b610eaa565b6040516105099190612c37565b60405180910390f35b34801561051e57600080fd5b50610527610f7a565b005b34801561053557600080fd5b50610550600480360381019061054b9190612fff565b611002565b60405161055d9190612c37565b60405180910390f35b610580600480360381019061057b9190612d39565b61101a565b005b34801561058e57600080fd5b5061059761122c565b6040516105a49190612da7565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612d39565b611256565b005b3480156105e257600080fd5b506105eb6112dc565b6040516105f89190612ceb565b60405180910390f35b34801561060d57600080fd5b5061061661136e565b6040516106239190612c37565b60405180910390f35b61064660048036038101906106419190612d39565b611374565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613058565b6114da565b005b34801561067d57600080fd5b5061069860048036038101906106939190613139565b611652565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612d39565b6116ca565b005b3480156106cf57600080fd5b506106d8611750565b6040516106e59190612c37565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612d39565b611756565b6040516107229190612ceb565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906131bc565b6117fd565b60405161075f9190612c03565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612fff565b611891565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c575061086b82611989565b5b9050919050565b600c5481565b6060600280546108889061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b49061322b565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826119f3565b61094c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099282610e06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a19611a41565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c57610a4581610a40611a41565b6117fd565b610a7b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a87838383611a49565b505050565b610a94611a41565b73ffffffffffffffffffffffffffffffffffffffff16610ab261122c565b73ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906132a9565b60405180910390fd5b80600d8190555050565b6000610b1c611afb565b6001546000540303905090565b610b34838383611b00565b505050565b610b41611a41565b73ffffffffffffffffffffffffffffffffffffffff16610b5f61122c565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906132a9565b60405180910390fd5b610bc6610bc0611a41565b82611fb6565b50565b600b5481565b610bd7611a41565b73ffffffffffffffffffffffffffffffffffffffff16610bf561122c565b73ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906132a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c71906132fa565b60006040518083038185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50565b610cdf83838360405180602001604052806000815250611652565b505050565b600e5481565b610cf2611a41565b73ffffffffffffffffffffffffffffffffffffffff16610d1061122c565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906132a9565b60405180910390fd5b80600f9080519060200190610d7c929190612a69565b5050565b610d88611a41565b73ffffffffffffffffffffffffffffffffffffffff16610da661122c565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906132a9565b60405180910390fd5b80600c8190555050565b6000610e1182611fd4565b600001519050919050565b600f8054610e299061322b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e559061322b565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f82611a41565b73ffffffffffffffffffffffffffffffffffffffff16610fa061122c565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906132a9565b60405180910390fd5b611000600061225f565b565b60106020528060005260406000206000915090505481565b60026009541415611060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110579061335b565b60405180910390fd5b60026009819055506000611072610b12565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5483826110c791906133aa565b1115611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613472565b60405180910390fd5b6000831161114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906134de565b60405180910390fd5b600c54838361115a91906133aa565b111561119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061354a565b60405180910390fd5b60005b8381101561120c57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906111f69061356a565b9190505550806112059061356a565b905061119e565b506112173384611fb6565b60009150600090505050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61125e611a41565b73ffffffffffffffffffffffffffffffffffffffff1661127c61122c565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906132a9565b60405180910390fd5b80600a8190555050565b6060600380546112eb9061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061322b565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b5050505050905090565b600d5481565b600260095414156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061335b565b60405180910390fd5b600260098190555060006113cc610b12565b905060008211611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906135ff565b60405180910390fd5b600e54821115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061366b565b60405180910390fd5b600b54828261146591906133aa565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906136d7565b60405180910390fd5b81600a546114b491906136f7565b3410156114c057600080fd5b6114ca3383611fb6565b6000905050600160098190555050565b6114e2611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611547576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611554611a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611601611a41565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116469190612c03565b60405180910390a35050565b61165d848484611b00565b61167c8373ffffffffffffffffffffffffffffffffffffffff16612325565b156116c45761168d84848484612348565b6116c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116d2611a41565b73ffffffffffffffffffffffffffffffffffffffff166116f061122c565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906132a9565b60405180910390fd5b80600e8190555050565b600a5481565b6060611761826119f3565b6117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906137c3565b60405180910390fd5b60006117aa6124a8565b905060008151116117ca57604051806020016040528060008152506117f5565b806117d48461253a565b6040516020016117e592919061386b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611899611a41565b73ffffffffffffffffffffffffffffffffffffffff166118b761122c565b73ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119749061390c565b60405180910390fd5b6119868161225f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fe611afb565b11158015611a0d575060005482105b8015611a3a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b0b82611fd4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a41565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a41565b6117fd565b5b80611c0b5750611bd4611a41565b73ffffffffffffffffffffffffffffffffffffffff16611bf38461090b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb8858585600161269b565b611cc460008487611a49565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126a1565b5050505050565b611fd08282604051806020016040528060008152506126a7565b5050565b611fdc612aef565b600082905080611fea611afb565b1161222857600054811015612227576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161222557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210957809250505061225a565b5b60011561222457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461221f57809250505061225a565b61210a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236e611a41565b8786866040518563ffffffff1660e01b81526004016123909493929190613981565b602060405180830381600087803b1580156123aa57600080fd5b505af19250505080156123db57506040513d601f19601f820116820180604052508101906123d891906139e2565b60015b612455573d806000811461240b576040519150601f19603f3d011682016040523d82523d6000602084013e612410565b606091505b5060008151141561244d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546124b79061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e39061322b565b80156125305780601f1061250557610100808354040283529160200191612530565b820191906000526020600020905b81548152906001019060200180831161251357829003601f168201915b5050505050905090565b60606000821415612582576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612696565b600082905060005b600082146125b457808061259d9061356a565b915050600a826125ad9190613a3e565b915061258a565b60008167ffffffffffffffff8111156125d0576125cf612e8b565b5b6040519080825280601f01601f1916602001820160405280156126025781602001600182028036833780820191505090505b5090505b6000851461268f5760018261261b9190613a6f565b9150600a8561262a9190613aa3565b603061263691906133aa565b60f81b81838151811061264c5761264b613ad4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126889190613a3e565b9450612606565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612714576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561274f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275c600085838661269b565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061291d8673ffffffffffffffffffffffffffffffffffffffff16612325565b156129e2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129926000878480600101955087612348565b6129c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129235782600054146129dd57600080fd5b612a4d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106129e3575b816000819055505050612a6360008583866126a1565b50505050565b828054612a759061322b565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612b32565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b4b576000816000905550600101612b33565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b9881612b63565b8114612ba357600080fd5b50565b600081359050612bb581612b8f565b92915050565b600060208284031215612bd157612bd0612b59565b5b6000612bdf84828501612ba6565b91505092915050565b60008115159050919050565b612bfd81612be8565b82525050565b6000602082019050612c186000830184612bf4565b92915050565b6000819050919050565b612c3181612c1e565b82525050565b6000602082019050612c4c6000830184612c28565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c8c578082015181840152602081019050612c71565b83811115612c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cbd82612c52565b612cc78185612c5d565b9350612cd7818560208601612c6e565b612ce081612ca1565b840191505092915050565b60006020820190508181036000830152612d058184612cb2565b905092915050565b612d1681612c1e565b8114612d2157600080fd5b50565b600081359050612d3381612d0d565b92915050565b600060208284031215612d4f57612d4e612b59565b5b6000612d5d84828501612d24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9182612d66565b9050919050565b612da181612d86565b82525050565b6000602082019050612dbc6000830184612d98565b92915050565b612dcb81612d86565b8114612dd657600080fd5b50565b600081359050612de881612dc2565b92915050565b60008060408385031215612e0557612e04612b59565b5b6000612e1385828601612dd9565b9250506020612e2485828601612d24565b9150509250929050565b600080600060608486031215612e4757612e46612b59565b5b6000612e5586828701612dd9565b9350506020612e6686828701612dd9565b9250506040612e7786828701612d24565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ec382612ca1565b810181811067ffffffffffffffff82111715612ee257612ee1612e8b565b5b80604052505050565b6000612ef5612b4f565b9050612f018282612eba565b919050565b600067ffffffffffffffff821115612f2157612f20612e8b565b5b612f2a82612ca1565b9050602081019050919050565b82818337600083830152505050565b6000612f59612f5484612f06565b612eeb565b905082815260208101848484011115612f7557612f74612e86565b5b612f80848285612f37565b509392505050565b600082601f830112612f9d57612f9c612e81565b5b8135612fad848260208601612f46565b91505092915050565b600060208284031215612fcc57612fcb612b59565b5b600082013567ffffffffffffffff811115612fea57612fe9612b5e565b5b612ff684828501612f88565b91505092915050565b60006020828403121561301557613014612b59565b5b600061302384828501612dd9565b91505092915050565b61303581612be8565b811461304057600080fd5b50565b6000813590506130528161302c565b92915050565b6000806040838503121561306f5761306e612b59565b5b600061307d85828601612dd9565b925050602061308e85828601613043565b9150509250929050565b600067ffffffffffffffff8211156130b3576130b2612e8b565b5b6130bc82612ca1565b9050602081019050919050565b60006130dc6130d784613098565b612eeb565b9050828152602081018484840111156130f8576130f7612e86565b5b613103848285612f37565b509392505050565b600082601f8301126131205761311f612e81565b5b81356131308482602086016130c9565b91505092915050565b6000806000806080858703121561315357613152612b59565b5b600061316187828801612dd9565b945050602061317287828801612dd9565b935050604061318387828801612d24565b925050606085013567ffffffffffffffff8111156131a4576131a3612b5e565b5b6131b08782880161310b565b91505092959194509250565b600080604083850312156131d3576131d2612b59565b5b60006131e185828601612dd9565b92505060206131f285828601612dd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061324357607f821691505b60208210811415613257576132566131fc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613293602083612c5d565b915061329e8261325d565b602082019050919050565b600060208201905081810360008301526132c281613286565b9050919050565b600081905092915050565b50565b60006132e46000836132c9565b91506132ef826132d4565b600082019050919050565b6000613305826132d7565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613345601f83612c5d565b91506133508261330f565b602082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133b582612c1e565b91506133c083612c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133f5576133f461337b565b5b828201905092915050565b7f4d6178204d6f6f6e6170657a207065722061646472657373206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061345c602183612c5d565b915061346782613400565b604082019050919050565b6000602082019050818103600083015261348b8161344f565b9050919050565b7f43616e6e6f74206d696e742030204d6f6f6e6170657a00000000000000000000600082015250565b60006134c8601683612c5d565b91506134d382613492565b602082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f43616e6e6f7420657863656564204d6f6f6e6170657a20737570706c79000000600082015250565b6000613534601d83612c5d565b915061353f826134fe565b602082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600061357582612c1e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135a8576135a761337b565b5b600182019050919050565b7f43616e74206d696e742030204d6f6f6e6170657a000000000000000000000000600082015250565b60006135e9601483612c5d565b91506135f4826135b3565b602082019050919050565b60006020820190508181036000830152613618816135dc565b9050919050565b7f43616e74206d696e74206d6f7265204d6f6f6e6170657a000000000000000000600082015250565b6000613655601783612c5d565b91506136608261361f565b602082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f43616e7420657863656564204d6f6f6e6170657a20737570706c790000000000600082015250565b60006136c1601b83612c5d565b91506136cc8261368b565b602082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b600061370282612c1e565b915061370d83612c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137465761374561337b565b5b828202905092915050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006137ad602183612c5d565b91506137b882613751565b604082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b600081905092915050565b60006137f982612c52565b61380381856137e3565b9350613813818560208601612c6e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138556005836137e3565b91506138608261381f565b600582019050919050565b600061387782856137ee565b915061388382846137ee565b915061388e82613848565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138f6602683612c5d565b91506139018261389a565b604082019050919050565b60006020820190508181036000830152613925816138e9565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139538261392c565b61395d8185613937565b935061396d818560208601612c6e565b61397681612ca1565b840191505092915050565b60006080820190506139966000830187612d98565b6139a36020830186612d98565b6139b06040830185612c28565b81810360608301526139c28184613948565b905095945050505050565b6000815190506139dc81612b8f565b92915050565b6000602082840312156139f8576139f7612b59565b5b6000613a06848285016139cd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a4982612c1e565b9150613a5483612c1e565b925082613a6457613a63613a0f565b5b828204905092915050565b6000613a7a82612c1e565b9150613a8583612c1e565b925082821015613a9857613a9761337b565b5b828203905092915050565b6000613aae82612c1e565b9150613ab983612c1e565b925082613ac957613ac8613a0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220066acc684edb15c559634ac638142e3c3db63aa7b5d2239e8af6e20ac154c35664736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569616c733669376877776366773577637a6e6a327834633635707237323678657132637071616233783661756375647962736468712e697066732e6e667473746f726167652e6c696e6b2f00000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://bafybeials6i7hwwcfw5wcznj2x4c65pr726xeq2cpqab3x6aucudybsdhq.ipfs.nftstorage.link/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [2] : 68747470733a2f2f62616679626569616c733669376877776366773577637a6e
Arg [3] : 6a32783463363570723732367865713263707161623378366175637564796273
Arg [4] : 6468712e697066732e6e667473746f726167652e6c696e6b2f00000000000000


Deployed Bytecode Sourcemap

823:3407:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;976:37:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6087:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7544:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7120:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3796:118:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2319:306:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8383:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3922:105:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4035:192;;;:::i;:::-;;8613:179:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1065:41:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3551:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3419:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5902:123:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1147:21:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3416:203:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1175:59:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1472:750;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3316:95:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6249:102:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1020:38:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2230:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7811:282:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8858:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3663:125:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;891:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2725:583;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8159:162:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3057:300:11;3159:4;3209:25;3194:40;;;:11;:40;;;;:104;;;;3265:33;3250:48;;;:11;:48;;;;3194:104;:156;;;;3314:36;3338:11;3314:23;:36::i;:::-;3194:156;3175:175;;3057:300;;;:::o;976:37:10:-;;;;:::o;6087:98:11:-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;;;;;;;;;;;;;7631:64;7713:15;:24;7729:7;7713:24;;;;;;;;;;;;;;;;;;;;;7706:31;;7544:200;;;:::o;7120:363::-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;7246:11;;:2;:11;;;7242:48;;;7266:24;;;;;;;;;;;;;;7242:48;7321:5;7305:21;;:12;:10;:12::i;:::-;:21;;;7301:137;;7332:37;7349:5;7356:12;:10;:12::i;:::-;7332:16;:37::i;:::-;7328:110;;7392:35;;;;;;;;;;;;;;7328:110;7301:137;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;3796:118:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3899:7:10::1;3877:19;:29;;;;3796:118:::0;:::o;2319:306:11:-;2372:7;2593:15;:13;:15::i;:::-;2578:12;;2562:13;;:28;:46;2555:53;;2319:306;:::o;8383:164::-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;:::-;8383:164;;;:::o;3922:105:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3987:32:10::1;3997:12;:10;:12::i;:::-;4011:7;3987:9;:32::i;:::-;3922:105:::0;:::o;937:32::-;;;;:::o;4035:192::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4092:12:10::1;4118:10;4110:24;;4156:21;4110:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4091:101;;;4211:7;4203:16;;;::::0;::::1;;4080:147;4035:192::o:0;8613:179:11:-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;:::-;8613:179;;;:::o;1065:41:10:-;;;;:::o;3551:104::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3636:11:10::1;3626:7;:21;;;;;;;;;;;;:::i;:::-;;3551:104:::0;:::o;3419:124::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3518:17:10::1;3500:15;:35;;;;3419:124:::0;:::o;5902:123:11:-;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;;5985:33;;5902:123;;;:::o;1147:21:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3416:203:11:-;3480:7;3520:1;3503:19;;:5;:19;;;3499:60;;;3531:28;;;;;;;;;;;;;;3499:60;3584:12;:19;3597:5;3584:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;3576:36;;3569:43;;3416:203;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1175:59:10:-;;;;;;;;;;;;;;;;;:::o;1472:750::-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;1550:9:10::1;1562:13;:11;:13::i;:::-;1550:25;;1586:30;1619:24;:36;1644:10;1619:36;;;;;;;;;;;;;;;;1586:69;;1728:19;;1713:11;1688:22;:36;;;;:::i;:::-;:59;;1666:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;1841:1;1827:11;:15;1819:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;1921:15;;1906:11;1902:1;:15;;;;:::i;:::-;:34;;1880:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;2009:9;2004:107;2028:11;2024:1;:15;2004:107;;;2061:24;:36;2086:10;2061:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;2041:3;;;;:::i;:::-;;;2004:107;;;;2121:34;2131:10;2143:11;2121:9;:34::i;:::-;2166:8;;;2185:29;;;1539:683;;1701:1:1::0;2628:7;:22;;;;1472:750:10;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;3316:95:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3394:9:10::1;3381:10;:22;;;;3316:95:::0;:::o;6249:102:11:-;6305:13;6337:7;6330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6249:102;:::o;1020:38:10:-;;;;:::o;2230:487::-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2304:9:10::1;2316:13;:11;:13::i;:::-;2304:25;;2362:1;2348:11;:15;2340:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;2436:21;;2421:11;:36;;2399:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;2546:10;;2531:11;2527:1;:15;;;;:::i;:::-;:29;;2519:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2633:11;2620:10;;:24;;;;:::i;:::-;2607:9;:37;;2599:46;;;::::0;::::1;;2656:34;2666:10;2678:11;2656:9;:34::i;:::-;2701:8;;;2293:424;1701:1:1::0;2628:7;:22;;;;2230:487:10;:::o;7811:282:11:-;7921:12;:10;:12::i;:::-;7909:24;;:8;:24;;;7905:54;;;7942:17;;;;;;;;;;;;;;7905:54;8015:8;7970:18;:32;7989:12;:10;:12::i;:::-;7970:32;;;;;;;;;;;;;;;:42;8003:8;7970:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8067:8;8038:48;;8053:12;:10;:12::i;:::-;8038:48;;;8077:8;8038:48;;;;;;:::i;:::-;;;;;;;;7811:282;;:::o;8858:360::-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;9061:15;:2;:13;;;:15::i;:::-;9057:155;;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;;;;;;;;;;;;;9078:134;9057:155;8858:360;;;;:::o;3663:125:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3773:7:10::1;3749:21;:31;;;;3663:125:::0;:::o;891:39::-;;;;:::o;2725:583::-;2843:13;2882:16;2890:7;2882;:16::i;:::-;2874:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2947:28;2978:10;:8;:10::i;:::-;2947:41;;3050:1;3025:14;3019:28;:32;:281;;;;;;;;;;;;;;;;;3143:14;3184:18;:7;:16;:18::i;:::-;3100:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3019:281;2999:301;;;2725:583;;;:::o;8159:162:11:-;8256:4;8279:18;:25;8298:5;8279:25;;;;;;;;;;;;;;;:35;8305:8;8279:35;;;;;;;;;;;;;;;;;;;;;;;;;8272:42;;8159:162;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;829:155:8:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9464:172:11:-;9521:4;9563:7;9544:15;:13;:15::i;:::-;:26;;:53;;;;;9584:13;;9574:7;:23;9544:53;:85;;;;;9602:11;:20;9614:7;9602:20;;;;;;;;;;;:27;;;;;;;;;;;;9601:28;9544:85;9537:92;;9464:172;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;18445:189:11:-;18582:2;18555:15;:24;18571:7;18555:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18619:7;18615:2;18599:28;;18608:5;18599:28;;;;;;;;;;;;18445:189;;;:::o;2100:90::-;2156:7;2100:90;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;13704:26;;:13;:18;;;:26;;;13700:67;;13739:28;;;;;;;;;;;;;;13700:67;13778:22;13820:4;13804:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;13840:36;13857:4;13863:12;:10;:12::i;:::-;13840:16;:36::i;:::-;13804:72;:124;;;;13916:12;:10;:12::i;:::-;13892:36;;:20;13904:7;13892:11;:20::i;:::-;:36;;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;;;;;;;;;;;;;13940:66;14034:1;14020:16;;:2;:16;;;14016:52;;;14045:23;;;;;;;;;;;;;;14016:52;14079:43;14101:4;14107:2;14111:7;14120:1;14079:21;:43::i;:::-;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;14539:1;14509:12;:18;14522:4;14509:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14582:1;14554:12;:16;14567:2;14554:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14598:31;14632:11;:20;14644:7;14632:20;;;;;;;;;;;14598:54;;14682:2;14666:8;:13;;;:18;;;;;;;;;;;;;;;;;;14731:15;14698:8;:23;;;:49;;;;;;;;;;;;;;;;;;14995:19;15027:1;15017:7;:11;14995:33;;15042:31;15076:11;:24;15088:11;15076:24;;;;;;;;;;;15042:58;;15143:1;15118:27;;:8;:13;;;;;;;;;;;;:27;;;15114:377;;;15325:13;;15310:11;:28;15306:171;;15378:4;15362:8;:13;;;:20;;;;;;;;;;;;;;;;;;15430:13;:28;;;15404:8;:23;;;:54;;;;;;;;;;;;;;;;;;15306:171;15114:377;14485:1016;;;15535:7;15531:2;15516:27;;15525:4;15516:27;;;;;;;;;;;;15553:42;15574:4;15580:2;15584:7;15593:1;15553:20;:42::i;:::-;13620:1982;;13520:2082;;;:::o;9715:102::-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;:::-;9715:102;;:::o;4759:1086::-;4821:21;;:::i;:::-;4854:12;4869:7;4854:22;;4934:4;4915:15;:13;:15::i;:::-;:23;4911:870;;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:11;:17;5030:4;5018:17;;;;;;;;;;;4984:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5058:9;:16;;;5053:714;;5128:1;5102:28;;:9;:14;;;:28;;;5098:99;;5165:9;5158:16;;;;;;5098:99;5494:255;5501:4;5494:255;;;5533:6;;;;;;;;5577:11;:17;5589:4;5577:17;;;;;;;;;;;5565:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650:1;5624:28;;:9;:14;;;:28;;;5620:107;;5691:9;5684:16;;;;;;5620:107;5494:255;;;5053:714;4966:815;4940:841;4911:870;5807:31;;;;;;;;;;;;;;4759:1086;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;19115:650:11:-;19273:4;19309:2;19293:36;;;19330:12;:10;:12::i;:::-;19344:4;19350:7;19359:5;19293:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19541:1;19524:6;:13;:18;19520:229;;;19569:40;;;;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;19421:45;;;19411:55;;;:6;:55;;;;19404:62;;;19115:650;;;;;;:::o;1356:108:10:-;1416:13;1449:7;1442:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356:108;:::o;328:703:7:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;20396:154:11:-;;;;;:::o;21191:153::-;;;;;:::o;10177:1708::-;10295:20;10318:13;;10295:36;;10359:1;10345:16;;:2;:16;;;10341:48;;;10370:19;;;;;;;;;;;;;;10341:48;10415:1;10403:8;:13;10399:44;;;10425:18;;;;;;;;;;;;;;10399:44;10454:61;10484:1;10488:2;10492:12;10506:8;10454:21;:61::i;:::-;10821:8;10786:12;:16;10799:2;10786:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10884:8;10844:12;:16;10857:2;10844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10941:2;10908:11;:25;10920:12;10908:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;11007:15;10957:11;:25;10969:12;10957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;11038:20;11061:12;11038:35;;11087:11;11116:8;11101:12;:23;11087:37;;11143:15;:2;:13;;;:15::i;:::-;11139:618;;;11178:308;11233:12;11229:2;11208:38;;11225:1;11208:38;;;;;;;;;;;;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;;;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11681:14;;;;;;11677:2;11656:40;;11673:1;11656:40;;;;;;;;;;;;11738:3;11723:12;:18;11626:117;;11139:618;11786:12;11770:13;:28;;;;10762:1047;;11818:60;11847:1;11851:2;11855:12;11869:8;11818:20;:60::i;:::-;10285:1600;10177:1708;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:181::-;14820:33;14816:1;14808:6;14804:14;14797:57;14680:181;:::o;14867:366::-;15009:3;15030:67;15094:2;15089:3;15030:67;:::i;:::-;15023:74;;15106:93;15195:3;15106:93;:::i;:::-;15224:2;15219:3;15215:12;15208:19;;14867:366;;;:::o;15239:419::-;15405:4;15443:2;15432:9;15428:18;15420:26;;15492:9;15486:4;15482:20;15478:1;15467:9;15463:17;15456:47;15520:131;15646:4;15520:131;:::i;:::-;15512:139;;15239:419;;;:::o;15664:180::-;15712:77;15709:1;15702:88;15809:4;15806:1;15799:15;15833:4;15830:1;15823:15;15850:305;15890:3;15909:20;15927:1;15909:20;:::i;:::-;15904:25;;15943:20;15961:1;15943:20;:::i;:::-;15938:25;;16097:1;16029:66;16025:74;16022:1;16019:81;16016:107;;;16103:18;;:::i;:::-;16016:107;16147:1;16144;16140:9;16133:16;;15850:305;;;;:::o;16161:220::-;16301:34;16297:1;16289:6;16285:14;16278:58;16370:3;16365:2;16357:6;16353:15;16346:28;16161:220;:::o;16387:366::-;16529:3;16550:67;16614:2;16609:3;16550:67;:::i;:::-;16543:74;;16626:93;16715:3;16626:93;:::i;:::-;16744:2;16739:3;16735:12;16728:19;;16387:366;;;:::o;16759:419::-;16925:4;16963:2;16952:9;16948:18;16940:26;;17012:9;17006:4;17002:20;16998:1;16987:9;16983:17;16976:47;17040:131;17166:4;17040:131;:::i;:::-;17032:139;;16759:419;;;:::o;17184:172::-;17324:24;17320:1;17312:6;17308:14;17301:48;17184:172;:::o;17362:366::-;17504:3;17525:67;17589:2;17584:3;17525:67;:::i;:::-;17518:74;;17601:93;17690:3;17601:93;:::i;:::-;17719:2;17714:3;17710:12;17703:19;;17362:366;;;:::o;17734:419::-;17900:4;17938:2;17927:9;17923:18;17915:26;;17987:9;17981:4;17977:20;17973:1;17962:9;17958:17;17951:47;18015:131;18141:4;18015:131;:::i;:::-;18007:139;;17734:419;;;:::o;18159:179::-;18299:31;18295:1;18287:6;18283:14;18276:55;18159:179;:::o;18344:366::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:419::-;18882:4;18920:2;18909:9;18905:18;18897:26;;18969:9;18963:4;18959:20;18955:1;18944:9;18940:17;18933:47;18997:131;19123:4;18997:131;:::i;:::-;18989:139;;18716:419;;;:::o;19141:233::-;19180:3;19203:24;19221:5;19203:24;:::i;:::-;19194:33;;19249:66;19242:5;19239:77;19236:103;;;19319:18;;:::i;:::-;19236:103;19366:1;19359:5;19355:13;19348:20;;19141:233;;;:::o;19380:170::-;19520:22;19516:1;19508:6;19504:14;19497:46;19380:170;:::o;19556:366::-;19698:3;19719:67;19783:2;19778:3;19719:67;:::i;:::-;19712:74;;19795:93;19884:3;19795:93;:::i;:::-;19913:2;19908:3;19904:12;19897:19;;19556:366;;;:::o;19928:419::-;20094:4;20132:2;20121:9;20117:18;20109:26;;20181:9;20175:4;20171:20;20167:1;20156:9;20152:17;20145:47;20209:131;20335:4;20209:131;:::i;:::-;20201:139;;19928:419;;;:::o;20353:173::-;20493:25;20489:1;20481:6;20477:14;20470:49;20353:173;:::o;20532:366::-;20674:3;20695:67;20759:2;20754:3;20695:67;:::i;:::-;20688:74;;20771:93;20860:3;20771:93;:::i;:::-;20889:2;20884:3;20880:12;20873:19;;20532:366;;;:::o;20904:419::-;21070:4;21108:2;21097:9;21093:18;21085:26;;21157:9;21151:4;21147:20;21143:1;21132:9;21128:17;21121:47;21185:131;21311:4;21185:131;:::i;:::-;21177:139;;20904:419;;;:::o;21329:177::-;21469:29;21465:1;21457:6;21453:14;21446:53;21329:177;:::o;21512:366::-;21654:3;21675:67;21739:2;21734:3;21675:67;:::i;:::-;21668:74;;21751:93;21840:3;21751:93;:::i;:::-;21869:2;21864:3;21860:12;21853:19;;21512:366;;;:::o;21884:419::-;22050:4;22088:2;22077:9;22073:18;22065:26;;22137:9;22131:4;22127:20;22123:1;22112:9;22108:17;22101:47;22165:131;22291:4;22165:131;:::i;:::-;22157:139;;21884:419;;;:::o;22309:348::-;22349:7;22372:20;22390:1;22372:20;:::i;:::-;22367:25;;22406:20;22424:1;22406:20;:::i;:::-;22401:25;;22594:1;22526:66;22522:74;22519:1;22516:81;22511:1;22504:9;22497:17;22493:105;22490:131;;;22601:18;;:::i;:::-;22490:131;22649:1;22646;22642:9;22631:20;;22309:348;;;;:::o;22663:220::-;22803:34;22799:1;22791:6;22787:14;22780:58;22872:3;22867:2;22859:6;22855:15;22848:28;22663:220;:::o;22889:366::-;23031:3;23052:67;23116:2;23111:3;23052:67;:::i;:::-;23045:74;;23128:93;23217:3;23128:93;:::i;:::-;23246:2;23241:3;23237:12;23230:19;;22889:366;;;:::o;23261:419::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23261:419;;;:::o;23686:148::-;23788:11;23825:3;23810:18;;23686:148;;;;:::o;23840:377::-;23946:3;23974:39;24007:5;23974:39;:::i;:::-;24029:89;24111:6;24106:3;24029:89;:::i;:::-;24022:96;;24127:52;24172:6;24167:3;24160:4;24153:5;24149:16;24127:52;:::i;:::-;24204:6;24199:3;24195:16;24188:23;;23950:267;23840:377;;;;:::o;24223:155::-;24363:7;24359:1;24351:6;24347:14;24340:31;24223:155;:::o;24384:400::-;24544:3;24565:84;24647:1;24642:3;24565:84;:::i;:::-;24558:91;;24658:93;24747:3;24658:93;:::i;:::-;24776:1;24771:3;24767:11;24760:18;;24384:400;;;:::o;24790:701::-;25071:3;25093:95;25184:3;25175:6;25093:95;:::i;:::-;25086:102;;25205:95;25296:3;25287:6;25205:95;:::i;:::-;25198:102;;25317:148;25461:3;25317:148;:::i;:::-;25310:155;;25482:3;25475:10;;24790:701;;;;;:::o;25497:225::-;25637:34;25633:1;25625:6;25621:14;25614:58;25706:8;25701:2;25693:6;25689:15;25682:33;25497:225;:::o;25728:366::-;25870:3;25891:67;25955:2;25950:3;25891:67;:::i;:::-;25884:74;;25967:93;26056:3;25967:93;:::i;:::-;26085:2;26080:3;26076:12;26069:19;;25728:366;;;:::o;26100:419::-;26266:4;26304:2;26293:9;26289:18;26281:26;;26353:9;26347:4;26343:20;26339:1;26328:9;26324:17;26317:47;26381:131;26507:4;26381:131;:::i;:::-;26373:139;;26100:419;;;:::o;26525:98::-;26576:6;26610:5;26604:12;26594:22;;26525:98;;;:::o;26629:168::-;26712:11;26746:6;26741:3;26734:19;26786:4;26781:3;26777:14;26762:29;;26629:168;;;;:::o;26803:360::-;26889:3;26917:38;26949:5;26917:38;:::i;:::-;26971:70;27034:6;27029:3;26971:70;:::i;:::-;26964:77;;27050:52;27095:6;27090:3;27083:4;27076:5;27072:16;27050:52;:::i;:::-;27127:29;27149:6;27127:29;:::i;:::-;27122:3;27118:39;27111:46;;26893:270;26803:360;;;;:::o;27169:640::-;27364:4;27402:3;27391:9;27387:19;27379:27;;27416:71;27484:1;27473:9;27469:17;27460:6;27416:71;:::i;:::-;27497:72;27565:2;27554:9;27550:18;27541:6;27497:72;:::i;:::-;27579;27647:2;27636:9;27632:18;27623:6;27579:72;:::i;:::-;27698:9;27692:4;27688:20;27683:2;27672:9;27668:18;27661:48;27726:76;27797:4;27788:6;27726:76;:::i;:::-;27718:84;;27169:640;;;;;;;:::o;27815:141::-;27871:5;27902:6;27896:13;27887:22;;27918:32;27944:5;27918:32;:::i;:::-;27815:141;;;;:::o;27962:349::-;28031:6;28080:2;28068:9;28059:7;28055:23;28051:32;28048:119;;;28086:79;;:::i;:::-;28048:119;28206:1;28231:63;28286:7;28277:6;28266:9;28262:22;28231:63;:::i;:::-;28221:73;;28177:127;27962:349;;;;:::o;28317:180::-;28365:77;28362:1;28355:88;28462:4;28459:1;28452:15;28486:4;28483:1;28476:15;28503:185;28543:1;28560:20;28578:1;28560:20;:::i;:::-;28555:25;;28594:20;28612:1;28594:20;:::i;:::-;28589:25;;28633:1;28623:35;;28638:18;;:::i;:::-;28623:35;28680:1;28677;28673:9;28668:14;;28503:185;;;;:::o;28694:191::-;28734:4;28754:20;28772:1;28754:20;:::i;:::-;28749:25;;28788:20;28806:1;28788:20;:::i;:::-;28783:25;;28827:1;28824;28821:8;28818:34;;;28832:18;;:::i;:::-;28818:34;28877:1;28874;28870:9;28862:17;;28694:191;;;;:::o;28891:176::-;28923:1;28940:20;28958:1;28940:20;:::i;:::-;28935:25;;28974:20;28992:1;28974:20;:::i;:::-;28969:25;;29013:1;29003:35;;29018:18;;:::i;:::-;29003:35;29059:1;29056;29052:9;29047:14;;28891:176;;;;:::o;29073:180::-;29121:77;29118:1;29111:88;29218:4;29215:1;29208:15;29242:4;29239:1;29232:15

Swarm Source

ipfs://066acc684edb15c559634ac638142e3c3db63aa7b5d2239e8af6e20ac154c356
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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