ETH Price: $3,239.81 (-0.45%)
Gas: 2 Gwei

Token

EightBit Goblin (EightBit Goblin)
 

Overview

Max Total Supply

8,240 EightBit Goblin

Holders

761

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 EightBit Goblin
0x82ce6599d6c38ab2c4334bf3557f169424c45809
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:
EightBitGoblin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 12: nft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 && !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
        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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (
                    safe &&
                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)
                ) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

contract EightBitGoblin is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public price = 0.002 ether;

    uint256 public maxSupply = 10000;

    uint256 public maxPerTx = 10;

    uint256 public maxPerWallet = 80;

    uint256 public maxFreeAmount = 2000;

    uint256 public maxFreePerWallet = 20;

    bool public mintEnabled;

    bool public revealed;

    string public baseURI;

    string public unrevealedURI;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("EightBit Goblin", "EightBit Goblin") {
        _safeMint(msg.sender, 10);
    }

    function mint(uint256 amount) external payable {
        uint256 cost = price;
        bool free = ((totalSupply() + amount < maxFreeAmount + 1) &&
            (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet));
        if (free) {
            cost = 0;
        }

        require(msg.value >= amount * cost, "Please send the exact amount.");
        require(totalSupply() + amount < maxSupply + 1, "No more");
        require(mintEnabled, "Minting is not live yet.");
        require(amount < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + amount <= maxPerWallet,
            "Too many per wallet!"
        );

        if (free) {
            _mintedFreeAmount[msg.sender] += amount;
        }

        _safeMint(msg.sender, amount);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            revealed
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : unrevealedURI;
    }

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

    function setUnrevealedURI(string memory uri) public onlyOwner {
        unrevealedURI = uri;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner {
        maxFreeAmount = _amount;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function flipReveal() external onlyOwner {
        revealed = !revealed;
    }

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 12: 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 4 of 12: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 5 of 12: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 8 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 12: 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 10 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnrevealedURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266071afd498d0000600955612710600a55600a600b556050600c556107d0600d556014600e553480156200003757600080fd5b506040518060400160405280600f81526020017f456967687442697420476f626c696e00000000000000000000000000000000008152506040518060400160405280600f81526020017f456967687442697420476f626c696e00000000000000000000000000000000008152508160029080519060200190620000bc9291906200071d565b508060039080519060200190620000d59291906200071d565b5050506000620000ea620001a260201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200019c33600a620001aa60201b60201c565b62000a1e565b600033905090565b620001cc828260405180602001604052806000815250620001d060201b60201c565b5050565b620001e58383836001620001ea60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000258576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000294576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002a960008683876200053f60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200051a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620004cc5750620004ca60008884886200054560201b60201c565b155b1562000504576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000447565b508060008190555050620005386000868387620006f460201b60201c565b5050505050565b50505050565b6000620005738473ffffffffffffffffffffffffffffffffffffffff16620006fa60201b620020b41760201c565b15620006e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a5620001a260201b60201c565b8786866040518563ffffffff1660e01b8152600401620005c9949392919062000879565b602060405180830381600087803b158015620005e457600080fd5b505af19250505080156200061857506040513d601f19601f82011682018060405250810190620006159190620007e4565b60015b62000696573d80600081146200064b576040519150601f19603f3d011682016040523d82523d6000602084013e62000650565b606091505b506000815114156200068e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006ec565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200072b9062000989565b90600052602060002090601f0160209004810192826200074f57600085556200079b565b82601f106200076a57805160ff19168380011785556200079b565b828001600101855582156200079b579182015b828111156200079a5782518255916020019190600101906200077d565b5b509050620007aa9190620007ae565b5090565b5b80821115620007c9576000816000905550600101620007af565b5090565b600081519050620007de8162000a04565b92915050565b600060208284031215620007fd57620007fc620009ee565b5b60006200080d84828501620007cd565b91505092915050565b6200082181620008e9565b82525050565b60006200083482620008cd565b620008408185620008d8565b93506200085281856020860162000953565b6200085d81620009f3565b840191505092915050565b620008738162000949565b82525050565b600060808201905062000890600083018762000816565b6200089f602083018662000816565b620008ae604083018562000868565b8181036060830152620008c2818462000827565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620008f68262000929565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200097357808201518184015260208101905062000956565b8381111562000983576000848401525b50505050565b60006002820490506001821680620009a257607f821691505b60208210811415620009b957620009b8620009bf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000a0f81620008fd565b811462000a1b57600080fd5b50565b6141a68062000a2e6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a7027357116100ab578063e985e9c51161006f578063e985e9c5146107c2578063f2fde38b146107ff578063f892c6e214610828578063f968adbe14610853578063fe2c7fee1461087e57610225565b8063a7027357146106db578063b88d4fde14610706578063c87b56dd1461072f578063d12397301461076c578063d5abeb011461079757610225565b806391b7f5ed116100f257806391b7f5ed1461061757806395d89b4114610640578063a035b1fe1461066b578063a0712d6814610696578063a22cb465146106b257610225565b806370a0823114610581578063715018a6146105be5780637ba5e621146105d55780638da5cb5b146105ec57610225565b80633ccfd60b116101b157806355f804b31161017557806355f804b31461049c5780636352211e146104c55780636c0360eb146105025780636d7c4a4b1461052d5780637035bf181461055657610225565b80633ccfd60b146103c957806342842e0e146103e0578063453c2310146104095780634f6ccce714610434578063518302271461047157610225565b80630c23bb3f116101f85780630c23bb3f146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c59146103755780633b84d9c6146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906134c6565b6108a7565b60405161025e9190613911565b60405180910390f35b34801561027357600080fd5b5061027c6109f1565b604051610289919061392c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613569565b610a83565b6040516102c691906138aa565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613486565b610aff565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613569565b610c0a565b005b34801561032d57600080fd5b50610336610c90565b6040516103439190613a6e565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613370565b610c9e565b005b34801561038157600080fd5b5061039c60048036038101906103979190613486565b610cae565b6040516103a99190613a6e565b60405180910390f35b3480156103be57600080fd5b506103c7610e87565b005b3480156103d557600080fd5b506103de610f2f565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613370565b61105a565b005b34801561041557600080fd5b5061041e61107a565b60405161042b9190613a6e565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613569565b611080565b6040516104689190613a6e565b60405180910390f35b34801561047d57600080fd5b506104866111c5565b6040516104939190613911565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190613520565b6111d8565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613569565b61126e565b6040516104f991906138aa565b60405180910390f35b34801561050e57600080fd5b50610517611284565b604051610524919061392c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613569565b611312565b005b34801561056257600080fd5b5061056b611398565b604051610578919061392c565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613303565b611426565b6040516105b59190613a6e565b60405180910390f35b3480156105ca57600080fd5b506105d36114f6565b005b3480156105e157600080fd5b506105ea611633565b005b3480156105f857600080fd5b506106016116db565b60405161060e91906138aa565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613569565b611705565b005b34801561064c57600080fd5b5061065561178b565b604051610662919061392c565b60405180910390f35b34801561067757600080fd5b5061068061181d565b60405161068d9190613a6e565b60405180910390f35b6106b060048036038101906106ab9190613569565b611823565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613446565b611ac7565b005b3480156106e757600080fd5b506106f0611c3f565b6040516106fd9190613a6e565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906133c3565b611c45565b005b34801561073b57600080fd5b5061075660048036038101906107519190613569565b611c98565b604051610763919061392c565b60405180910390f35b34801561077857600080fd5b50610781611db9565b60405161078e9190613911565b60405180910390f35b3480156107a357600080fd5b506107ac611dcc565b6040516107b99190613a6e565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613330565b611dd2565b6040516107f69190613911565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613303565b611e66565b005b34801561083457600080fd5b5061083d612012565b60405161084a9190613a6e565b60405180910390f35b34801561085f57600080fd5b50610868612018565b6040516108759190613a6e565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613520565b61201e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ea57506109e9826120d7565b5b9050919050565b606060028054610a0090613d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90613d3e565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82612141565b610ac4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a8261126e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9161217b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc35750610bc181610bbc61217b565b611dd2565b155b15610bfa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c05838383612183565b505050565b610c1261217b565b73ffffffffffffffffffffffffffffffffffffffff16610c306116db565b73ffffffffffffffffffffffffffffffffffffffff1614610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d906139ae565b60405180910390fd5b80600d8190555050565b600060015460005403905090565b610ca9838383612235565b505050565b6000610cb983611426565b8210610cf1576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e7b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dda5750610e6e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e1a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6c5786841415610e63578195505050505050610e81565b83806001019450505b505b8080600101915050610cfd565b50600080fd5b92915050565b610e8f61217b565b73ffffffffffffffffffffffffffffffffffffffff16610ead6116db565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906139ae565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610f3761217b565b73ffffffffffffffffffffffffffffffffffffffff16610f556116db565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906139ae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fd190613895565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050905080611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613a2e565b60405180910390fd5b50565b61107583838360405180602001604052806000815250611c45565b505050565b600c5481565b60008060005490506000805b8281101561118d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161117f578583141561117657819450505050506111c0565b82806001019350505b50808060010191505061108c565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600f60019054906101000a900460ff1681565b6111e061217b565b73ffffffffffffffffffffffffffffffffffffffff166111fe6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906139ae565b60405180910390fd5b806010908051906020019061126a9291906130d4565b5050565b600061127982612726565b600001519050919050565b6010805461129190613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90613d3e565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b505050505081565b61131a61217b565b73ffffffffffffffffffffffffffffffffffffffff166113386116db565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906139ae565b60405180910390fd5b80600e8190555050565b601180546113a590613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613d3e565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114fe61217b565b73ffffffffffffffffffffffffffffffffffffffff1661151c6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906139ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61163b61217b565b73ffffffffffffffffffffffffffffffffffffffff166116596116db565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906139ae565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61170d61217b565b73ffffffffffffffffffffffffffffffffffffffff1661172b6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906139ae565b60405180910390fd5b8060098190555050565b60606003805461179a90613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690613d3e565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600d5461183b9190613b73565b83611844610c90565b61184e9190613b73565b1080156118a75750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a49190613b73565b11155b905080156118b457600091505b81836118c09190613bfa565b341015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613a0e565b60405180910390fd5b6001600a546119119190613b73565b8361191a610c90565b6119249190613b73565b10611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b9061394e565b60405180910390fd5b600f60009054906101000a900460ff166119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa906139ce565b60405180910390fd5b6001600b546119c29190613b73565b8310611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613a4e565b60405180910390fd5b600c5483611a10336129a2565b611a1a9190613b73565b1115611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061398e565b60405180910390fd5b8015611ab85782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab09190613b73565b925050819055505b611ac23384612a72565b505050565b611acf61217b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b34576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b4161217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bee61217b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c339190613911565b60405180910390a35050565b600e5481565b611c50848484612235565b611c5c84848484612a90565b611c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ca382612141565b611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd9906139ee565b60405180910390fd5b600f60019054906101000a900460ff16611d865760118054611d0390613d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2f90613d3e565b8015611d7c5780601f10611d5157610100808354040283529160200191611d7c565b820191906000526020600020905b815481529060010190602001808311611d5f57829003601f168201915b5050505050611db2565b6010611d9183612c1e565b604051602001611da2929190613866565b6040516020818303038152906040525b9050919050565b600f60009054906101000a900460ff1681565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6e61217b565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed9906139ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061396e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600b5481565b61202661217b565b73ffffffffffffffffffffffffffffffffffffffff166120446116db565b73ffffffffffffffffffffffffffffffffffffffff161461209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906139ae565b60405180910390fd5b80601190805190602001906120b09291906130d4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612174575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061224082612726565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661226761217b565b73ffffffffffffffffffffffffffffffffffffffff16148061229a5750612299826000015161229461217b565b611dd2565b5b806122df57506122a861217b565b73ffffffffffffffffffffffffffffffffffffffff166122c784610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612318576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612381576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f58585856001612d7f565b6124056000848460000151612183565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126b6576000548110156126b55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461271f8585856001612d85565b5050505050565b61272e61315a565b600082905060005481101561296b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461284d57809250505061299d565b5b60011561296857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296357809250505061299d565b61284e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0a576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612a8c828260405180602001604052806000815250612d8b565b5050565b6000612ab18473ffffffffffffffffffffffffffffffffffffffff166120b4565b15612c11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ada61217b565b8786866040518563ffffffff1660e01b8152600401612afc94939291906138c5565b602060405180830381600087803b158015612b1657600080fd5b505af1925050508015612b4757506040513d601f19601f82011682018060405250810190612b4491906134f3565b60015b612bc1573d8060008114612b77576040519150601f19603f3d011682016040523d82523d6000602084013e612b7c565b606091505b50600081511415612bb9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c16565b600190505b949350505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c8190613da1565b915050600a82612c919190613bc9565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3613ed7565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff9190613c54565b9150600a85612d0e9190613dea565b6030612d1a9190613b73565b60f81b818381518110612d3057612d2f613ea8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190613bc9565b9450612cea565b8093505050505b919050565b50505050565b50505050565b612d988383836001612d9d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e0a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e526000868387612d7f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561306b57506130696000888488612a90565b155b156130a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612ff0565b5080600081905550506130cd6000868387612d85565b5050505050565b8280546130e090613d3e565b90600052602060002090601f0160209004810192826131025760008555613149565b82601f1061311b57805160ff1916838001178555613149565b82800160010185558215613149579182015b8281111561314857825182559160200191906001019061312d565b5b509050613156919061319d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131b657600081600090555060010161319e565b5090565b60006131cd6131c884613aae565b613a89565b9050828152602081018484840111156131e9576131e8613f0b565b5b6131f4848285613cfc565b509392505050565b600061320f61320a84613adf565b613a89565b90508281526020810184848401111561322b5761322a613f0b565b5b613236848285613cfc565b509392505050565b60008135905061324d81614114565b92915050565b6000813590506132628161412b565b92915050565b60008135905061327781614142565b92915050565b60008151905061328c81614142565b92915050565b600082601f8301126132a7576132a6613f06565b5b81356132b78482602086016131ba565b91505092915050565b600082601f8301126132d5576132d4613f06565b5b81356132e58482602086016131fc565b91505092915050565b6000813590506132fd81614159565b92915050565b60006020828403121561331957613318613f15565b5b60006133278482850161323e565b91505092915050565b6000806040838503121561334757613346613f15565b5b60006133558582860161323e565b92505060206133668582860161323e565b9150509250929050565b60008060006060848603121561338957613388613f15565b5b60006133978682870161323e565b93505060206133a88682870161323e565b92505060406133b9868287016132ee565b9150509250925092565b600080600080608085870312156133dd576133dc613f15565b5b60006133eb8782880161323e565b94505060206133fc8782880161323e565b935050604061340d878288016132ee565b925050606085013567ffffffffffffffff81111561342e5761342d613f10565b5b61343a87828801613292565b91505092959194509250565b6000806040838503121561345d5761345c613f15565b5b600061346b8582860161323e565b925050602061347c85828601613253565b9150509250929050565b6000806040838503121561349d5761349c613f15565b5b60006134ab8582860161323e565b92505060206134bc858286016132ee565b9150509250929050565b6000602082840312156134dc576134db613f15565b5b60006134ea84828501613268565b91505092915050565b60006020828403121561350957613508613f15565b5b60006135178482850161327d565b91505092915050565b60006020828403121561353657613535613f15565b5b600082013567ffffffffffffffff81111561355457613553613f10565b5b613560848285016132c0565b91505092915050565b60006020828403121561357f5761357e613f15565b5b600061358d848285016132ee565b91505092915050565b61359f81613c88565b82525050565b6135ae81613c9a565b82525050565b60006135bf82613b25565b6135c98185613b3b565b93506135d9818560208601613d0b565b6135e281613f1a565b840191505092915050565b60006135f882613b30565b6136028185613b57565b9350613612818560208601613d0b565b61361b81613f1a565b840191505092915050565b600061363182613b30565b61363b8185613b68565b935061364b818560208601613d0b565b80840191505092915050565b6000815461366481613d3e565b61366e8186613b68565b94506001821660008114613689576001811461369a576136cd565b60ff198316865281860193506136cd565b6136a385613b10565b60005b838110156136c5578154818901526001820191506020810190506136a6565b838801955050505b50505092915050565b60006136e3600783613b57565b91506136ee82613f2b565b602082019050919050565b6000613706602683613b57565b915061371182613f54565b604082019050919050565b6000613729601483613b57565b915061373482613fa3565b602082019050919050565b600061374c600583613b68565b915061375782613fcc565b600582019050919050565b600061376f602083613b57565b915061377a82613ff5565b602082019050919050565b6000613792601883613b57565b915061379d8261401e565b602082019050919050565b60006137b5602f83613b57565b91506137c082614047565b604082019050919050565b60006137d8601d83613b57565b91506137e382614096565b602082019050919050565b60006137fb600083613b4c565b9150613806826140bf565b600082019050919050565b600061381e601083613b57565b9150613829826140c2565b602082019050919050565b6000613841601383613b57565b915061384c826140eb565b602082019050919050565b61386081613cf2565b82525050565b60006138728285613657565b915061387e8284613626565b91506138898261373f565b91508190509392505050565b60006138a0826137ee565b9150819050919050565b60006020820190506138bf6000830184613596565b92915050565b60006080820190506138da6000830187613596565b6138e76020830186613596565b6138f46040830185613857565b818103606083015261390681846135b4565b905095945050505050565b600060208201905061392660008301846135a5565b92915050565b6000602082019050818103600083015261394681846135ed565b905092915050565b60006020820190508181036000830152613967816136d6565b9050919050565b60006020820190508181036000830152613987816136f9565b9050919050565b600060208201905081810360008301526139a78161371c565b9050919050565b600060208201905081810360008301526139c781613762565b9050919050565b600060208201905081810360008301526139e781613785565b9050919050565b60006020820190508181036000830152613a07816137a8565b9050919050565b60006020820190508181036000830152613a27816137cb565b9050919050565b60006020820190508181036000830152613a4781613811565b9050919050565b60006020820190508181036000830152613a6781613834565b9050919050565b6000602082019050613a836000830184613857565b92915050565b6000613a93613aa4565b9050613a9f8282613d70565b919050565b6000604051905090565b600067ffffffffffffffff821115613ac957613ac8613ed7565b5b613ad282613f1a565b9050602081019050919050565b600067ffffffffffffffff821115613afa57613af9613ed7565b5b613b0382613f1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7e82613cf2565b9150613b8983613cf2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbe57613bbd613e1b565b5b828201905092915050565b6000613bd482613cf2565b9150613bdf83613cf2565b925082613bef57613bee613e4a565b5b828204905092915050565b6000613c0582613cf2565b9150613c1083613cf2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c4957613c48613e1b565b5b828202905092915050565b6000613c5f82613cf2565b9150613c6a83613cf2565b925082821015613c7d57613c7c613e1b565b5b828203905092915050565b6000613c9382613cd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d29578082015181840152602081019050613d0e565b83811115613d38576000848401525b50505050565b60006002820490506001821680613d5657607f821691505b60208210811415613d6a57613d69613e79565b5b50919050565b613d7982613f1a565b810181811067ffffffffffffffff82111715613d9857613d97613ed7565b5b80604052505050565b6000613dac82613cf2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ddf57613dde613e1b565b5b600182019050919050565b6000613df582613cf2565b9150613e0083613cf2565b925082613e1057613e0f613e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61411d81613c88565b811461412857600080fd5b50565b61413481613c9a565b811461413f57600080fd5b50565b61414b81613ca6565b811461415657600080fd5b50565b61416281613cf2565b811461416d57600080fd5b5056fea26469706673582212200fee90e97d1dff8e8ac9fd46bdf3f2c52316524c039b3a9928697a468ec7bf1a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a7027357116100ab578063e985e9c51161006f578063e985e9c5146107c2578063f2fde38b146107ff578063f892c6e214610828578063f968adbe14610853578063fe2c7fee1461087e57610225565b8063a7027357146106db578063b88d4fde14610706578063c87b56dd1461072f578063d12397301461076c578063d5abeb011461079757610225565b806391b7f5ed116100f257806391b7f5ed1461061757806395d89b4114610640578063a035b1fe1461066b578063a0712d6814610696578063a22cb465146106b257610225565b806370a0823114610581578063715018a6146105be5780637ba5e621146105d55780638da5cb5b146105ec57610225565b80633ccfd60b116101b157806355f804b31161017557806355f804b31461049c5780636352211e146104c55780636c0360eb146105025780636d7c4a4b1461052d5780637035bf181461055657610225565b80633ccfd60b146103c957806342842e0e146103e0578063453c2310146104095780634f6ccce714610434578063518302271461047157610225565b80630c23bb3f116101f85780630c23bb3f146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c59146103755780633b84d9c6146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906134c6565b6108a7565b60405161025e9190613911565b60405180910390f35b34801561027357600080fd5b5061027c6109f1565b604051610289919061392c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613569565b610a83565b6040516102c691906138aa565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613486565b610aff565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613569565b610c0a565b005b34801561032d57600080fd5b50610336610c90565b6040516103439190613a6e565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613370565b610c9e565b005b34801561038157600080fd5b5061039c60048036038101906103979190613486565b610cae565b6040516103a99190613a6e565b60405180910390f35b3480156103be57600080fd5b506103c7610e87565b005b3480156103d557600080fd5b506103de610f2f565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613370565b61105a565b005b34801561041557600080fd5b5061041e61107a565b60405161042b9190613a6e565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613569565b611080565b6040516104689190613a6e565b60405180910390f35b34801561047d57600080fd5b506104866111c5565b6040516104939190613911565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190613520565b6111d8565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613569565b61126e565b6040516104f991906138aa565b60405180910390f35b34801561050e57600080fd5b50610517611284565b604051610524919061392c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613569565b611312565b005b34801561056257600080fd5b5061056b611398565b604051610578919061392c565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613303565b611426565b6040516105b59190613a6e565b60405180910390f35b3480156105ca57600080fd5b506105d36114f6565b005b3480156105e157600080fd5b506105ea611633565b005b3480156105f857600080fd5b506106016116db565b60405161060e91906138aa565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613569565b611705565b005b34801561064c57600080fd5b5061065561178b565b604051610662919061392c565b60405180910390f35b34801561067757600080fd5b5061068061181d565b60405161068d9190613a6e565b60405180910390f35b6106b060048036038101906106ab9190613569565b611823565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613446565b611ac7565b005b3480156106e757600080fd5b506106f0611c3f565b6040516106fd9190613a6e565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906133c3565b611c45565b005b34801561073b57600080fd5b5061075660048036038101906107519190613569565b611c98565b604051610763919061392c565b60405180910390f35b34801561077857600080fd5b50610781611db9565b60405161078e9190613911565b60405180910390f35b3480156107a357600080fd5b506107ac611dcc565b6040516107b99190613a6e565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613330565b611dd2565b6040516107f69190613911565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613303565b611e66565b005b34801561083457600080fd5b5061083d612012565b60405161084a9190613a6e565b60405180910390f35b34801561085f57600080fd5b50610868612018565b6040516108759190613a6e565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613520565b61201e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ea57506109e9826120d7565b5b9050919050565b606060028054610a0090613d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90613d3e565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82612141565b610ac4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a8261126e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9161217b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc35750610bc181610bbc61217b565b611dd2565b155b15610bfa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c05838383612183565b505050565b610c1261217b565b73ffffffffffffffffffffffffffffffffffffffff16610c306116db565b73ffffffffffffffffffffffffffffffffffffffff1614610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d906139ae565b60405180910390fd5b80600d8190555050565b600060015460005403905090565b610ca9838383612235565b505050565b6000610cb983611426565b8210610cf1576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e7b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dda5750610e6e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e1a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6c5786841415610e63578195505050505050610e81565b83806001019450505b505b8080600101915050610cfd565b50600080fd5b92915050565b610e8f61217b565b73ffffffffffffffffffffffffffffffffffffffff16610ead6116db565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906139ae565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610f3761217b565b73ffffffffffffffffffffffffffffffffffffffff16610f556116db565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906139ae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fd190613895565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050905080611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613a2e565b60405180910390fd5b50565b61107583838360405180602001604052806000815250611c45565b505050565b600c5481565b60008060005490506000805b8281101561118d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161117f578583141561117657819450505050506111c0565b82806001019350505b50808060010191505061108c565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600f60019054906101000a900460ff1681565b6111e061217b565b73ffffffffffffffffffffffffffffffffffffffff166111fe6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906139ae565b60405180910390fd5b806010908051906020019061126a9291906130d4565b5050565b600061127982612726565b600001519050919050565b6010805461129190613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90613d3e565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b505050505081565b61131a61217b565b73ffffffffffffffffffffffffffffffffffffffff166113386116db565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906139ae565b60405180910390fd5b80600e8190555050565b601180546113a590613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613d3e565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114fe61217b565b73ffffffffffffffffffffffffffffffffffffffff1661151c6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906139ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61163b61217b565b73ffffffffffffffffffffffffffffffffffffffff166116596116db565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906139ae565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61170d61217b565b73ffffffffffffffffffffffffffffffffffffffff1661172b6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906139ae565b60405180910390fd5b8060098190555050565b60606003805461179a90613d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690613d3e565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600d5461183b9190613b73565b83611844610c90565b61184e9190613b73565b1080156118a75750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a49190613b73565b11155b905080156118b457600091505b81836118c09190613bfa565b341015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613a0e565b60405180910390fd5b6001600a546119119190613b73565b8361191a610c90565b6119249190613b73565b10611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b9061394e565b60405180910390fd5b600f60009054906101000a900460ff166119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa906139ce565b60405180910390fd5b6001600b546119c29190613b73565b8310611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613a4e565b60405180910390fd5b600c5483611a10336129a2565b611a1a9190613b73565b1115611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061398e565b60405180910390fd5b8015611ab85782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab09190613b73565b925050819055505b611ac23384612a72565b505050565b611acf61217b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b34576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b4161217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bee61217b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c339190613911565b60405180910390a35050565b600e5481565b611c50848484612235565b611c5c84848484612a90565b611c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ca382612141565b611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd9906139ee565b60405180910390fd5b600f60019054906101000a900460ff16611d865760118054611d0390613d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2f90613d3e565b8015611d7c5780601f10611d5157610100808354040283529160200191611d7c565b820191906000526020600020905b815481529060010190602001808311611d5f57829003601f168201915b5050505050611db2565b6010611d9183612c1e565b604051602001611da2929190613866565b6040516020818303038152906040525b9050919050565b600f60009054906101000a900460ff1681565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6e61217b565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed9906139ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061396e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600b5481565b61202661217b565b73ffffffffffffffffffffffffffffffffffffffff166120446116db565b73ffffffffffffffffffffffffffffffffffffffff161461209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906139ae565b60405180910390fd5b80601190805190602001906120b09291906130d4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612174575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061224082612726565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661226761217b565b73ffffffffffffffffffffffffffffffffffffffff16148061229a5750612299826000015161229461217b565b611dd2565b5b806122df57506122a861217b565b73ffffffffffffffffffffffffffffffffffffffff166122c784610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612318576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612381576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f58585856001612d7f565b6124056000848460000151612183565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126b6576000548110156126b55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461271f8585856001612d85565b5050505050565b61272e61315a565b600082905060005481101561296b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461284d57809250505061299d565b5b60011561296857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296357809250505061299d565b61284e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0a576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612a8c828260405180602001604052806000815250612d8b565b5050565b6000612ab18473ffffffffffffffffffffffffffffffffffffffff166120b4565b15612c11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ada61217b565b8786866040518563ffffffff1660e01b8152600401612afc94939291906138c5565b602060405180830381600087803b158015612b1657600080fd5b505af1925050508015612b4757506040513d601f19601f82011682018060405250810190612b4491906134f3565b60015b612bc1573d8060008114612b77576040519150601f19603f3d011682016040523d82523d6000602084013e612b7c565b606091505b50600081511415612bb9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c16565b600190505b949350505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c8190613da1565b915050600a82612c919190613bc9565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3613ed7565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff9190613c54565b9150600a85612d0e9190613dea565b6030612d1a9190613b73565b60f81b818381518110612d3057612d2f613ea8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190613bc9565b9450612cea565b8093505050505b919050565b50505050565b50505050565b612d988383836001612d9d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e0a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e526000868387612d7f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561306b57506130696000888488612a90565b155b156130a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612ff0565b5080600081905550506130cd6000868387612d85565b5050505050565b8280546130e090613d3e565b90600052602060002090601f0160209004810192826131025760008555613149565b82601f1061311b57805160ff1916838001178555613149565b82800160010185558215613149579182015b8281111561314857825182559160200191906001019061312d565b5b509050613156919061319d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131b657600081600090555060010161319e565b5090565b60006131cd6131c884613aae565b613a89565b9050828152602081018484840111156131e9576131e8613f0b565b5b6131f4848285613cfc565b509392505050565b600061320f61320a84613adf565b613a89565b90508281526020810184848401111561322b5761322a613f0b565b5b613236848285613cfc565b509392505050565b60008135905061324d81614114565b92915050565b6000813590506132628161412b565b92915050565b60008135905061327781614142565b92915050565b60008151905061328c81614142565b92915050565b600082601f8301126132a7576132a6613f06565b5b81356132b78482602086016131ba565b91505092915050565b600082601f8301126132d5576132d4613f06565b5b81356132e58482602086016131fc565b91505092915050565b6000813590506132fd81614159565b92915050565b60006020828403121561331957613318613f15565b5b60006133278482850161323e565b91505092915050565b6000806040838503121561334757613346613f15565b5b60006133558582860161323e565b92505060206133668582860161323e565b9150509250929050565b60008060006060848603121561338957613388613f15565b5b60006133978682870161323e565b93505060206133a88682870161323e565b92505060406133b9868287016132ee565b9150509250925092565b600080600080608085870312156133dd576133dc613f15565b5b60006133eb8782880161323e565b94505060206133fc8782880161323e565b935050604061340d878288016132ee565b925050606085013567ffffffffffffffff81111561342e5761342d613f10565b5b61343a87828801613292565b91505092959194509250565b6000806040838503121561345d5761345c613f15565b5b600061346b8582860161323e565b925050602061347c85828601613253565b9150509250929050565b6000806040838503121561349d5761349c613f15565b5b60006134ab8582860161323e565b92505060206134bc858286016132ee565b9150509250929050565b6000602082840312156134dc576134db613f15565b5b60006134ea84828501613268565b91505092915050565b60006020828403121561350957613508613f15565b5b60006135178482850161327d565b91505092915050565b60006020828403121561353657613535613f15565b5b600082013567ffffffffffffffff81111561355457613553613f10565b5b613560848285016132c0565b91505092915050565b60006020828403121561357f5761357e613f15565b5b600061358d848285016132ee565b91505092915050565b61359f81613c88565b82525050565b6135ae81613c9a565b82525050565b60006135bf82613b25565b6135c98185613b3b565b93506135d9818560208601613d0b565b6135e281613f1a565b840191505092915050565b60006135f882613b30565b6136028185613b57565b9350613612818560208601613d0b565b61361b81613f1a565b840191505092915050565b600061363182613b30565b61363b8185613b68565b935061364b818560208601613d0b565b80840191505092915050565b6000815461366481613d3e565b61366e8186613b68565b94506001821660008114613689576001811461369a576136cd565b60ff198316865281860193506136cd565b6136a385613b10565b60005b838110156136c5578154818901526001820191506020810190506136a6565b838801955050505b50505092915050565b60006136e3600783613b57565b91506136ee82613f2b565b602082019050919050565b6000613706602683613b57565b915061371182613f54565b604082019050919050565b6000613729601483613b57565b915061373482613fa3565b602082019050919050565b600061374c600583613b68565b915061375782613fcc565b600582019050919050565b600061376f602083613b57565b915061377a82613ff5565b602082019050919050565b6000613792601883613b57565b915061379d8261401e565b602082019050919050565b60006137b5602f83613b57565b91506137c082614047565b604082019050919050565b60006137d8601d83613b57565b91506137e382614096565b602082019050919050565b60006137fb600083613b4c565b9150613806826140bf565b600082019050919050565b600061381e601083613b57565b9150613829826140c2565b602082019050919050565b6000613841601383613b57565b915061384c826140eb565b602082019050919050565b61386081613cf2565b82525050565b60006138728285613657565b915061387e8284613626565b91506138898261373f565b91508190509392505050565b60006138a0826137ee565b9150819050919050565b60006020820190506138bf6000830184613596565b92915050565b60006080820190506138da6000830187613596565b6138e76020830186613596565b6138f46040830185613857565b818103606083015261390681846135b4565b905095945050505050565b600060208201905061392660008301846135a5565b92915050565b6000602082019050818103600083015261394681846135ed565b905092915050565b60006020820190508181036000830152613967816136d6565b9050919050565b60006020820190508181036000830152613987816136f9565b9050919050565b600060208201905081810360008301526139a78161371c565b9050919050565b600060208201905081810360008301526139c781613762565b9050919050565b600060208201905081810360008301526139e781613785565b9050919050565b60006020820190508181036000830152613a07816137a8565b9050919050565b60006020820190508181036000830152613a27816137cb565b9050919050565b60006020820190508181036000830152613a4781613811565b9050919050565b60006020820190508181036000830152613a6781613834565b9050919050565b6000602082019050613a836000830184613857565b92915050565b6000613a93613aa4565b9050613a9f8282613d70565b919050565b6000604051905090565b600067ffffffffffffffff821115613ac957613ac8613ed7565b5b613ad282613f1a565b9050602081019050919050565b600067ffffffffffffffff821115613afa57613af9613ed7565b5b613b0382613f1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7e82613cf2565b9150613b8983613cf2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbe57613bbd613e1b565b5b828201905092915050565b6000613bd482613cf2565b9150613bdf83613cf2565b925082613bef57613bee613e4a565b5b828204905092915050565b6000613c0582613cf2565b9150613c1083613cf2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c4957613c48613e1b565b5b828202905092915050565b6000613c5f82613cf2565b9150613c6a83613cf2565b925082821015613c7d57613c7c613e1b565b5b828203905092915050565b6000613c9382613cd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d29578082015181840152602081019050613d0e565b83811115613d38576000848401525b50505050565b60006002820490506001821680613d5657607f821691505b60208210811415613d6a57613d69613e79565b5b50919050565b613d7982613f1a565b810181811067ffffffffffffffff82111715613d9857613d97613ed7565b5b80604052505050565b6000613dac82613cf2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ddf57613dde613e1b565b5b600182019050919050565b6000613df582613cf2565b9150613e0083613cf2565b925082613e1057613e0f613e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61411d81613c88565b811461412857600080fd5b50565b61413481613c9a565b811461413f57600080fd5b50565b61414b81613ca6565b811461415657600080fd5b50565b61416281613cf2565b811461416d57600080fd5b5056fea26469706673582212200fee90e97d1dff8e8ac9fd46bdf3f2c52316524c039b3a9928697a468ec7bf1a64736f6c63430008070033

Deployed Bytecode Sourcemap

24706:2829:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8219:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10832:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12376:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11953:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26938:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5451:278;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13307:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7039:1113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27248:78;;;;;;;;;;;;;:::i;:::-;;27332:201;;;;;;;;;;;;;:::i;:::-;;13537:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24903:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6015:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25057:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26646:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10648:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25084:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27046:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25112:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8688:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1907:145;;;;;;;;;;;;;:::i;:::-;;27160:82;;;;;;;;;;;;;:::i;:::-;;1275:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26842:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10994:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24788:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25314:799;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12679:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24984:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13782:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26231:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25027:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24829:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13039:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2201:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24942:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24868:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26738:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8219:410;8361:4;8415:25;8400:40;;;:11;:40;;;;:104;;;;8471:33;8456:48;;;:11;:48;;;;8400:104;:170;;;;8535:35;8520:50;;;:11;:50;;;;8400:170;:222;;;;8586:36;8610:11;8586:23;:36::i;:::-;8400:222;8381:241;;8219:410;;;:::o;10832:98::-;10886:13;10918:5;10911:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10832:98;:::o;12376:236::-;12476:7;12504:16;12512:7;12504;:16::i;:::-;12499:64;;12529:34;;;;;;;;;;;;;;12499:64;12581:15;:24;12597:7;12581:24;;;;;;;;;;;;;;;;;;;;;12574:31;;12376:236;;;:::o;11953:362::-;12025:13;12041:24;12057:7;12041:15;:24::i;:::-;12025:40;;12085:5;12079:11;;:2;:11;;;12075:48;;;12099:24;;;;;;;;;;;;;;12075:48;12154:5;12138:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;12164:37;12181:5;12188:12;:10;:12::i;:::-;12164:16;:37::i;:::-;12163:38;12138:63;12134:136;;;12224:35;;;;;;;;;;;;;;12134:136;12280:28;12289:2;12293:7;12302:5;12280:8;:28::i;:::-;12015:300;11953:362;;:::o;26938:102::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27026:7:::1;27010:13;:23;;;;26938:102:::0;:::o;5451:278::-;5512:7;5700:12;;5684:13;;:28;5677:35;;5451:278;:::o;13307:164::-;13436:28;13446:4;13452:2;13456:7;13436:9;:28::i;:::-;13307:164;;;:::o;7039:1113::-;7160:7;7196:16;7206:5;7196:9;:16::i;:::-;7187:5;:25;7183:61;;7221:23;;;;;;;;;;;;;;7183:61;7254:22;7279:13;;7254:38;;7302:19;7331:25;7527:9;7522:543;7542:14;7538:1;:18;7522:543;;;7581:31;7615:11;:14;7627:1;7615:14;;;;;;;;;;;7581:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7651:9;:16;;;7647:71;;;7691:8;;;7647:71;7765:1;7739:28;;:9;:14;;;:28;;;7735:109;;7811:9;:14;;;7791:34;;7735:109;7886:5;7865:26;;:17;:26;;;7861:190;;;7934:5;7919:11;:20;7915:83;;;7974:1;7967:8;;;;;;;;;7915:83;8019:13;;;;;;;7861:190;7563:502;7522:543;7558:3;;;;;;;7522:543;;;;8137:8;;;7039:1113;;;;;:::o;27248:78::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27311:8:::1;;;;;;;;;;;27310:9;27299:8;;:20;;;;;;;;;;;;;;;;;;27248:78::o:0;27332:201::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27382:12:::1;27408:10;27400:24;;27445:21;27400:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27381:99;;;27498:7;27490:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;27371:162;27332:201::o:0;13537:179::-;13670:39;13687:4;13693:2;13697:7;13670:39;;;;;;;;;;;;:16;:39::i;:::-;13537:179;;;:::o;24903:32::-;;;;:::o;6015:731::-;6114:7;6137:22;6162:13;;6137:38;;6185:19;6375:9;6370:320;6390:14;6386:1;:18;6370:320;;;6429:31;6463:11;:14;6475:1;6463:14;;;;;;;;;;;6429:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500:9;:16;;;6495:181;;6559:5;6544:11;:20;6540:83;;;6599:1;6592:8;;;;;;;;6540:83;6644:13;;;;;;;6495:181;6411:279;6406:3;;;;;;;6370:320;;;;6716:23;;;;;;;;;;;;;;6015:731;;;;:::o;25057:20::-;;;;;;;;;;;;;:::o;26646:86::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26722:3:::1;26712:7;:13;;;;;;;;;;;;:::i;:::-;;26646:86:::0;:::o;10648:122::-;10712:7;10738:20;10750:7;10738:11;:20::i;:::-;:25;;;10731:32;;10648:122;;;:::o;25084:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27046:108::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27140:7:::1;27121:16;:26;;;;27046:108:::0;:::o;25112:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8688:203::-;8752:7;8792:1;8775:19;;:5;:19;;;8771:60;;;8803:28;;;;;;;;;;;;;;8771:60;8856:12;:19;8869:5;8856:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;8848:36;;8841:43;;8688:203;;;:::o;1907:145::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2013:1:::1;1976:40;;1997:6;;;;;;;;;;;1976:40;;;;;;;;;;;;2043:1;2026:6;;:19;;;;;;;;;;;;;;;;;;1907:145::o:0;27160:82::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27224:11:::1;;;;;;;;;;;27223:12;27209:11;;:26;;;;;;;;;;;;;;;;;;27160:82::o:0;1275:85::-;1321:7;1347:6;;;;;;;;;;;1340:13;;1275:85;:::o;26842:90::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26916:9:::1;26908:5;:17;;;;26842:90:::0;:::o;10994:102::-;11050:13;11082:7;11075:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10994:102;:::o;24788:34::-;;;;:::o;25314:799::-;25371:12;25386:5;;25371:20;;25401:9;25456:1;25440:13;;:17;;;;:::i;:::-;25431:6;25415:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:42;25414:120;;;;;25517:16;;25507:6;25475:17;:29;25493:10;25475:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;25414:120;25401:134;;25549:4;25545:43;;;25576:1;25569:8;;25545:43;25628:4;25619:6;:13;;;;:::i;:::-;25606:9;:26;;25598:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25721:1;25709:9;;:13;;;;:::i;:::-;25700:6;25684:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;25676:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;25752:11;;;;;;;;;;;25744:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;25830:1;25819:8;;:12;;;;:::i;:::-;25810:6;:21;25802:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;25924:12;;25914:6;25886:25;25900:10;25886:13;:25::i;:::-;:34;;;;:::i;:::-;:50;;25865:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25997:4;25993:74;;;26050:6;26017:17;:29;26035:10;26017:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;25993:74;26077:29;26087:10;26099:6;26077:9;:29::i;:::-;25361:752;;25314:799;:::o;12679:294::-;12801:12;:10;:12::i;:::-;12789:24;;:8;:24;;;12785:54;;;12822:17;;;;;;;;;;;;;;12785:54;12895:8;12850:18;:32;12869:12;:10;:12::i;:::-;12850:32;;;;;;;;;;;;;;;:42;12883:8;12850:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;12947:8;12918:48;;12933:12;:10;:12::i;:::-;12918:48;;;12957:8;12918:48;;;;;;:::i;:::-;;;;;;;;12679:294;;:::o;24984:36::-;;;;:::o;13782:332::-;13943:28;13953:4;13959:2;13963:7;13943:9;:28::i;:::-;13986:48;14009:4;14015:2;14019:7;14028:5;13986:22;:48::i;:::-;13981:127;;14057:40;;;;;;;;;;;;;;13981:127;13782:332;;;;:::o;26231:409::-;26344:13;26394:16;26402:7;26394;:16::i;:::-;26373:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26512:8;;;;;;;;;;;:121;;26620:13;26512:121;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26563:7;26572:18;:7;:16;:18::i;:::-;26546:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26512:121;26493:140;;26231:409;;;:::o;25027:23::-;;;;;;;;;;;;;:::o;24829:32::-;;;;:::o;13039:206::-;13176:4;13203:18;:25;13222:5;13203:25;;;;;;;;;;;;;;;:35;13229:8;13203:35;;;;;;;;;;;;;;;;;;;;;;;;;13196:42;;13039:206;;;;:::o;2201:274::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2322:1:::1;2302:22;;:8;:22;;;;2281:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2432:8;2403:38;;2424:6;;;;;;;;;;;2403:38;;;;;;;;;;;;2460:8;2451:6;;:17;;;;;;;;;;;;;;;;;;2201:274:::0;:::o;24942:35::-;;;;:::o;24868:28::-;;;;:::o;26738:98::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26826:3:::1;26810:13;:19;;;;;;;;;;;;:::i;:::-;;26738:98:::0;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;14360:142:11:-;14417:4;14450:13;;14440:7;:23;:55;;;;;14468:11;:20;14480:7;14468:20;;;;;;;;;;;:27;;;;;;;;;;;;14467:28;14440:55;14433:62;;14360:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;21486:189:11:-;21623:2;21596:15;:24;21612:7;21596:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21660:7;21656:2;21640:28;;21649:5;21640:28;;;;;;;;;;;;21486:189;;;:::o;17042:2092::-;17152:35;17190:20;17202:7;17190:11;:20::i;:::-;17152:58;;17221:22;17263:13;:18;;;17247:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;17297:50;17314:13;:18;;;17334:12;:10;:12::i;:::-;17297:16;:50::i;:::-;17247:100;:152;;;;17387:12;:10;:12::i;:::-;17363:36;;:20;17375:7;17363:11;:20::i;:::-;:36;;;17247:152;17221:179;;17416:17;17411:66;;17442:35;;;;;;;;;;;;;;17411:66;17513:4;17491:26;;:13;:18;;;:26;;;17487:67;;17526:28;;;;;;;;;;;;;;17487:67;17582:1;17568:16;;:2;:16;;;17564:52;;;17593:23;;;;;;;;;;;;;;17564:52;17627:43;17649:4;17655:2;17659:7;17668:1;17627:21;:43::i;:::-;17732:49;17749:1;17753:7;17762:13;:18;;;17732:8;:49::i;:::-;18101:1;18071:12;:18;18084:4;18071:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18144:1;18116:12;:16;18129:2;18116:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18188:2;18160:11;:20;18172:7;18160:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;18249:15;18204:11;:20;18216:7;18204:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;18513:19;18545:1;18535:7;:11;18513:33;;18605:1;18564:43;;:11;:24;18576:11;18564:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;18560:463;;;18786:13;;18772:11;:27;18768:241;;;18855:13;:18;;;18823:11;:24;18835:11;18823:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;18937:13;:53;;;18895:11;:24;18907:11;18895:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;18768:241;18560:463;18047:986;19067:7;19063:2;19048:27;;19057:4;19048:27;;;;;;;;;;;;19085:42;19106:4;19112:2;19116:7;19125:1;19085:20;:42::i;:::-;17142:1992;;17042:2092;;;:::o;9507:1084::-;9592:21;;:::i;:::-;9629:12;9644:7;9629:22;;9697:13;;9690:4;:20;9686:841;;;9730:31;9764:11;:17;9776:4;9764:17;;;;;;;;;;;9730:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9804:9;:16;;;9799:714;;9874:1;9848:28;;:9;:14;;;:28;;;9844:99;;9911:9;9904:16;;;;;;9844:99;10240:255;10247:4;10240:255;;;10279:6;;;;;;;;10323:11;:17;10335:4;10323:17;;;;;;;;;;;10311:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10396:1;10370:28;;:9;:14;;;:28;;;10366:107;;10437:9;10430:16;;;;;;10366:107;10240:255;;;9799:714;9712:815;9686:841;10553:31;;;;;;;;;;;;;;9507:1084;;;;:::o;8897:204::-;8958:7;8998:1;8981:19;;:5;:19;;;8977:59;;;9009:27;;;;;;;;;;;;;;8977:59;9061:12;:19;9074:5;9061:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;9053:41;;9046:48;;8897:204;;;:::o;14508:102::-;14576:27;14586:2;14590:8;14576:27;;;;;;;;;;;;:9;:27::i;:::-;14508:102;;:::o;22228:895::-;22378:4;22398:15;:2;:13;;;:15::i;:::-;22394:723;;;22465:2;22449:36;;;22507:12;:10;:12::i;:::-;22541:4;22567:7;22596:5;22449:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;22429:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22819:1;22802:6;:13;:18;22798:253;;;22851:40;;;;;;;;;;;;;;22798:253;23003:6;22997:13;22988:6;22984:2;22980:15;22973:38;22429:636;22691:45;;;22681:55;;;:6;:55;;;;22674:62;;;;;22394:723;23102:4;23095:11;;22228:895;;;;;;;:::o;328:703:10:-;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;23754:154:11:-;;;;;:::o;24549:153::-;;;;;:::o;14961:157::-;15079:32;15085:2;15089:8;15099:5;15106:4;15079:5;:32::i;:::-;14961:157;;;:::o;15365:1435::-;15498:20;15521:13;;15498:36;;15562:1;15548:16;;:2;:16;;;15544:48;;;15573:19;;;;;;;;;;;;;;15544:48;15618:1;15606:8;:13;15602:44;;;15628:18;;;;;;;;;;;;;;15602:44;15657:61;15687:1;15691:2;15695:12;15709:8;15657:21;:61::i;:::-;16024:8;15989:12;:16;16002:2;15989:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16087:8;16047:12;:16;16060:2;16047:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144:2;16111:11;:25;16123:12;16111:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16210:15;16160:11;:25;16172:12;16160:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;16241:20;16264:12;16241:35;;16296:9;16291:380;16311:8;16307:1;:12;16291:380;;;16374:12;16370:2;16349:38;;16366:1;16349:38;;;;;;;;;;;;16430:4;:88;;;;;16459:59;16490:1;16494:2;16498:12;16512:5;16459:22;:59::i;:::-;16458:60;16430:88;16405:220;;;16566:40;;;;;;;;;;;;;;16405:220;16642:14;;;;;;;16321:3;;;;;;;16291:380;;;;16701:12;16685:13;:28;;;;15965:759;16733:60;16762:1;16766:2;16770:12;16784:8;16733:20;:60::i;:::-;15488:1312;15365:1435;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:365::-;9533:3;9554:66;9618:1;9613:3;9554:66;:::i;:::-;9547:73;;9629:93;9718:3;9629:93;:::i;:::-;9747:2;9742:3;9738:12;9731:19;;9391:365;;;:::o;9762:366::-;9904:3;9925:67;9989:2;9984:3;9925:67;:::i;:::-;9918:74;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9762:366;;;:::o;10134:::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:400::-;10666:3;10687:84;10769:1;10764:3;10687:84;:::i;:::-;10680:91;;10780:93;10869:3;10780:93;:::i;:::-;10898:1;10893:3;10889:11;10882:18;;10506:400;;;:::o;10912:366::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:::-;11798:3;11819:67;11883:2;11878:3;11819:67;:::i;:::-;11812:74;;11895:93;11984:3;11895:93;:::i;:::-;12013:2;12008:3;12004:12;11997:19;;11656:366;;;:::o;12028:::-;12170:3;12191:67;12255:2;12250:3;12191:67;:::i;:::-;12184:74;;12267:93;12356:3;12267:93;:::i;:::-;12385:2;12380:3;12376:12;12369:19;;12028:366;;;:::o;12400:398::-;12559:3;12580:83;12661:1;12656:3;12580:83;:::i;:::-;12573:90;;12672:93;12761:3;12672:93;:::i;:::-;12790:1;12785:3;12781:11;12774:18;;12400:398;;;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:::-;13318:3;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13176:366;;;:::o;13548:118::-;13635:24;13653:5;13635:24;:::i;:::-;13630:3;13623:37;13548:118;;:::o;13672:695::-;13950:3;13972:92;14060:3;14051:6;13972:92;:::i;:::-;13965:99;;14081:95;14172:3;14163:6;14081:95;:::i;:::-;14074:102;;14193:148;14337:3;14193:148;:::i;:::-;14186:155;;14358:3;14351:10;;13672:695;;;;;:::o;14373:379::-;14557:3;14579:147;14722:3;14579:147;:::i;:::-;14572:154;;14743:3;14736:10;;14373:379;;;:::o;14758:222::-;14851:4;14889:2;14878:9;14874:18;14866:26;;14902:71;14970:1;14959:9;14955:17;14946:6;14902:71;:::i;:::-;14758:222;;;;:::o;14986:640::-;15181:4;15219:3;15208:9;15204:19;15196:27;;15233:71;15301:1;15290:9;15286:17;15277:6;15233:71;:::i;:::-;15314:72;15382:2;15371:9;15367:18;15358:6;15314:72;:::i;:::-;15396;15464:2;15453:9;15449:18;15440:6;15396:72;:::i;:::-;15515:9;15509:4;15505:20;15500:2;15489:9;15485:18;15478:48;15543:76;15614:4;15605:6;15543:76;:::i;:::-;15535:84;;14986:640;;;;;;;:::o;15632:210::-;15719:4;15757:2;15746:9;15742:18;15734:26;;15770:65;15832:1;15821:9;15817:17;15808:6;15770:65;:::i;:::-;15632:210;;;;:::o;15848:313::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:78;16149:4;16140:6;16076:78;:::i;:::-;16068:86;;15848:313;;;;:::o;16167:419::-;16333:4;16371:2;16360:9;16356:18;16348:26;;16420:9;16414:4;16410:20;16406:1;16395:9;16391:17;16384:47;16448:131;16574:4;16448:131;:::i;:::-;16440:139;;16167:419;;;:::o;16592:::-;16758:4;16796:2;16785:9;16781:18;16773:26;;16845:9;16839:4;16835:20;16831:1;16820:9;16816:17;16809:47;16873:131;16999:4;16873:131;:::i;:::-;16865:139;;16592:419;;;:::o;17017:::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:::-;17608:4;17646:2;17635:9;17631:18;17623:26;;17695:9;17689:4;17685:20;17681:1;17670:9;17666:17;17659:47;17723:131;17849:4;17723:131;:::i;:::-;17715:139;;17442:419;;;:::o;17867:::-;18033:4;18071:2;18060:9;18056:18;18048:26;;18120:9;18114:4;18110:20;18106:1;18095:9;18091:17;18084:47;18148:131;18274:4;18148:131;:::i;:::-;18140:139;;17867:419;;;:::o;18292:::-;18458:4;18496:2;18485:9;18481:18;18473:26;;18545:9;18539:4;18535:20;18531:1;18520:9;18516:17;18509:47;18573:131;18699:4;18573:131;:::i;:::-;18565:139;;18292:419;;;:::o;18717:::-;18883:4;18921:2;18910:9;18906:18;18898:26;;18970:9;18964:4;18960:20;18956:1;18945:9;18941:17;18934:47;18998:131;19124:4;18998:131;:::i;:::-;18990:139;;18717:419;;;:::o;19142:::-;19308:4;19346:2;19335:9;19331:18;19323:26;;19395:9;19389:4;19385:20;19381:1;19370:9;19366:17;19359:47;19423:131;19549:4;19423:131;:::i;:::-;19415:139;;19142:419;;;:::o;19567:::-;19733:4;19771:2;19760:9;19756:18;19748:26;;19820:9;19814:4;19810:20;19806:1;19795:9;19791:17;19784:47;19848:131;19974:4;19848:131;:::i;:::-;19840:139;;19567:419;;;:::o;19992:222::-;20085:4;20123:2;20112:9;20108:18;20100:26;;20136:71;20204:1;20193:9;20189:17;20180:6;20136:71;:::i;:::-;19992:222;;;;:::o;20220:129::-;20254:6;20281:20;;:::i;:::-;20271:30;;20310:33;20338:4;20330:6;20310:33;:::i;:::-;20220:129;;;:::o;20355:75::-;20388:6;20421:2;20415:9;20405:19;;20355:75;:::o;20436:307::-;20497:4;20587:18;20579:6;20576:30;20573:56;;;20609:18;;:::i;:::-;20573:56;20647:29;20669:6;20647:29;:::i;:::-;20639:37;;20731:4;20725;20721:15;20713:23;;20436:307;;;:::o;20749:308::-;20811:4;20901:18;20893:6;20890:30;20887:56;;;20923:18;;:::i;:::-;20887:56;20961:29;20983:6;20961:29;:::i;:::-;20953:37;;21045:4;21039;21035:15;21027:23;;20749:308;;;:::o;21063:141::-;21112:4;21135:3;21127:11;;21158:3;21155:1;21148:14;21192:4;21189:1;21179:18;21171:26;;21063:141;;;:::o;21210:98::-;21261:6;21295:5;21289:12;21279:22;;21210:98;;;:::o;21314:99::-;21366:6;21400:5;21394:12;21384:22;;21314:99;;;:::o;21419:168::-;21502:11;21536:6;21531:3;21524:19;21576:4;21571:3;21567:14;21552:29;;21419:168;;;;:::o;21593:147::-;21694:11;21731:3;21716:18;;21593:147;;;;:::o;21746:169::-;21830:11;21864:6;21859:3;21852:19;21904:4;21899:3;21895:14;21880:29;;21746:169;;;;:::o;21921:148::-;22023:11;22060:3;22045:18;;21921:148;;;;:::o;22075:305::-;22115:3;22134:20;22152:1;22134:20;:::i;:::-;22129:25;;22168:20;22186:1;22168:20;:::i;:::-;22163:25;;22322:1;22254:66;22250:74;22247:1;22244:81;22241:107;;;22328:18;;:::i;:::-;22241:107;22372:1;22369;22365:9;22358:16;;22075:305;;;;:::o;22386:185::-;22426:1;22443:20;22461:1;22443:20;:::i;:::-;22438:25;;22477:20;22495:1;22477:20;:::i;:::-;22472:25;;22516:1;22506:35;;22521:18;;:::i;:::-;22506:35;22563:1;22560;22556:9;22551:14;;22386:185;;;;:::o;22577:348::-;22617:7;22640:20;22658:1;22640:20;:::i;:::-;22635:25;;22674:20;22692:1;22674:20;:::i;:::-;22669:25;;22862:1;22794:66;22790:74;22787:1;22784:81;22779:1;22772:9;22765:17;22761:105;22758:131;;;22869:18;;:::i;:::-;22758:131;22917:1;22914;22910:9;22899:20;;22577:348;;;;:::o;22931:191::-;22971:4;22991:20;23009:1;22991:20;:::i;:::-;22986:25;;23025:20;23043:1;23025:20;:::i;:::-;23020:25;;23064:1;23061;23058:8;23055:34;;;23069:18;;:::i;:::-;23055:34;23114:1;23111;23107:9;23099:17;;22931:191;;;;:::o;23128:96::-;23165:7;23194:24;23212:5;23194:24;:::i;:::-;23183:35;;23128:96;;;:::o;23230:90::-;23264:7;23307:5;23300:13;23293:21;23282:32;;23230:90;;;:::o;23326:149::-;23362:7;23402:66;23395:5;23391:78;23380:89;;23326:149;;;:::o;23481:126::-;23518:7;23558:42;23551:5;23547:54;23536:65;;23481:126;;;:::o;23613:77::-;23650:7;23679:5;23668:16;;23613:77;;;:::o;23696:154::-;23780:6;23775:3;23770;23757:30;23842:1;23833:6;23828:3;23824:16;23817:27;23696:154;;;:::o;23856:307::-;23924:1;23934:113;23948:6;23945:1;23942:13;23934:113;;;24033:1;24028:3;24024:11;24018:18;24014:1;24009:3;24005:11;23998:39;23970:2;23967:1;23963:10;23958:15;;23934:113;;;24065:6;24062:1;24059:13;24056:101;;;24145:1;24136:6;24131:3;24127:16;24120:27;24056:101;23905:258;23856:307;;;:::o;24169:320::-;24213:6;24250:1;24244:4;24240:12;24230:22;;24297:1;24291:4;24287:12;24318:18;24308:81;;24374:4;24366:6;24362:17;24352:27;;24308:81;24436:2;24428:6;24425:14;24405:18;24402:38;24399:84;;;24455:18;;:::i;:::-;24399:84;24220:269;24169:320;;;:::o;24495:281::-;24578:27;24600:4;24578:27;:::i;:::-;24570:6;24566:40;24708:6;24696:10;24693:22;24672:18;24660:10;24657:34;24654:62;24651:88;;;24719:18;;:::i;:::-;24651:88;24759:10;24755:2;24748:22;24538:238;24495:281;;:::o;24782:233::-;24821:3;24844:24;24862:5;24844:24;:::i;:::-;24835:33;;24890:66;24883:5;24880:77;24877:103;;;24960:18;;:::i;:::-;24877:103;25007:1;25000:5;24996:13;24989:20;;24782:233;;;:::o;25021:176::-;25053:1;25070:20;25088:1;25070:20;:::i;:::-;25065:25;;25104:20;25122:1;25104:20;:::i;:::-;25099:25;;25143:1;25133:35;;25148:18;;:::i;:::-;25133:35;25189:1;25186;25182:9;25177:14;;25021:176;;;;:::o;25203:180::-;25251:77;25248:1;25241:88;25348:4;25345:1;25338:15;25372:4;25369:1;25362:15;25389:180;25437:77;25434:1;25427:88;25534:4;25531:1;25524:15;25558:4;25555:1;25548:15;25575:180;25623:77;25620:1;25613:88;25720:4;25717:1;25710:15;25744:4;25741:1;25734:15;25761:180;25809:77;25806:1;25799:88;25906:4;25903:1;25896:15;25930:4;25927:1;25920:15;25947:180;25995:77;25992:1;25985:88;26092:4;26089:1;26082:15;26116:4;26113:1;26106:15;26133:117;26242:1;26239;26232:12;26256:117;26365:1;26362;26355:12;26379:117;26488:1;26485;26478:12;26502:117;26611:1;26608;26601:12;26625:102;26666:6;26717:2;26713:7;26708:2;26701:5;26697:14;26693:28;26683:38;;26625:102;;;:::o;26733:157::-;26873:9;26869:1;26861:6;26857:14;26850:33;26733:157;:::o;26896:225::-;27036:34;27032:1;27024:6;27020:14;27013:58;27105:8;27100:2;27092:6;27088:15;27081:33;26896:225;:::o;27127:170::-;27267:22;27263:1;27255:6;27251:14;27244:46;27127:170;:::o;27303:155::-;27443:7;27439:1;27431:6;27427:14;27420:31;27303:155;:::o;27464:182::-;27604:34;27600:1;27592:6;27588:14;27581:58;27464:182;:::o;27652:174::-;27792:26;27788:1;27780:6;27776:14;27769:50;27652:174;:::o;27832:234::-;27972:34;27968:1;27960:6;27956:14;27949:58;28041:17;28036:2;28028:6;28024:15;28017:42;27832:234;:::o;28072:179::-;28212:31;28208:1;28200:6;28196:14;28189:55;28072:179;:::o;28257:114::-;;:::o;28377:166::-;28517:18;28513:1;28505:6;28501:14;28494:42;28377:166;:::o;28549:169::-;28689:21;28685:1;28677:6;28673:14;28666:45;28549:169;:::o;28724:122::-;28797:24;28815:5;28797:24;:::i;:::-;28790:5;28787:35;28777:63;;28836:1;28833;28826:12;28777:63;28724:122;:::o;28852:116::-;28922:21;28937:5;28922:21;:::i;:::-;28915:5;28912:32;28902:60;;28958:1;28955;28948:12;28902:60;28852:116;:::o;28974:120::-;29046:23;29063:5;29046:23;:::i;:::-;29039:5;29036:34;29026:62;;29084:1;29081;29074:12;29026:62;28974:120;:::o;29100:122::-;29173:24;29191:5;29173:24;:::i;:::-;29166:5;29163:35;29153:63;;29212:1;29209;29202:12;29153:63;29100:122;:::o

Swarm Source

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