ETH Price: $3,487.19 (+3.44%)
Gas: 4 Gwei

Token

Fxckwon (FK)
 

Overview

Max Total Supply

441 FK

Holders

110

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 FK
0xd63a869444f5460eaaf1d91eb96f3410161f3885
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:
Fxckwon

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Fxckwon.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 Fxckwon is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public uriPrefix = "";
    string public uriExt = ".json";
    string public hiddenMetadataURI;

    uint256 public constant cost = 0.0059 ether;
    uint256 public fkMaxSupply = 1000;
    uint256 public fkFreeMaxSupply = 400;
    uint256 public fkFreeCurrentMinted = 0;

    uint256 public maxMintPerAddr = 5;
    uint256 public freeMaxMintPerAddr = 5;

    mapping(address => uint256) public freeMinted;
    mapping(address => uint256) public minted;

    bool public mintLive = true;
    bool public revealed = false;

    constructor(string memory _uriPrefix, string memory _hiddenMetadataURI)
        ERC721A("Fxckwon", "FK")
    {
        setUriPrefix(_uriPrefix);
        setHiddenMetaDataURI(_hiddenMetadataURI);
    }

    function setMintLive(bool _state) public onlyOwner {
        mintLive = _state;
    }

    function freeMint(uint256 _mintAmount) public payable {
        require(mintLive, "Mint is not activated.");
        require(
            _mintAmount > 0 && _mintAmount <= freeMaxMintPerAddr,
            "Invalid Mint Amount."
        );
        require(
            freeMinted[msg.sender] + _mintAmount <= freeMaxMintPerAddr,
            "Transaction limit reached."
        );
        require(
            fkFreeCurrentMinted + _mintAmount <= fkFreeMaxSupply,
            "Lack of free mint supply."
        );

        freeMinted[msg.sender] += _mintAmount;
        fkFreeCurrentMinted += _mintAmount;
        _safeMint(_msgSender(), _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable {
        require(mintLive, "Mint is not activated.");
        require(
            _mintAmount > 0 && _mintAmount <= maxMintPerAddr,
            "Invalid Mint Amount."
        );
        require(
            minted[msg.sender] + _mintAmount <= maxMintPerAddr,
            "Mint amount exceeded!"
        );
        require(msg.value == cost * _mintAmount, "Wrong amount of ETH.");
        require(
            totalSupply() + _mintAmount <= fkMaxSupply,
            "No available supply to mint."
        );

        minted[msg.sender] += _mintAmount;
        _safeMint(_msgSender(), _mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokensOwned = new uint256[](ownerTokenCount);
        uint256 thisTokenId = _startTokenId();
        uint256 tokensOwnedIndex = 0;
        address latestOwnerAddress;

        while (
            tokensOwnedIndex < ownerTokenCount && thisTokenId <= fkMaxSupply
        ) {
            TokenOwnership memory ownership = _ownerships[thisTokenId];

            if (!ownership.burned && ownership.addr != address(0)) {
                latestOwnerAddress = ownership.addr;
            }

            if (latestOwnerAddress == _owner) {
                tokensOwned[tokensOwnedIndex] = thisTokenId;

                tokensOwnedIndex++;
            }
            thisTokenId++;
        }
        return tokensOwned;
    }

    function setHiddenMetaDataURI(string memory _hiddenMetadataURI)
        public
        onlyOwner
    {
        hiddenMetadataURI = _hiddenMetadataURI;
    }

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

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

    function setUriExt(string memory _newUriExt) public onlyOwner {
        uriExt = _newUriExt;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token unavailable.");

        if (revealed == false) {
            return
                string(
                    abi.encodePacked(
                        hiddenMetadataURI,
                        Strings.toString(tokenId),
                        uriExt
                    )
                );
        }

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

    function setRevealedState(bool _status) public onlyOwner {
        revealed = _status;
    }

    function setFreeMaxMintPerTx(uint256 _freeMaxMintPerTx) public onlyOwner {
        freeMaxMintPerAddr = _freeMaxMintPerTx;
    }

    function setMcgFreeMaxSupply(uint256 _fkFreeMaxSupply) public onlyOwner {
        fkFreeMaxSupply = _fkFreeMaxSupply;
    }

    function setMaxMintPerTx(uint256 _maxMintPerTx) public onlyOwner {
        maxMintPerAddr = _maxMintPerTx;
    }

    function setMcgMaxSupply(uint256 _fkMaxSupply) public onlyOwner {
        fkMaxSupply = _fkMaxSupply;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool success, ) = payable(owner()).call{value: address(this).balance}(
            ""
        );
        require(success, "Withdraw not executed.");
    }
}

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":"_uriPrefix","type":"string"},{"internalType":"string","name":"_hiddenMetadataURI","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fkFreeCurrentMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fkFreeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fkMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintPerTx","type":"uint256"}],"name":"setFreeMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataURI","type":"string"}],"name":"setHiddenMetaDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fkFreeMaxSupply","type":"uint256"}],"name":"setMcgFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fkMaxSupply","type":"uint256"}],"name":"setMcgMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUriExt","type":"string"}],"name":"setUriExt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriExt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200045d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200045d565b506103e8600d55610190600e556000600f55600560105560056011556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550348015620000d857600080fd5b5060405162004ec538038062004ec58339818101604052810190620000fe9190620006aa565b6040518060400160405280600781526020017f4678636b776f6e000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464b0000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001829291906200045d565b5080600390805190602001906200019b9291906200045d565b50620001ac6200020660201b60201c565b6000819055505050620001d4620001c86200020f60201b60201c565b6200021760201b60201c565b6001600981905550620001ed82620002dd60201b60201c565b620001fe816200038860201b60201c565b505062000817565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ed6200020f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003136200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003639062000790565b60405180910390fd5b80600a9080519060200190620003849291906200045d565b5050565b620003986200020f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003be6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040e9062000790565b60405180910390fd5b80600c90805190602001906200042f9291906200045d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046b90620007e1565b90600052602060002090601f0160209004810192826200048f5760008555620004db565b82601f10620004aa57805160ff1916838001178555620004db565b82800160010185558215620004db579182015b82811115620004da578251825591602001919060010190620004bd565b5b509050620004ea9190620004ee565b5090565b5b8082111562000509576000816000905550600101620004ef565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000576826200052b565b810181811067ffffffffffffffff821117156200059857620005976200053c565b5b80604052505050565b6000620005ad6200050d565b9050620005bb82826200056b565b919050565b600067ffffffffffffffff821115620005de57620005dd6200053c565b5b620005e9826200052b565b9050602081019050919050565b60005b8381101562000616578082015181840152602081019050620005f9565b8381111562000626576000848401525b50505050565b6000620006436200063d84620005c0565b620005a1565b90508281526020810184848401111562000662576200066162000526565b5b6200066f848285620005f6565b509392505050565b600082601f8301126200068f576200068e62000521565b5b8151620006a18482602086016200062c565b91505092915050565b60008060408385031215620006c457620006c362000517565b5b600083015167ffffffffffffffff811115620006e557620006e46200051c565b5b620006f38582860162000677565b925050602083015167ffffffffffffffff8111156200071757620007166200051c565b5b620007258582860162000677565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007786020836200072f565b9150620007858262000740565b602082019050919050565b60006020820190508181036000830152620007ab8162000769565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007fa57607f821691505b60208210811415620008115762000810620007b2565b5b50919050565b61469e80620008276000396000f3fe60806040526004361061025c5760003560e01c8063708226df11610144578063b88d4fde116100b6578063cdca91701161007a578063cdca9170146108ca578063e8656fcc146108f3578063e985e9c51461091e578063f2fde38b1461095b578063f930910714610984578063fce237df146109af5761025c565b8063b88d4fde146107e3578063ba9e12f71461080c578063bb3eeace14610837578063c1dffe3214610862578063c87b56dd1461088d5761025c565b80637c928fe9116101085780637c928fe9146107035780637ec4a6591461071f5780638da5cb5b1461074857806395d89b4114610773578063a0712d681461079e578063a22cb465146107ba5761025c565b8063708226df1461063257806370a082311461065b578063715018a614610698578063727c9651146106af57806378bc0301146106da5761025c565b8063389fcf06116101dd578063505e0c21116101a1578063505e0c2114610524578063518302271461054d57806353ca912a14610578578063616cdb1e146105a157806362b99ad4146105ca5780636352211e146105f55761025c565b8063389fcf061461043f5780633ccfd60b1461047c57806342842e0e14610493578063438b6300146104bc5780634fb74ca0146104f95761025c565b806313faede61161022457806313faede61461035857806318160ddd146103835780631e7269c5146103ae57806323b872dd146103eb5780632a61fb29146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630b2e066a1461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061350c565b6109d8565b6040516102959190613554565b60405180910390f35b3480156102aa57600080fd5b506102b3610aba565b6040516102c09190613608565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613660565b610b4c565b6040516102fd91906136ce565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613715565b610bc8565b005b34801561033b57600080fd5b506103566004803603810190610351919061388a565b610ccd565b005b34801561036457600080fd5b5061036d610d63565b60405161037a91906138e2565b60405180910390f35b34801561038f57600080fd5b50610398610d6e565b6040516103a591906138e2565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906138fd565b610d85565b6040516103e291906138e2565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061392a565b610d9d565b005b34801561042057600080fd5b50610429610dad565b60405161043691906138e2565b60405180910390f35b34801561044b57600080fd5b50610466600480360381019061046191906138fd565b610db3565b60405161047391906138e2565b60405180910390f35b34801561048857600080fd5b50610491610dcb565b005b34801561049f57600080fd5b506104ba60048036038101906104b5919061392a565b610f53565b005b3480156104c857600080fd5b506104e360048036038101906104de91906138fd565b610f73565b6040516104f09190613a3b565b60405180910390f35b34801561050557600080fd5b5061050e61118e565b60405161051b91906138e2565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613660565b611194565b005b34801561055957600080fd5b5061056261121a565b60405161056f9190613554565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613a89565b61122d565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613660565b6112c6565b005b3480156105d657600080fd5b506105df61134c565b6040516105ec9190613608565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613660565b6113da565b60405161062991906136ce565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613660565b6113f0565b005b34801561066757600080fd5b50610682600480360381019061067d91906138fd565b611476565b60405161068f91906138e2565b60405180910390f35b3480156106a457600080fd5b506106ad611546565b005b3480156106bb57600080fd5b506106c46115ce565b6040516106d191906138e2565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061388a565b6115d4565b005b61071d60048036038101906107189190613660565b61166a565b005b34801561072b57600080fd5b506107466004803603810190610741919061388a565b61186e565b005b34801561075457600080fd5b5061075d611904565b60405161076a91906136ce565b60405180910390f35b34801561077f57600080fd5b5061078861192e565b6040516107959190613608565b60405180910390f35b6107b860048036038101906107b39190613660565b6119c0565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613ab6565b611c04565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613b97565b611d7c565b005b34801561081857600080fd5b50610821611df4565b60405161082e9190613608565b60405180910390f35b34801561084357600080fd5b5061084c611e82565b6040516108599190613608565b60405180910390f35b34801561086e57600080fd5b50610877611f10565b60405161088491906138e2565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613660565b611f16565b6040516108c19190613608565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613660565b612012565b005b3480156108ff57600080fd5b50610908612098565b6040516109159190613554565b60405180910390f35b34801561092a57600080fd5b5061094560048036038101906109409190613c1a565b6120ab565b6040516109529190613554565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d91906138fd565b61213f565b005b34801561099057600080fd5b50610999612237565b6040516109a691906138e2565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613a89565b61223d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab35750610ab2826122d6565b5b9050919050565b606060028054610ac990613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054610af590613c89565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000610b5782612340565b610b8d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd3826113da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5a61238e565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd57610c8681610c8161238e565b6120ab565b610cbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cc8838383612396565b505050565b610cd561238e565b73ffffffffffffffffffffffffffffffffffffffff16610cf3611904565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613d07565b60405180910390fd5b80600b9080519060200190610d5f9291906133ba565b5050565b6614f604cc2cc00081565b6000610d78612448565b6001546000540303905090565b60136020528060005260406000206000915090505481565b610da8838383612451565b505050565b600d5481565b60126020528060005260406000206000915090505481565b610dd361238e565b73ffffffffffffffffffffffffffffffffffffffff16610df1611904565b73ffffffffffffffffffffffffffffffffffffffff1614610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90613d07565b60405180910390fd5b60026009541415610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613d73565b60405180910390fd5b60026009819055506000610e9f611904565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ec290613dc4565b60006040518083038185875af1925050503d8060008114610eff576040519150601f19603f3d011682016040523d82523d6000602084013e610f04565b606091505b5050905080610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613e25565b60405180910390fd5b506001600981905550565b610f6e83838360405180602001604052806000815250611d7c565b505050565b60606000610f8083611476565b905060008167ffffffffffffffff811115610f9e57610f9d61375f565b5b604051908082528060200260200182016040528015610fcc5781602001602082028036833780820191505090505b5090506000610fd9612448565b90506000805b8482108015610ff05750600d548311155b15611181576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156110fd5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561110a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116d578385848151811061115257611151613e45565b5b602002602001018181525050828061116990613ea3565b9350505b838061117890613ea3565b94505050610fdf565b8395505050505050919050565b60115481565b61119c61238e565b73ffffffffffffffffffffffffffffffffffffffff166111ba611904565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613d07565b60405180910390fd5b80600e8190555050565b601460019054906101000a900460ff1681565b61123561238e565b73ffffffffffffffffffffffffffffffffffffffff16611253611904565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090613d07565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6112ce61238e565b73ffffffffffffffffffffffffffffffffffffffff166112ec611904565b73ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613d07565b60405180910390fd5b8060108190555050565b600a805461135990613c89565b80601f016020809104026020016040519081016040528092919081815260200182805461138590613c89565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b505050505081565b60006113e582612907565b600001519050919050565b6113f861238e565b73ffffffffffffffffffffffffffffffffffffffff16611416611904565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613d07565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61154e61238e565b73ffffffffffffffffffffffffffffffffffffffff1661156c611904565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613d07565b60405180910390fd5b6115cc6000612b92565b565b600e5481565b6115dc61238e565b73ffffffffffffffffffffffffffffffffffffffff166115fa611904565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613d07565b60405180910390fd5b80600c90805190602001906116669291906133ba565b5050565b601460009054906101000a900460ff166116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613f38565b60405180910390fd5b6000811180156116cb57506011548111155b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613fa4565b60405180910390fd5b60115481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117589190613fc4565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614066565b60405180910390fd5b600e5481600f546117aa9190613fc4565b11156117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906140d2565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183a9190613fc4565b9250508190555080600f60008282546118539190613fc4565b9250508190555061186b61186561238e565b82612c58565b50565b61187661238e565b73ffffffffffffffffffffffffffffffffffffffff16611894611904565b73ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613d07565b60405180910390fd5b80600a90805190602001906119009291906133ba565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461193d90613c89565b80601f016020809104026020016040519081016040528092919081815260200182805461196990613c89565b80156119b65780601f1061198b576101008083540402835291602001916119b6565b820191906000526020600020905b81548152906001019060200180831161199957829003601f168201915b5050505050905090565b601460009054906101000a900460ff16611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613f38565b60405180910390fd5b600081118015611a2157506010548111155b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613fa4565b60405180910390fd5b60105481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aae9190613fc4565b1115611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae69061413e565b60405180910390fd5b806614f604cc2cc000611b02919061415e565b3414611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614204565b60405180910390fd5b600d5481611b4f610d6e565b611b599190613fc4565b1115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614270565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be99190613fc4565b92505081905550611c01611bfb61238e565b82612c58565b50565b611c0c61238e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c71576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c7e61238e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2b61238e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d709190613554565b60405180910390a35050565b611d87848484612451565b611da68373ffffffffffffffffffffffffffffffffffffffff16612c76565b15611dee57611db784848484612c99565b611ded576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c8054611e0190613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2d90613c89565b8015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b505050505081565b600b8054611e8f90613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90613c89565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b505050505081565b60105481565b6060611f2182612340565b611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906142dc565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611fb157600c611f8783612df9565b600b604051602001611f9b939291906143cc565b604051602081830303815290604052905061200d565b6000611fbb612f5a565b90506000815111611fdb5760405180602001604052806000815250612009565b80611fe584612df9565b600b604051602001611ff9939291906143fd565b6040516020818303038152906040525b9150505b919050565b61201a61238e565b73ffffffffffffffffffffffffffffffffffffffff16612038611904565b73ffffffffffffffffffffffffffffffffffffffff161461208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613d07565b60405180910390fd5b8060118190555050565b601460009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214761238e565b73ffffffffffffffffffffffffffffffffffffffff16612165611904565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290613d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561222b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612222906144a0565b60405180910390fd5b61223481612b92565b50565b600f5481565b61224561238e565b73ffffffffffffffffffffffffffffffffffffffff16612263611904565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613d07565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161234b612448565b1115801561235a575060005482105b8015612387575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061245c82612907565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124e861238e565b73ffffffffffffffffffffffffffffffffffffffff16148061251757506125168561251161238e565b6120ab565b5b8061255c575061252561238e565b73ffffffffffffffffffffffffffffffffffffffff1661254484610b4c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612595576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126098585856001612fec565b61261560008487612396565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561289557600054821461289457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129008585856001612ff2565b5050505050565b61290f613440565b60008290508061291d612448565b11612b5b57600054811015612b5a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b5857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a3c578092505050612b8d565b5b600115612b5757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b52578092505050612b8d565b612a3d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c72828260405180602001604052806000815250612ff8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cbf61238e565b8786866040518563ffffffff1660e01b8152600401612ce19493929190614515565b602060405180830381600087803b158015612cfb57600080fd5b505af1925050508015612d2c57506040513d601f19601f82011682018060405250810190612d299190614576565b60015b612da6573d8060008114612d5c576040519150601f19603f3d011682016040523d82523d6000602084013e612d61565b606091505b50600081511415612d9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612e41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f55565b600082905060005b60008214612e73578080612e5c90613ea3565b915050600a82612e6c91906145d2565b9150612e49565b60008167ffffffffffffffff811115612e8f57612e8e61375f565b5b6040519080825280601f01601f191660200182016040528015612ec15781602001600182028036833780820191505090505b5090505b60008514612f4e57600182612eda9190614603565b9150600a85612ee99190614637565b6030612ef59190613fc4565b60f81b818381518110612f0b57612f0a613e45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f4791906145d2565b9450612ec5565b8093505050505b919050565b6060600a8054612f6990613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9590613c89565b8015612fe25780601f10612fb757610100808354040283529160200191612fe2565b820191906000526020600020905b815481529060010190602001808311612fc557829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613065576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156130a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ad6000858386612fec565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061326e8673ffffffffffffffffffffffffffffffffffffffff16612c76565b15613333575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132e36000878480600101955087612c99565b613319576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061327457826000541461332e57600080fd5b61339e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613334575b8160008190555050506133b46000858386612ff2565b50505050565b8280546133c690613c89565b90600052602060002090601f0160209004810192826133e8576000855561342f565b82601f1061340157805160ff191683800117855561342f565b8280016001018555821561342f579182015b8281111561342e578251825591602001919060010190613413565b5b50905061343c9190613483565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561349c576000816000905550600101613484565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134e9816134b4565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600060208284031215613522576135216134aa565b5b6000613530848285016134f7565b91505092915050565b60008115159050919050565b61354e81613539565b82525050565b60006020820190506135696000830184613545565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a957808201518184015260208101905061358e565b838111156135b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006135da8261356f565b6135e4818561357a565b93506135f481856020860161358b565b6135fd816135be565b840191505092915050565b6000602082019050818103600083015261362281846135cf565b905092915050565b6000819050919050565b61363d8161362a565b811461364857600080fd5b50565b60008135905061365a81613634565b92915050565b600060208284031215613676576136756134aa565b5b60006136848482850161364b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b88261368d565b9050919050565b6136c8816136ad565b82525050565b60006020820190506136e360008301846136bf565b92915050565b6136f2816136ad565b81146136fd57600080fd5b50565b60008135905061370f816136e9565b92915050565b6000806040838503121561372c5761372b6134aa565b5b600061373a85828601613700565b925050602061374b8582860161364b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613797826135be565b810181811067ffffffffffffffff821117156137b6576137b561375f565b5b80604052505050565b60006137c96134a0565b90506137d5828261378e565b919050565b600067ffffffffffffffff8211156137f5576137f461375f565b5b6137fe826135be565b9050602081019050919050565b82818337600083830152505050565b600061382d613828846137da565b6137bf565b9050828152602081018484840111156138495761384861375a565b5b61385484828561380b565b509392505050565b600082601f83011261387157613870613755565b5b813561388184826020860161381a565b91505092915050565b6000602082840312156138a05761389f6134aa565b5b600082013567ffffffffffffffff8111156138be576138bd6134af565b5b6138ca8482850161385c565b91505092915050565b6138dc8161362a565b82525050565b60006020820190506138f760008301846138d3565b92915050565b600060208284031215613913576139126134aa565b5b600061392184828501613700565b91505092915050565b600080600060608486031215613943576139426134aa565b5b600061395186828701613700565b935050602061396286828701613700565b92505060406139738682870161364b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139b28161362a565b82525050565b60006139c483836139a9565b60208301905092915050565b6000602082019050919050565b60006139e88261397d565b6139f28185613988565b93506139fd83613999565b8060005b83811015613a2e578151613a1588826139b8565b9750613a20836139d0565b925050600181019050613a01565b5085935050505092915050565b60006020820190508181036000830152613a5581846139dd565b905092915050565b613a6681613539565b8114613a7157600080fd5b50565b600081359050613a8381613a5d565b92915050565b600060208284031215613a9f57613a9e6134aa565b5b6000613aad84828501613a74565b91505092915050565b60008060408385031215613acd57613acc6134aa565b5b6000613adb85828601613700565b9250506020613aec85828601613a74565b9150509250929050565b600067ffffffffffffffff821115613b1157613b1061375f565b5b613b1a826135be565b9050602081019050919050565b6000613b3a613b3584613af6565b6137bf565b905082815260208101848484011115613b5657613b5561375a565b5b613b6184828561380b565b509392505050565b600082601f830112613b7e57613b7d613755565b5b8135613b8e848260208601613b27565b91505092915050565b60008060008060808587031215613bb157613bb06134aa565b5b6000613bbf87828801613700565b9450506020613bd087828801613700565b9350506040613be18782880161364b565b925050606085013567ffffffffffffffff811115613c0257613c016134af565b5b613c0e87828801613b69565b91505092959194509250565b60008060408385031215613c3157613c306134aa565b5b6000613c3f85828601613700565b9250506020613c5085828601613700565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ca157607f821691505b60208210811415613cb557613cb4613c5a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf160208361357a565b9150613cfc82613cbb565b602082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d5d601f8361357a565b9150613d6882613d27565b602082019050919050565b60006020820190508181036000830152613d8c81613d50565b9050919050565b600081905092915050565b50565b6000613dae600083613d93565b9150613db982613d9e565b600082019050919050565b6000613dcf82613da1565b9150819050919050565b7f5769746864726177206e6f742065786563757465642e00000000000000000000600082015250565b6000613e0f60168361357a565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eae8261362a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee157613ee0613e74565b5b600182019050919050565b7f4d696e74206973206e6f74206163746976617465642e00000000000000000000600082015250565b6000613f2260168361357a565b9150613f2d82613eec565b602082019050919050565b60006020820190508181036000830152613f5181613f15565b9050919050565b7f496e76616c6964204d696e7420416d6f756e742e000000000000000000000000600082015250565b6000613f8e60148361357a565b9150613f9982613f58565b602082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b6000613fcf8261362a565b9150613fda8361362a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400f5761400e613e74565b5b828201905092915050565b7f5472616e73616374696f6e206c696d697420726561636865642e000000000000600082015250565b6000614050601a8361357a565b915061405b8261401a565b602082019050919050565b6000602082019050818103600083015261407f81614043565b9050919050565b7f4c61636b206f662066726565206d696e7420737570706c792e00000000000000600082015250565b60006140bc60198361357a565b91506140c782614086565b602082019050919050565b600060208201905081810360008301526140eb816140af565b9050919050565b7f4d696e7420616d6f756e74206578636565646564210000000000000000000000600082015250565b600061412860158361357a565b9150614133826140f2565b602082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b60006141698261362a565b91506141748361362a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141ad576141ac613e74565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f66204554482e000000000000000000000000600082015250565b60006141ee60148361357a565b91506141f9826141b8565b602082019050919050565b6000602082019050818103600083015261421d816141e1565b9050919050565b7f4e6f20617661696c61626c6520737570706c7920746f206d696e742e00000000600082015250565b600061425a601c8361357a565b915061426582614224565b602082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f546f6b656e20756e617661696c61626c652e0000000000000000000000000000600082015250565b60006142c660128361357a565b91506142d182614290565b602082019050919050565b600060208201905081810360008301526142f5816142b9565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461432981613c89565b61433381866142fc565b9450600182166000811461434e576001811461435f57614392565b60ff19831686528186019350614392565b61436885614307565b60005b8381101561438a5781548189015260018201915060208101905061436b565b838801955050505b50505092915050565b60006143a68261356f565b6143b081856142fc565b93506143c081856020860161358b565b80840191505092915050565b60006143d8828661431c565b91506143e4828561439b565b91506143f0828461431c565b9150819050949350505050565b6000614409828661439b565b9150614415828561439b565b9150614421828461431c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061448a60268361357a565b91506144958261442e565b604082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144e7826144c0565b6144f181856144cb565b935061450181856020860161358b565b61450a816135be565b840191505092915050565b600060808201905061452a60008301876136bf565b61453760208301866136bf565b61454460408301856138d3565b818103606083015261455681846144dc565b905095945050505050565b600081519050614570816134e0565b92915050565b60006020828403121561458c5761458b6134aa565b5b600061459a84828501614561565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145dd8261362a565b91506145e88361362a565b9250826145f8576145f76145a3565b5b828204905092915050565b600061460e8261362a565b91506146198361362a565b92508282101561462c5761462b613e74565b5b828203905092915050565b60006146428261362a565b915061464d8361362a565b92508261465d5761465c6145a3565b5b82820690509291505056fea26469706673582212201049c6c4a9cda24fc4b8f7c1764be401896e8f5a39f76f485c96fd9b9458746264736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a466d746b574767344c5a557356575961774d4769312f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a466d746b574767344c5a557356575961774d4769312f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063708226df11610144578063b88d4fde116100b6578063cdca91701161007a578063cdca9170146108ca578063e8656fcc146108f3578063e985e9c51461091e578063f2fde38b1461095b578063f930910714610984578063fce237df146109af5761025c565b8063b88d4fde146107e3578063ba9e12f71461080c578063bb3eeace14610837578063c1dffe3214610862578063c87b56dd1461088d5761025c565b80637c928fe9116101085780637c928fe9146107035780637ec4a6591461071f5780638da5cb5b1461074857806395d89b4114610773578063a0712d681461079e578063a22cb465146107ba5761025c565b8063708226df1461063257806370a082311461065b578063715018a614610698578063727c9651146106af57806378bc0301146106da5761025c565b8063389fcf06116101dd578063505e0c21116101a1578063505e0c2114610524578063518302271461054d57806353ca912a14610578578063616cdb1e146105a157806362b99ad4146105ca5780636352211e146105f55761025c565b8063389fcf061461043f5780633ccfd60b1461047c57806342842e0e14610493578063438b6300146104bc5780634fb74ca0146104f95761025c565b806313faede61161022457806313faede61461035857806318160ddd146103835780631e7269c5146103ae57806323b872dd146103eb5780632a61fb29146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630b2e066a1461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061350c565b6109d8565b6040516102959190613554565b60405180910390f35b3480156102aa57600080fd5b506102b3610aba565b6040516102c09190613608565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613660565b610b4c565b6040516102fd91906136ce565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613715565b610bc8565b005b34801561033b57600080fd5b506103566004803603810190610351919061388a565b610ccd565b005b34801561036457600080fd5b5061036d610d63565b60405161037a91906138e2565b60405180910390f35b34801561038f57600080fd5b50610398610d6e565b6040516103a591906138e2565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906138fd565b610d85565b6040516103e291906138e2565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061392a565b610d9d565b005b34801561042057600080fd5b50610429610dad565b60405161043691906138e2565b60405180910390f35b34801561044b57600080fd5b50610466600480360381019061046191906138fd565b610db3565b60405161047391906138e2565b60405180910390f35b34801561048857600080fd5b50610491610dcb565b005b34801561049f57600080fd5b506104ba60048036038101906104b5919061392a565b610f53565b005b3480156104c857600080fd5b506104e360048036038101906104de91906138fd565b610f73565b6040516104f09190613a3b565b60405180910390f35b34801561050557600080fd5b5061050e61118e565b60405161051b91906138e2565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613660565b611194565b005b34801561055957600080fd5b5061056261121a565b60405161056f9190613554565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613a89565b61122d565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613660565b6112c6565b005b3480156105d657600080fd5b506105df61134c565b6040516105ec9190613608565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613660565b6113da565b60405161062991906136ce565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613660565b6113f0565b005b34801561066757600080fd5b50610682600480360381019061067d91906138fd565b611476565b60405161068f91906138e2565b60405180910390f35b3480156106a457600080fd5b506106ad611546565b005b3480156106bb57600080fd5b506106c46115ce565b6040516106d191906138e2565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061388a565b6115d4565b005b61071d60048036038101906107189190613660565b61166a565b005b34801561072b57600080fd5b506107466004803603810190610741919061388a565b61186e565b005b34801561075457600080fd5b5061075d611904565b60405161076a91906136ce565b60405180910390f35b34801561077f57600080fd5b5061078861192e565b6040516107959190613608565b60405180910390f35b6107b860048036038101906107b39190613660565b6119c0565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613ab6565b611c04565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613b97565b611d7c565b005b34801561081857600080fd5b50610821611df4565b60405161082e9190613608565b60405180910390f35b34801561084357600080fd5b5061084c611e82565b6040516108599190613608565b60405180910390f35b34801561086e57600080fd5b50610877611f10565b60405161088491906138e2565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613660565b611f16565b6040516108c19190613608565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613660565b612012565b005b3480156108ff57600080fd5b50610908612098565b6040516109159190613554565b60405180910390f35b34801561092a57600080fd5b5061094560048036038101906109409190613c1a565b6120ab565b6040516109529190613554565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d91906138fd565b61213f565b005b34801561099057600080fd5b50610999612237565b6040516109a691906138e2565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613a89565b61223d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab35750610ab2826122d6565b5b9050919050565b606060028054610ac990613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054610af590613c89565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000610b5782612340565b610b8d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd3826113da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5a61238e565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd57610c8681610c8161238e565b6120ab565b610cbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cc8838383612396565b505050565b610cd561238e565b73ffffffffffffffffffffffffffffffffffffffff16610cf3611904565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613d07565b60405180910390fd5b80600b9080519060200190610d5f9291906133ba565b5050565b6614f604cc2cc00081565b6000610d78612448565b6001546000540303905090565b60136020528060005260406000206000915090505481565b610da8838383612451565b505050565b600d5481565b60126020528060005260406000206000915090505481565b610dd361238e565b73ffffffffffffffffffffffffffffffffffffffff16610df1611904565b73ffffffffffffffffffffffffffffffffffffffff1614610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90613d07565b60405180910390fd5b60026009541415610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613d73565b60405180910390fd5b60026009819055506000610e9f611904565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ec290613dc4565b60006040518083038185875af1925050503d8060008114610eff576040519150601f19603f3d011682016040523d82523d6000602084013e610f04565b606091505b5050905080610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613e25565b60405180910390fd5b506001600981905550565b610f6e83838360405180602001604052806000815250611d7c565b505050565b60606000610f8083611476565b905060008167ffffffffffffffff811115610f9e57610f9d61375f565b5b604051908082528060200260200182016040528015610fcc5781602001602082028036833780820191505090505b5090506000610fd9612448565b90506000805b8482108015610ff05750600d548311155b15611181576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156110fd5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561110a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116d578385848151811061115257611151613e45565b5b602002602001018181525050828061116990613ea3565b9350505b838061117890613ea3565b94505050610fdf565b8395505050505050919050565b60115481565b61119c61238e565b73ffffffffffffffffffffffffffffffffffffffff166111ba611904565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613d07565b60405180910390fd5b80600e8190555050565b601460019054906101000a900460ff1681565b61123561238e565b73ffffffffffffffffffffffffffffffffffffffff16611253611904565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090613d07565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6112ce61238e565b73ffffffffffffffffffffffffffffffffffffffff166112ec611904565b73ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613d07565b60405180910390fd5b8060108190555050565b600a805461135990613c89565b80601f016020809104026020016040519081016040528092919081815260200182805461138590613c89565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b505050505081565b60006113e582612907565b600001519050919050565b6113f861238e565b73ffffffffffffffffffffffffffffffffffffffff16611416611904565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613d07565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61154e61238e565b73ffffffffffffffffffffffffffffffffffffffff1661156c611904565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613d07565b60405180910390fd5b6115cc6000612b92565b565b600e5481565b6115dc61238e565b73ffffffffffffffffffffffffffffffffffffffff166115fa611904565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613d07565b60405180910390fd5b80600c90805190602001906116669291906133ba565b5050565b601460009054906101000a900460ff166116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613f38565b60405180910390fd5b6000811180156116cb57506011548111155b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613fa4565b60405180910390fd5b60115481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117589190613fc4565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614066565b60405180910390fd5b600e5481600f546117aa9190613fc4565b11156117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906140d2565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183a9190613fc4565b9250508190555080600f60008282546118539190613fc4565b9250508190555061186b61186561238e565b82612c58565b50565b61187661238e565b73ffffffffffffffffffffffffffffffffffffffff16611894611904565b73ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613d07565b60405180910390fd5b80600a90805190602001906119009291906133ba565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461193d90613c89565b80601f016020809104026020016040519081016040528092919081815260200182805461196990613c89565b80156119b65780601f1061198b576101008083540402835291602001916119b6565b820191906000526020600020905b81548152906001019060200180831161199957829003601f168201915b5050505050905090565b601460009054906101000a900460ff16611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613f38565b60405180910390fd5b600081118015611a2157506010548111155b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613fa4565b60405180910390fd5b60105481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aae9190613fc4565b1115611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae69061413e565b60405180910390fd5b806614f604cc2cc000611b02919061415e565b3414611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614204565b60405180910390fd5b600d5481611b4f610d6e565b611b599190613fc4565b1115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614270565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be99190613fc4565b92505081905550611c01611bfb61238e565b82612c58565b50565b611c0c61238e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c71576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c7e61238e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2b61238e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d709190613554565b60405180910390a35050565b611d87848484612451565b611da68373ffffffffffffffffffffffffffffffffffffffff16612c76565b15611dee57611db784848484612c99565b611ded576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c8054611e0190613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2d90613c89565b8015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b505050505081565b600b8054611e8f90613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90613c89565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b505050505081565b60105481565b6060611f2182612340565b611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906142dc565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611fb157600c611f8783612df9565b600b604051602001611f9b939291906143cc565b604051602081830303815290604052905061200d565b6000611fbb612f5a565b90506000815111611fdb5760405180602001604052806000815250612009565b80611fe584612df9565b600b604051602001611ff9939291906143fd565b6040516020818303038152906040525b9150505b919050565b61201a61238e565b73ffffffffffffffffffffffffffffffffffffffff16612038611904565b73ffffffffffffffffffffffffffffffffffffffff161461208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613d07565b60405180910390fd5b8060118190555050565b601460009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214761238e565b73ffffffffffffffffffffffffffffffffffffffff16612165611904565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290613d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561222b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612222906144a0565b60405180910390fd5b61223481612b92565b50565b600f5481565b61224561238e565b73ffffffffffffffffffffffffffffffffffffffff16612263611904565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613d07565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161234b612448565b1115801561235a575060005482105b8015612387575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061245c82612907565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124e861238e565b73ffffffffffffffffffffffffffffffffffffffff16148061251757506125168561251161238e565b6120ab565b5b8061255c575061252561238e565b73ffffffffffffffffffffffffffffffffffffffff1661254484610b4c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612595576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126098585856001612fec565b61261560008487612396565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561289557600054821461289457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129008585856001612ff2565b5050505050565b61290f613440565b60008290508061291d612448565b11612b5b57600054811015612b5a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b5857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a3c578092505050612b8d565b5b600115612b5757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b52578092505050612b8d565b612a3d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c72828260405180602001604052806000815250612ff8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cbf61238e565b8786866040518563ffffffff1660e01b8152600401612ce19493929190614515565b602060405180830381600087803b158015612cfb57600080fd5b505af1925050508015612d2c57506040513d601f19601f82011682018060405250810190612d299190614576565b60015b612da6573d8060008114612d5c576040519150601f19603f3d011682016040523d82523d6000602084013e612d61565b606091505b50600081511415612d9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612e41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f55565b600082905060005b60008214612e73578080612e5c90613ea3565b915050600a82612e6c91906145d2565b9150612e49565b60008167ffffffffffffffff811115612e8f57612e8e61375f565b5b6040519080825280601f01601f191660200182016040528015612ec15781602001600182028036833780820191505090505b5090505b60008514612f4e57600182612eda9190614603565b9150600a85612ee99190614637565b6030612ef59190613fc4565b60f81b818381518110612f0b57612f0a613e45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f4791906145d2565b9450612ec5565b8093505050505b919050565b6060600a8054612f6990613c89565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9590613c89565b8015612fe25780601f10612fb757610100808354040283529160200191612fe2565b820191906000526020600020905b815481529060010190602001808311612fc557829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613065576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156130a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ad6000858386612fec565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061326e8673ffffffffffffffffffffffffffffffffffffffff16612c76565b15613333575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132e36000878480600101955087612c99565b613319576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061327457826000541461332e57600080fd5b61339e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613334575b8160008190555050506133b46000858386612ff2565b50505050565b8280546133c690613c89565b90600052602060002090601f0160209004810192826133e8576000855561342f565b82601f1061340157805160ff191683800117855561342f565b8280016001018555821561342f579182015b8281111561342e578251825591602001919060010190613413565b5b50905061343c9190613483565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561349c576000816000905550600101613484565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134e9816134b4565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600060208284031215613522576135216134aa565b5b6000613530848285016134f7565b91505092915050565b60008115159050919050565b61354e81613539565b82525050565b60006020820190506135696000830184613545565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a957808201518184015260208101905061358e565b838111156135b8576000848401525b50505050565b6000601f19601f8301169050919050565b60006135da8261356f565b6135e4818561357a565b93506135f481856020860161358b565b6135fd816135be565b840191505092915050565b6000602082019050818103600083015261362281846135cf565b905092915050565b6000819050919050565b61363d8161362a565b811461364857600080fd5b50565b60008135905061365a81613634565b92915050565b600060208284031215613676576136756134aa565b5b60006136848482850161364b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b88261368d565b9050919050565b6136c8816136ad565b82525050565b60006020820190506136e360008301846136bf565b92915050565b6136f2816136ad565b81146136fd57600080fd5b50565b60008135905061370f816136e9565b92915050565b6000806040838503121561372c5761372b6134aa565b5b600061373a85828601613700565b925050602061374b8582860161364b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613797826135be565b810181811067ffffffffffffffff821117156137b6576137b561375f565b5b80604052505050565b60006137c96134a0565b90506137d5828261378e565b919050565b600067ffffffffffffffff8211156137f5576137f461375f565b5b6137fe826135be565b9050602081019050919050565b82818337600083830152505050565b600061382d613828846137da565b6137bf565b9050828152602081018484840111156138495761384861375a565b5b61385484828561380b565b509392505050565b600082601f83011261387157613870613755565b5b813561388184826020860161381a565b91505092915050565b6000602082840312156138a05761389f6134aa565b5b600082013567ffffffffffffffff8111156138be576138bd6134af565b5b6138ca8482850161385c565b91505092915050565b6138dc8161362a565b82525050565b60006020820190506138f760008301846138d3565b92915050565b600060208284031215613913576139126134aa565b5b600061392184828501613700565b91505092915050565b600080600060608486031215613943576139426134aa565b5b600061395186828701613700565b935050602061396286828701613700565b92505060406139738682870161364b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139b28161362a565b82525050565b60006139c483836139a9565b60208301905092915050565b6000602082019050919050565b60006139e88261397d565b6139f28185613988565b93506139fd83613999565b8060005b83811015613a2e578151613a1588826139b8565b9750613a20836139d0565b925050600181019050613a01565b5085935050505092915050565b60006020820190508181036000830152613a5581846139dd565b905092915050565b613a6681613539565b8114613a7157600080fd5b50565b600081359050613a8381613a5d565b92915050565b600060208284031215613a9f57613a9e6134aa565b5b6000613aad84828501613a74565b91505092915050565b60008060408385031215613acd57613acc6134aa565b5b6000613adb85828601613700565b9250506020613aec85828601613a74565b9150509250929050565b600067ffffffffffffffff821115613b1157613b1061375f565b5b613b1a826135be565b9050602081019050919050565b6000613b3a613b3584613af6565b6137bf565b905082815260208101848484011115613b5657613b5561375a565b5b613b6184828561380b565b509392505050565b600082601f830112613b7e57613b7d613755565b5b8135613b8e848260208601613b27565b91505092915050565b60008060008060808587031215613bb157613bb06134aa565b5b6000613bbf87828801613700565b9450506020613bd087828801613700565b9350506040613be18782880161364b565b925050606085013567ffffffffffffffff811115613c0257613c016134af565b5b613c0e87828801613b69565b91505092959194509250565b60008060408385031215613c3157613c306134aa565b5b6000613c3f85828601613700565b9250506020613c5085828601613700565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ca157607f821691505b60208210811415613cb557613cb4613c5a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf160208361357a565b9150613cfc82613cbb565b602082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d5d601f8361357a565b9150613d6882613d27565b602082019050919050565b60006020820190508181036000830152613d8c81613d50565b9050919050565b600081905092915050565b50565b6000613dae600083613d93565b9150613db982613d9e565b600082019050919050565b6000613dcf82613da1565b9150819050919050565b7f5769746864726177206e6f742065786563757465642e00000000000000000000600082015250565b6000613e0f60168361357a565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eae8261362a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee157613ee0613e74565b5b600182019050919050565b7f4d696e74206973206e6f74206163746976617465642e00000000000000000000600082015250565b6000613f2260168361357a565b9150613f2d82613eec565b602082019050919050565b60006020820190508181036000830152613f5181613f15565b9050919050565b7f496e76616c6964204d696e7420416d6f756e742e000000000000000000000000600082015250565b6000613f8e60148361357a565b9150613f9982613f58565b602082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b6000613fcf8261362a565b9150613fda8361362a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400f5761400e613e74565b5b828201905092915050565b7f5472616e73616374696f6e206c696d697420726561636865642e000000000000600082015250565b6000614050601a8361357a565b915061405b8261401a565b602082019050919050565b6000602082019050818103600083015261407f81614043565b9050919050565b7f4c61636b206f662066726565206d696e7420737570706c792e00000000000000600082015250565b60006140bc60198361357a565b91506140c782614086565b602082019050919050565b600060208201905081810360008301526140eb816140af565b9050919050565b7f4d696e7420616d6f756e74206578636565646564210000000000000000000000600082015250565b600061412860158361357a565b9150614133826140f2565b602082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b60006141698261362a565b91506141748361362a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141ad576141ac613e74565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f66204554482e000000000000000000000000600082015250565b60006141ee60148361357a565b91506141f9826141b8565b602082019050919050565b6000602082019050818103600083015261421d816141e1565b9050919050565b7f4e6f20617661696c61626c6520737570706c7920746f206d696e742e00000000600082015250565b600061425a601c8361357a565b915061426582614224565b602082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f546f6b656e20756e617661696c61626c652e0000000000000000000000000000600082015250565b60006142c660128361357a565b91506142d182614290565b602082019050919050565b600060208201905081810360008301526142f5816142b9565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461432981613c89565b61433381866142fc565b9450600182166000811461434e576001811461435f57614392565b60ff19831686528186019350614392565b61436885614307565b60005b8381101561438a5781548189015260018201915060208101905061436b565b838801955050505b50505092915050565b60006143a68261356f565b6143b081856142fc565b93506143c081856020860161358b565b80840191505092915050565b60006143d8828661431c565b91506143e4828561439b565b91506143f0828461431c565b9150819050949350505050565b6000614409828661439b565b9150614415828561439b565b9150614421828461431c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061448a60268361357a565b91506144958261442e565b604082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144e7826144c0565b6144f181856144cb565b935061450181856020860161358b565b61450a816135be565b840191505092915050565b600060808201905061452a60008301876136bf565b61453760208301866136bf565b61454460408301856138d3565b818103606083015261455681846144dc565b905095945050505050565b600081519050614570816134e0565b92915050565b60006020828403121561458c5761458b6134aa565b5b600061459a84828501614561565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145dd8261362a565b91506145e88361362a565b9250826145f8576145f76145a3565b5b828204905092915050565b600061460e8261362a565b91506146198361362a565b92508282101561462c5761462b613e74565b5b828203905092915050565b60006146428261362a565b915061464d8361362a565b92508261465d5761465c6145a3565b5b82820690509291505056fea26469706673582212201049c6c4a9cda24fc4b8f7c1764be401896e8f5a39f76f485c96fd9b9458746264736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a466d746b574767344c5a557356575961774d4769312f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a466d746b574767344c5a557356575961774d4769312f00000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://QmZVayCFLDyEZm8THG9HNjsuJFmtkWGg4LZUsVWYawMGi1/
Arg [1] : _hiddenMetadataURI (string): ipfs://QmZVayCFLDyEZm8THG9HNjsuJFmtkWGg4LZUsVWYawMGi1/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a
Arg [4] : 466d746b574767344c5a557356575961774d4769312f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5a56617943464c4479455a6d3854484739484e6a73754a
Arg [7] : 466d746b574767344c5a557356575961774d4769312f00000000000000000000


Deployed Bytecode Sourcemap

221:5491:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6087:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7544:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7120:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3988:100:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;428:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2319:306:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:41:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8383:164:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;478:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;694:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5489:220;;;;;;;;;;;;;:::i;:::-;;8613:179:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2646:927:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;648:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5117:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;830:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1080:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;316:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5902:123:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5372:109:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3416:203:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;518:36:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3581:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1175:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3868:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:102:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1857:672:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7811:282:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8858:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;388:31:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;351:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;608:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4096:773;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4979:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;796:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8159:162:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;561:38:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4877:94;;;;;;;;;;;;;;;;;;;;;;;:::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;6087:98::-;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;3988:100:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4070:10:10::1;4061:6;:19;;;;;;;;;;;;:::i;:::-;;3988:100:::0;:::o;428:43::-;459:12;428:43;:::o;2319:306:11:-;2372:7;2593:15;:13;:15::i;:::-;2578:12;;2562:13;;:28;:46;2555:53;;2319:306;:::o;746:41:10:-;;;;;;;;;;;;;;;;;:::o;8383:164:11:-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;:::-;8383:164;;;:::o;478:33:10:-;;;;:::o;694:45::-;;;;;;;;;;;;;;;;;:::o;5489:220::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;5551:12:10::2;5577:7;:5;:7::i;:::-;5569:21;;5598;5569:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5550:98;;;5667:7;5659:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;5539:170;1701:1:1::1;2628:7;:22;;;;5489:220:10:o:0;8613:179:11:-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;:::-;8613:179;;;:::o;2646:927:10:-;2733:16;2767:23;2793:17;2803:6;2793:9;:17::i;:::-;2767:43;;2821:28;2866:15;2852:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2821:61;;2893:19;2915:15;:13;:15::i;:::-;2893:37;;2941:24;2980:26;3019:518;3059:15;3040:16;:34;:64;;;;;3093:11;;3078;:26;;3040:64;3019:518;;;3131:31;3165:11;:24;3177:11;3165:24;;;;;;;;;;;3131:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3211:9;:16;;;3210:17;:49;;;;;3257:1;3231:28;;:9;:14;;;:28;;;;3210:49;3206:125;;;3301:9;:14;;;3280:35;;3206:125;3373:6;3351:28;;:18;:28;;;3347:151;;;3432:11;3400;3412:16;3400:29;;;;;;;;:::i;:::-;;;;;;;:43;;;;;3464:18;;;;;:::i;:::-;;;;3347:151;3512:13;;;;;:::i;:::-;;;;3116:421;3019:518;;;3554:11;3547:18;;;;;;;2646:927;;;:::o;648:37::-;;;;:::o;5117:125::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5218:16:10::1;5200:15;:34;;;;5117:125:::0;:::o;830:28::-;;;;;;;;;;;;;:::o;1080:87::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1153:6:10::1;1142:8;;:17;;;;;;;;;;;;;;;;;;1080:87:::0;:::o;5250:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5343:13:10::1;5326:14;:30;;;;5250:114:::0;:::o;316:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5902:123:11:-;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;;5985:33;;5902:123;;;:::o;5372:109:10:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5461:12:10::1;5447:11;:26;;;;5372:109:::0;:::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;518:36:10:-;;;;:::o;3581:161::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3716:18:10::1;3696:17;:38;;;;;;;;;;;;:::i;:::-;;3581:161:::0;:::o;1175:674::-;1248:8;;;;;;;;;;;1240:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;1330:1;1316:11;:15;:52;;;;;1350:18;;1335:11;:33;;1316:52;1294:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;1489:18;;1474:11;1449:10;:22;1460:10;1449:22;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:58;;1427:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;1631:15;;1616:11;1594:19;;:33;;;;:::i;:::-;:52;;1572:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;1738:11;1712:10;:22;1723:10;1712:22;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;1783:11;1760:19;;:34;;;;;;;:::i;:::-;;;;;;;;1805:36;1815:12;:10;:12::i;:::-;1829:11;1805:9;:36::i;:::-;1175:674;:::o;3868:112::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3959:13:10::1;3947:9;:25;;;;;;;;;;;;:::i;:::-;;3868:112:::0;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;6249:102:11:-;6305:13;6337:7;6330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6249:102;:::o;1857:672:10:-;1926:8;;;;;;;;;;;1918:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1;1994:11;:15;:48;;;;;2028:14;;2013:11;:29;;1994:48;1972:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:14;;2144:11;2123:6;:18;2130:10;2123:18;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:50;;2101:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;2261:11;459:12;2254:18;;;;:::i;:::-;2241:9;:31;2233:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2361:11;;2346;2330:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;2308:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;2463:11;2441:6;:18;2448:10;2441:18;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;2485:36;2495:12;:10;:12::i;:::-;2509:11;2485:9;:36::i;:::-;1857:672;:::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;388:31:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;351:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;608:33::-;;;;:::o;4096:773::-;4214:13;4253:16;4261:7;4253;:16::i;:::-;4245:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;4321:5;4309:17;;:8;;;;;;;;;;;:17;;;4305:290;;;4439:17;4483:25;4500:7;4483:16;:25::i;:::-;4535:6;4396:168;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4343:240;;;;4305:290;4607:28;4638:10;:8;:10::i;:::-;4607:41;;4710:1;4685:14;4679:28;:32;:182;;;;;;;;;;;;;;;;;4777:14;4793:18;:7;:16;:18::i;:::-;4813:6;4760:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4679:182;4659:202;;;4096:773;;;;:::o;4979:130::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5084:17:10::1;5063:18;:38;;;;4979:130:::0;:::o;796:27::-;;;;;;;;;;;;;:::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;561:38:10:-;;;;:::o;4877:94::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4956:7:10::1;4945:8;;:18;;;;;;;;;;;;;;;;;;4877:94:::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;2537:101:10:-;2602:7;2629:1;2622:8;;2537:101;:::o;13520:2082:11:-;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;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;9715:102:11:-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;:::-;9715:102;;:::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;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;3750:110:10:-;3810:13;3843:9;3836:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3750:110;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:509::-;7113:6;7162:2;7150:9;7141:7;7137:23;7133:32;7130:119;;;7168:79;;:::i;:::-;7130:119;7316:1;7305:9;7301:17;7288:31;7346:18;7338:6;7335:30;7332:117;;;7368:79;;:::i;:::-;7332:117;7473:63;7528:7;7519:6;7508:9;7504:22;7473:63;:::i;:::-;7463:73;;7259:287;7044:509;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:329::-;7970:6;8019:2;8007:9;7998:7;7994:23;7990:32;7987:119;;;8025:79;;:::i;:::-;7987:119;8145:1;8170:53;8215:7;8206:6;8195:9;8191:22;8170:53;:::i;:::-;8160:63;;8116:117;7911:329;;;;:::o;8246:619::-;8323:6;8331;8339;8388:2;8376:9;8367:7;8363:23;8359:32;8356:119;;;8394:79;;:::i;:::-;8356:119;8514:1;8539:53;8584:7;8575:6;8564:9;8560:22;8539:53;:::i;:::-;8529:63;;8485:117;8641:2;8667:53;8712:7;8703:6;8692:9;8688:22;8667:53;:::i;:::-;8657:63;;8612:118;8769:2;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8740:118;8246:619;;;;;:::o;8871:114::-;8938:6;8972:5;8966:12;8956:22;;8871:114;;;:::o;8991:184::-;9090:11;9124:6;9119:3;9112:19;9164:4;9159:3;9155:14;9140:29;;8991:184;;;;:::o;9181:132::-;9248:4;9271:3;9263:11;;9301:4;9296:3;9292:14;9284:22;;9181:132;;;:::o;9319:108::-;9396:24;9414:5;9396:24;:::i;:::-;9391:3;9384:37;9319:108;;:::o;9433:179::-;9502:10;9523:46;9565:3;9557:6;9523:46;:::i;:::-;9601:4;9596:3;9592:14;9578:28;;9433:179;;;;:::o;9618:113::-;9688:4;9720;9715:3;9711:14;9703:22;;9618:113;;;:::o;9767:732::-;9886:3;9915:54;9963:5;9915:54;:::i;:::-;9985:86;10064:6;10059:3;9985:86;:::i;:::-;9978:93;;10095:56;10145:5;10095:56;:::i;:::-;10174:7;10205:1;10190:284;10215:6;10212:1;10209:13;10190:284;;;10291:6;10285:13;10318:63;10377:3;10362:13;10318:63;:::i;:::-;10311:70;;10404:60;10457:6;10404:60;:::i;:::-;10394:70;;10250:224;10237:1;10234;10230:9;10225:14;;10190:284;;;10194:14;10490:3;10483:10;;9891:608;;;9767:732;;;;:::o;10505:373::-;10648:4;10686:2;10675:9;10671:18;10663:26;;10735:9;10729:4;10725:20;10721:1;10710:9;10706:17;10699:47;10763:108;10866:4;10857:6;10763:108;:::i;:::-;10755:116;;10505:373;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:323::-;11201:6;11250:2;11238:9;11229:7;11225:23;11221:32;11218:119;;;11256:79;;:::i;:::-;11218:119;11376:1;11401:50;11443:7;11434:6;11423:9;11419:22;11401:50;:::i;:::-;11391:60;;11347:114;11145:323;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:180::-;14511:77;14508:1;14501:88;14608:4;14605:1;14598:15;14632:4;14629:1;14622:15;14649:320;14693:6;14730:1;14724:4;14720:12;14710:22;;14777:1;14771:4;14767:12;14798:18;14788:81;;14854:4;14846:6;14842:17;14832:27;;14788:81;14916:2;14908:6;14905:14;14885:18;14882:38;14879:84;;;14935:18;;:::i;:::-;14879:84;14700:269;14649:320;;;:::o;14975:182::-;15115:34;15111:1;15103:6;15099:14;15092:58;14975:182;:::o;15163:366::-;15305:3;15326:67;15390:2;15385:3;15326:67;:::i;:::-;15319:74;;15402:93;15491:3;15402:93;:::i;:::-;15520:2;15515:3;15511:12;15504:19;;15163:366;;;:::o;15535:419::-;15701:4;15739:2;15728:9;15724:18;15716:26;;15788:9;15782:4;15778:20;15774:1;15763:9;15759:17;15752:47;15816:131;15942:4;15816:131;:::i;:::-;15808:139;;15535:419;;;:::o;15960:181::-;16100:33;16096:1;16088:6;16084:14;16077:57;15960:181;:::o;16147:366::-;16289:3;16310:67;16374:2;16369:3;16310:67;:::i;:::-;16303:74;;16386:93;16475:3;16386:93;:::i;:::-;16504:2;16499:3;16495:12;16488:19;;16147:366;;;:::o;16519:419::-;16685:4;16723:2;16712:9;16708:18;16700:26;;16772:9;16766:4;16762:20;16758:1;16747:9;16743:17;16736:47;16800:131;16926:4;16800:131;:::i;:::-;16792:139;;16519:419;;;:::o;16944:147::-;17045:11;17082:3;17067:18;;16944:147;;;;:::o;17097:114::-;;:::o;17217:398::-;17376:3;17397:83;17478:1;17473:3;17397:83;:::i;:::-;17390:90;;17489:93;17578:3;17489:93;:::i;:::-;17607:1;17602:3;17598:11;17591:18;;17217:398;;;:::o;17621:379::-;17805:3;17827:147;17970:3;17827:147;:::i;:::-;17820:154;;17991:3;17984:10;;17621:379;;;:::o;18006:172::-;18146:24;18142:1;18134:6;18130:14;18123:48;18006:172;:::o;18184:366::-;18326:3;18347:67;18411:2;18406:3;18347:67;:::i;:::-;18340:74;;18423:93;18512:3;18423:93;:::i;:::-;18541:2;18536:3;18532:12;18525:19;;18184:366;;;:::o;18556:419::-;18722:4;18760:2;18749:9;18745:18;18737:26;;18809:9;18803:4;18799:20;18795:1;18784:9;18780:17;18773:47;18837:131;18963:4;18837:131;:::i;:::-;18829:139;;18556:419;;;:::o;18981:180::-;19029:77;19026:1;19019:88;19126:4;19123:1;19116:15;19150:4;19147:1;19140:15;19167:180;19215:77;19212:1;19205:88;19312:4;19309:1;19302:15;19336:4;19333:1;19326:15;19353:233;19392:3;19415:24;19433:5;19415:24;:::i;:::-;19406:33;;19461:66;19454:5;19451:77;19448:103;;;19531:18;;:::i;:::-;19448:103;19578:1;19571:5;19567:13;19560:20;;19353:233;;;:::o;19592:172::-;19732:24;19728:1;19720:6;19716:14;19709:48;19592:172;:::o;19770:366::-;19912:3;19933:67;19997:2;19992:3;19933:67;:::i;:::-;19926:74;;20009:93;20098:3;20009:93;:::i;:::-;20127:2;20122:3;20118:12;20111:19;;19770:366;;;:::o;20142:419::-;20308:4;20346:2;20335:9;20331:18;20323:26;;20395:9;20389:4;20385:20;20381:1;20370:9;20366:17;20359:47;20423:131;20549:4;20423:131;:::i;:::-;20415:139;;20142:419;;;:::o;20567:170::-;20707:22;20703:1;20695:6;20691:14;20684:46;20567:170;:::o;20743:366::-;20885:3;20906:67;20970:2;20965:3;20906:67;:::i;:::-;20899:74;;20982:93;21071:3;20982:93;:::i;:::-;21100:2;21095:3;21091:12;21084:19;;20743:366;;;:::o;21115:419::-;21281:4;21319:2;21308:9;21304:18;21296:26;;21368:9;21362:4;21358:20;21354:1;21343:9;21339:17;21332:47;21396:131;21522:4;21396:131;:::i;:::-;21388:139;;21115:419;;;:::o;21540:305::-;21580:3;21599:20;21617:1;21599:20;:::i;:::-;21594:25;;21633:20;21651:1;21633:20;:::i;:::-;21628:25;;21787:1;21719:66;21715:74;21712:1;21709:81;21706:107;;;21793:18;;:::i;:::-;21706:107;21837:1;21834;21830:9;21823:16;;21540:305;;;;:::o;21851:176::-;21991:28;21987:1;21979:6;21975:14;21968:52;21851:176;:::o;22033:366::-;22175:3;22196:67;22260:2;22255:3;22196:67;:::i;:::-;22189:74;;22272:93;22361:3;22272:93;:::i;:::-;22390:2;22385:3;22381:12;22374:19;;22033:366;;;:::o;22405:419::-;22571:4;22609:2;22598:9;22594:18;22586:26;;22658:9;22652:4;22648:20;22644:1;22633:9;22629:17;22622:47;22686:131;22812:4;22686:131;:::i;:::-;22678:139;;22405:419;;;:::o;22830:175::-;22970:27;22966:1;22958:6;22954:14;22947:51;22830:175;:::o;23011:366::-;23153:3;23174:67;23238:2;23233:3;23174:67;:::i;:::-;23167:74;;23250:93;23339:3;23250:93;:::i;:::-;23368:2;23363:3;23359:12;23352:19;;23011:366;;;:::o;23383:419::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23383:419;;;:::o;23808:171::-;23948:23;23944:1;23936:6;23932:14;23925:47;23808:171;:::o;23985:366::-;24127:3;24148:67;24212:2;24207:3;24148:67;:::i;:::-;24141:74;;24224:93;24313:3;24224:93;:::i;:::-;24342:2;24337:3;24333:12;24326:19;;23985:366;;;:::o;24357:419::-;24523:4;24561:2;24550:9;24546:18;24538:26;;24610:9;24604:4;24600:20;24596:1;24585:9;24581:17;24574:47;24638:131;24764:4;24638:131;:::i;:::-;24630:139;;24357:419;;;:::o;24782:348::-;24822:7;24845:20;24863:1;24845:20;:::i;:::-;24840:25;;24879:20;24897:1;24879:20;:::i;:::-;24874:25;;25067:1;24999:66;24995:74;24992:1;24989:81;24984:1;24977:9;24970:17;24966:105;24963:131;;;25074:18;;:::i;:::-;24963:131;25122:1;25119;25115:9;25104:20;;24782:348;;;;:::o;25136:170::-;25276:22;25272:1;25264:6;25260:14;25253:46;25136:170;:::o;25312:366::-;25454:3;25475:67;25539:2;25534:3;25475:67;:::i;:::-;25468:74;;25551:93;25640:3;25551:93;:::i;:::-;25669:2;25664:3;25660:12;25653:19;;25312:366;;;:::o;25684:419::-;25850:4;25888:2;25877:9;25873:18;25865:26;;25937:9;25931:4;25927:20;25923:1;25912:9;25908:17;25901:47;25965:131;26091:4;25965:131;:::i;:::-;25957:139;;25684:419;;;:::o;26109:178::-;26249:30;26245:1;26237:6;26233:14;26226:54;26109:178;:::o;26293:366::-;26435:3;26456:67;26520:2;26515:3;26456:67;:::i;:::-;26449:74;;26532:93;26621:3;26532:93;:::i;:::-;26650:2;26645:3;26641:12;26634:19;;26293:366;;;:::o;26665:419::-;26831:4;26869:2;26858:9;26854:18;26846:26;;26918:9;26912:4;26908:20;26904:1;26893:9;26889:17;26882:47;26946:131;27072:4;26946:131;:::i;:::-;26938:139;;26665:419;;;:::o;27090:168::-;27230:20;27226:1;27218:6;27214:14;27207:44;27090:168;:::o;27264:366::-;27406:3;27427:67;27491:2;27486:3;27427:67;:::i;:::-;27420:74;;27503:93;27592:3;27503:93;:::i;:::-;27621:2;27616:3;27612:12;27605:19;;27264:366;;;:::o;27636:419::-;27802:4;27840:2;27829:9;27825:18;27817:26;;27889:9;27883:4;27879:20;27875:1;27864:9;27860:17;27853:47;27917:131;28043:4;27917:131;:::i;:::-;27909:139;;27636:419;;;:::o;28061:148::-;28163:11;28200:3;28185:18;;28061:148;;;;:::o;28215:141::-;28264:4;28287:3;28279:11;;28310:3;28307:1;28300:14;28344:4;28341:1;28331:18;28323:26;;28215:141;;;:::o;28386:845::-;28489:3;28526:5;28520:12;28555:36;28581:9;28555:36;:::i;:::-;28607:89;28689:6;28684:3;28607:89;:::i;:::-;28600:96;;28727:1;28716:9;28712:17;28743:1;28738:137;;;;28889:1;28884:341;;;;28705:520;;28738:137;28822:4;28818:9;28807;28803:25;28798:3;28791:38;28858:6;28853:3;28849:16;28842:23;;28738:137;;28884:341;28951:38;28983:5;28951:38;:::i;:::-;29011:1;29025:154;29039:6;29036:1;29033:13;29025:154;;;29113:7;29107:14;29103:1;29098:3;29094:11;29087:35;29163:1;29154:7;29150:15;29139:26;;29061:4;29058:1;29054:12;29049:17;;29025:154;;;29208:6;29203:3;29199:16;29192:23;;28891:334;;28705:520;;28493:738;;28386:845;;;;:::o;29237:377::-;29343:3;29371:39;29404:5;29371:39;:::i;:::-;29426:89;29508:6;29503:3;29426:89;:::i;:::-;29419:96;;29524:52;29569:6;29564:3;29557:4;29550:5;29546:16;29524:52;:::i;:::-;29601:6;29596:3;29592:16;29585:23;;29347:267;29237:377;;;;:::o;29620:583::-;29842:3;29864:92;29952:3;29943:6;29864:92;:::i;:::-;29857:99;;29973:95;30064:3;30055:6;29973:95;:::i;:::-;29966:102;;30085:92;30173:3;30164:6;30085:92;:::i;:::-;30078:99;;30194:3;30187:10;;29620:583;;;;;;:::o;30209:589::-;30434:3;30456:95;30547:3;30538:6;30456:95;:::i;:::-;30449:102;;30568:95;30659:3;30650:6;30568:95;:::i;:::-;30561:102;;30680:92;30768:3;30759:6;30680:92;:::i;:::-;30673:99;;30789:3;30782:10;;30209:589;;;;;;:::o;30804:225::-;30944:34;30940:1;30932:6;30928:14;30921:58;31013:8;31008:2;31000:6;30996:15;30989:33;30804:225;:::o;31035:366::-;31177:3;31198:67;31262:2;31257:3;31198:67;:::i;:::-;31191:74;;31274:93;31363:3;31274:93;:::i;:::-;31392:2;31387:3;31383:12;31376:19;;31035:366;;;:::o;31407:419::-;31573:4;31611:2;31600:9;31596:18;31588:26;;31660:9;31654:4;31650:20;31646:1;31635:9;31631:17;31624:47;31688:131;31814:4;31688:131;:::i;:::-;31680:139;;31407:419;;;:::o;31832:98::-;31883:6;31917:5;31911:12;31901:22;;31832:98;;;:::o;31936:168::-;32019:11;32053:6;32048:3;32041:19;32093:4;32088:3;32084:14;32069:29;;31936:168;;;;:::o;32110:360::-;32196:3;32224:38;32256:5;32224:38;:::i;:::-;32278:70;32341:6;32336:3;32278:70;:::i;:::-;32271:77;;32357:52;32402:6;32397:3;32390:4;32383:5;32379:16;32357:52;:::i;:::-;32434:29;32456:6;32434:29;:::i;:::-;32429:3;32425:39;32418:46;;32200:270;32110:360;;;;:::o;32476:640::-;32671:4;32709:3;32698:9;32694:19;32686:27;;32723:71;32791:1;32780:9;32776:17;32767:6;32723:71;:::i;:::-;32804:72;32872:2;32861:9;32857:18;32848:6;32804:72;:::i;:::-;32886;32954:2;32943:9;32939:18;32930:6;32886:72;:::i;:::-;33005:9;32999:4;32995:20;32990:2;32979:9;32975:18;32968:48;33033:76;33104:4;33095:6;33033:76;:::i;:::-;33025:84;;32476:640;;;;;;;:::o;33122:141::-;33178:5;33209:6;33203:13;33194:22;;33225:32;33251:5;33225:32;:::i;:::-;33122:141;;;;:::o;33269:349::-;33338:6;33387:2;33375:9;33366:7;33362:23;33358:32;33355:119;;;33393:79;;:::i;:::-;33355:119;33513:1;33538:63;33593:7;33584:6;33573:9;33569:22;33538:63;:::i;:::-;33528:73;;33484:127;33269:349;;;;:::o;33624:180::-;33672:77;33669:1;33662:88;33769:4;33766:1;33759:15;33793:4;33790:1;33783:15;33810:185;33850:1;33867:20;33885:1;33867:20;:::i;:::-;33862:25;;33901:20;33919:1;33901:20;:::i;:::-;33896:25;;33940:1;33930:35;;33945:18;;:::i;:::-;33930:35;33987:1;33984;33980:9;33975:14;;33810:185;;;;:::o;34001:191::-;34041:4;34061:20;34079:1;34061:20;:::i;:::-;34056:25;;34095:20;34113:1;34095:20;:::i;:::-;34090:25;;34134:1;34131;34128:8;34125:34;;;34139:18;;:::i;:::-;34125:34;34184:1;34181;34177:9;34169:17;;34001:191;;;;:::o;34198:176::-;34230:1;34247:20;34265:1;34247:20;:::i;:::-;34242:25;;34281:20;34299:1;34281:20;:::i;:::-;34276:25;;34320:1;34310:35;;34325:18;;:::i;:::-;34310:35;34366:1;34363;34359:9;34354:14;;34198:176;;;;:::o

Swarm Source

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