ETH Price: $2,483.08 (-1.60%)

Token

FeetPix (FEET)
 

Overview

Max Total Supply

711 FEET

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 FEET
0x7991f448c04ea4fa0939716d9c61eadafb3b1548
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:
FeetPix

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-15
*/

// FeetPix Phase 2 

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

// File: new2.sol


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

pragma solidity ^0.8.7;

contract FeetPix is Ownable,ERC721A{
 using Strings for uint256;
 using Counters for Counters.Counter;
 Counters.Counter private supply;


string public uriPrefix = "ipfs://QmUJCsXuNXZpCFFiZe2ZHP7fMMFmez4BgnzViizm9RX7Y2/";
  string public uriSuffix = "";
  string public hiddenMetadataUri;

  uint256 public cost = 0.00444 ether;
  uint256 public maxSupply = 2222;
  uint256 public maxMintAmountPerTx = 4;

  bool public paused = false;
  bool public revealed = true;

  constructor() ERC721A("FeetPix", "FEET") {  }

    function mint(uint256 Amount) external payable mintCompliance(Amount) {
    require(!paused, "The contract is paused!");
    require(totalSupply()+Amount <maxSupply,"this would Oversell");
    require(msg.value >= cost * Amount, "Insufficient funds!");
    _safeMint(msg.sender, Amount);
  }



  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }


function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
 modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }


 function withdraw() public onlyOwner {


    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620037ce60369139600a90805190602001906200003592919062000265565b5060405180602001604052806000815250600b90805190602001906200005d92919062000265565b50660fc6280ecd8000600d556108ae600e556004600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600781526020017f46656574506978000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464545540000000000000000000000000000000000000000000000000000000081525062000144620001386200019460201b60201c565b6200019c60201b60201c565b81600390805190602001906200015c92919062000265565b5080600490805190602001906200017592919062000265565b50620001866200026060201b60201c565b60018190555050506200037a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002739062000315565b90600052602060002090601f016020900481019282620002975760008555620002e3565b82601f10620002b257805160ff1916838001178555620002e3565b82800160010185558215620002e3579182015b82811115620002e2578251825591602001919060010190620002c5565b5b509050620002f29190620002f6565b5090565b5b8082111562000311576000816000905550600101620002f7565b5090565b600060028204905060018216806200032e57607f821691505b602082108114156200034557620003446200034b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613444806200038a6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612790565b61077b565b6040516102279190612c7e565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b6040516102529190612c99565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612833565b61089f565b60405161028f9190612bf5565b60405180910390f35b6102b260048036038101906102ad9190612723565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d69190612dbb565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906127ea565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612763565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b6040516103539190612dbb565b60405180910390f35b6103766004803603810190610371919061260d565b610ac6565b005b34801561038457600080fd5b5061038d610deb565b005b6103a960048036038101906103a4919061260d565b610e73565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125a0565b610e93565b6040516103df9190612c5c565b60405180910390f35b3480156103f457600080fd5b506103fd610f9e565b60405161040a9190612c7e565b60405180910390f35b34801561041f57600080fd5b50610428610fb1565b6040516104359190612c99565b60405180910390f35b34801561044a57600080fd5b5061045361103f565b6040516104609190612c7e565b60405180910390f35b34801561047557600080fd5b5061047e611052565b60405161048b9190612c99565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612833565b6110e0565b6040516104c89190612bf5565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906125a0565b6110f2565b6040516105059190612dbb565b60405180910390f35b34801561051a57600080fd5b506105236111ab565b005b34801561053157600080fd5b5061054c600480360381019061054791906127ea565b6111bf565b005b34801561055a57600080fd5b506105636111e1565b6040516105709190612bf5565b60405180910390f35b34801561058557600080fd5b5061058e61120a565b60405161059b9190612dbb565b60405180910390f35b3480156105b057600080fd5b506105b9611210565b6040516105c69190612c99565b60405180910390f35b6105e960048036038101906105e49190612833565b6112a2565b005b3480156105f757600080fd5b50610612600480360381019061060d91906126e3565b611451565b005b34801561062057600080fd5b5061062961155c565b6040516106369190612c99565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612833565b6115ea565b005b610682600480360381019061067d9190612660565b6115fc565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612833565b61166f565b6040516106b89190612c99565b60405180910390f35b3480156106cd57600080fd5b506106d66117c8565b6040516106e39190612dbb565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906125cd565b6117ce565b6040516107209190612c7e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612860565b611862565b005b34801561075e57600080fd5b50610779600480360381019061077491906125a0565b611924565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c9061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061305f565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a8565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a07565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a07565b6117ce565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a0f565b80600b9080519060200190610a869291906123b4565b5050565b610a92611a0f565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a8d565b6002546001540303905090565b6000610ad182611a92565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b60565b91509150610b5a8187610b55611a07565b611b87565b610ba657610b6f86610b6a611a07565b6117ce565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1a8686866001611bcb565b8015610c2557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf385610ccf888887611bd1565b7c020000000000000000000000000000000000000000000000000000000017611bf9565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d7b576000600185019050600060056000838152602001908152602001600020541415610d79576001548114610d78578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de38686866001611c24565b505050505050565b610df3611a0f565b6000610dfd6111e1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2090612be0565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e838383604051806020016040528060008152506115fc565b505050565b60606000610ea0836110f2565b905060008167ffffffffffffffff811115610ebe57610ebd6131c7565b5b604051908082528060200260200182016040528015610eec5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f095750600e548211155b15610f92576000610f19836110e0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e5782848381518110610f6357610f62613198565b5b6020026020010181815250508180610f7a906130c2565b9250505b8280610f89906130c2565b93505050610ef8565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fbe9061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea9061305f565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461108b9061305f565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b505050505081565b60006110eb82611a92565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611a0f565b6111bd6000611c2a565b565b6111c7611a0f565b80600a90805190602001906111dd9291906123b4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461121f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b9061305f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b806000811180156112b55750600f548111155b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612cdb565b60405180910390fd5b600e54816113026009611cee565b61130c9190612ef9565b111561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490612d7b565b60405180910390fd5b601060009054906101000a900460ff161561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490612d3b565b60405180910390fd5b600e54826113a9610aaf565b6113b39190612ef9565b106113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612cfb565b60405180910390fd5b81600d546114019190612f4f565b341015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612d9b565b60405180910390fd5b61144d3383611cfc565b5050565b806008600061145e611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150b611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115509190612c7e565b60405180910390a35050565b600c80546115699061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061305f565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2611a0f565b80600f8190555050565b611607848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d1a565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167a826119a8565b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090612d5b565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561176757600c80546116e29061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461170e9061305f565b801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b505050505090506117c3565b6000611771611e7a565b9050600081511161179157604051806020016040528060008152506117bf565b8061179b84611f0c565b600b6040516020016117af93929190612baf565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118755750600f548111155b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90612cdb565b60405180910390fd5b600e54816118c26009611cee565b6118cc9190612ef9565b111561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612d7b565b60405180910390fd5b611915611a0f565b61191f8284611cfc565b505050565b61192c611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612cbb565b60405180910390fd5b6119a581611c2a565b50565b6000816119b3611a8d565b111580156119c2575060015482105b8015611a00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a17611fe4565b73ffffffffffffffffffffffffffffffffffffffff16611a356111e1565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612d1b565b60405180910390fd5b565b600090565b60008082905080611aa1611a8d565b11611b2957600154811015611b285760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b26575b6000811415611b1c576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be8868684611fec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611d16828260405180602001604052806000815250611ff5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d40611a07565b8786866040518563ffffffff1660e01b8152600401611d629493929190612c10565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dad57506040513d601f19601f82011682018060405250810190611daa91906127bd565b60015b611e27573d8060008114611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b50600081511415611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e899061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb59061305f565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b5050505050905090565b606060006001611f1b84612093565b01905060008167ffffffffffffffff811115611f3a57611f396131c7565b5b6040519080825280601f01601f191660200182016040528015611f6c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611fd9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611fc357611fc261313a565b5b0494506000851415611fd457611fd9565b611f7a565b819350505050919050565b600033905090565b60009392505050565b611fff83836121e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208e5760006001549050600083820390505b6120406000868380600101945086611d1a565b612076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202d57816001541461208b57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120f1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120e7576120e661313a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061212e576d04ee2d6d415b85acef810000000083816121245761212361313a565b5b0492506020810190505b662386f26fc10000831061215d57662386f26fc1000083816121535761215261313a565b5b0492506010810190505b6305f5e1008310612186576305f5e100838161217c5761217b61313a565b5b0492506008810190505b61271083106121ab5761271083816121a1576121a061313a565b5b0492506004810190505b606483106121ce57606483816121c4576121c361313a565b5b0492506002810190505b600a83106121dd576001810190505b80915050919050565b600060015490506000821415612228576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122356000848385611bcb565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122ac8361229d6000866000611bd1565b6122a6856123a4565b17611bf9565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612312565b506000821415612389576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061239f6000848385611c24565b505050565b60006001821460e11b9050919050565b8280546123c09061305f565b90600052602060002090601f0160209004810192826123e25760008555612429565b82601f106123fb57805160ff1916838001178555612429565b82800160010185558215612429579182015b8281111561242857825182559160200191906001019061240d565b5b509050612436919061243a565b5090565b5b8082111561245357600081600090555060010161243b565b5090565b600061246a61246584612dfb565b612dd6565b905082815260208101848484011115612486576124856131fb565b5b61249184828561301d565b509392505050565b60006124ac6124a784612e2c565b612dd6565b9050828152602081018484840111156124c8576124c76131fb565b5b6124d384828561301d565b509392505050565b6000813590506124ea816133b2565b92915050565b6000813590506124ff816133c9565b92915050565b600081359050612514816133e0565b92915050565b600081519050612529816133e0565b92915050565b600082601f830112612544576125436131f6565b5b8135612554848260208601612457565b91505092915050565b600082601f830112612572576125716131f6565b5b8135612582848260208601612499565b91505092915050565b60008135905061259a816133f7565b92915050565b6000602082840312156125b6576125b5613205565b5b60006125c4848285016124db565b91505092915050565b600080604083850312156125e4576125e3613205565b5b60006125f2858286016124db565b9250506020612603858286016124db565b9150509250929050565b60008060006060848603121561262657612625613205565b5b6000612634868287016124db565b9350506020612645868287016124db565b92505060406126568682870161258b565b9150509250925092565b6000806000806080858703121561267a57612679613205565b5b6000612688878288016124db565b9450506020612699878288016124db565b93505060406126aa8782880161258b565b925050606085013567ffffffffffffffff8111156126cb576126ca613200565b5b6126d78782880161252f565b91505092959194509250565b600080604083850312156126fa576126f9613205565b5b6000612708858286016124db565b9250506020612719858286016124f0565b9150509250929050565b6000806040838503121561273a57612739613205565b5b6000612748858286016124db565b92505060206127598582860161258b565b9150509250929050565b60006020828403121561277957612778613205565b5b6000612787848285016124f0565b91505092915050565b6000602082840312156127a6576127a5613205565b5b60006127b484828501612505565b91505092915050565b6000602082840312156127d3576127d2613205565b5b60006127e18482850161251a565b91505092915050565b600060208284031215612800576127ff613205565b5b600082013567ffffffffffffffff81111561281e5761281d613200565b5b61282a8482850161255d565b91505092915050565b60006020828403121561284957612848613205565b5b60006128578482850161258b565b91505092915050565b6000806040838503121561287757612876613205565b5b60006128858582860161258b565b9250506020612896858286016124db565b9150509250929050565b60006128ac8383612b91565b60208301905092915050565b6128c181612fa9565b82525050565b60006128d282612e82565b6128dc8185612eb0565b93506128e783612e5d565b8060005b838110156129185781516128ff88826128a0565b975061290a83612ea3565b9250506001810190506128eb565b5085935050505092915050565b61292e81612fbb565b82525050565b600061293f82612e8d565b6129498185612ec1565b935061295981856020860161302c565b6129628161320a565b840191505092915050565b600061297882612e98565b6129828185612edd565b935061299281856020860161302c565b61299b8161320a565b840191505092915050565b60006129b182612e98565b6129bb8185612eee565b93506129cb81856020860161302c565b80840191505092915050565b600081546129e48161305f565b6129ee8186612eee565b94506001821660008114612a095760018114612a1a57612a4d565b60ff19831686528186019350612a4d565b612a2385612e6d565b60005b83811015612a4557815481890152600182019150602081019050612a26565b838801955050505b50505092915050565b6000612a63602683612edd565b9150612a6e8261321b565b604082019050919050565b6000612a86601483612edd565b9150612a918261326a565b602082019050919050565b6000612aa9601383612edd565b9150612ab482613293565b602082019050919050565b6000612acc602083612edd565b9150612ad7826132bc565b602082019050919050565b6000612aef601783612edd565b9150612afa826132e5565b602082019050919050565b6000612b12602f83612edd565b9150612b1d8261330e565b604082019050919050565b6000612b35600083612ed2565b9150612b408261335d565b600082019050919050565b6000612b58601483612edd565b9150612b6382613360565b602082019050919050565b6000612b7b601383612edd565b9150612b8682613389565b602082019050919050565b612b9a81613013565b82525050565b612ba981613013565b82525050565b6000612bbb82866129a6565b9150612bc782856129a6565b9150612bd382846129d7565b9150819050949350505050565b6000612beb82612b28565b9150819050919050565b6000602082019050612c0a60008301846128b8565b92915050565b6000608082019050612c2560008301876128b8565b612c3260208301866128b8565b612c3f6040830185612ba0565b8181036060830152612c518184612934565b905095945050505050565b60006020820190508181036000830152612c7681846128c7565b905092915050565b6000602082019050612c936000830184612925565b92915050565b60006020820190508181036000830152612cb3818461296d565b905092915050565b60006020820190508181036000830152612cd481612a56565b9050919050565b60006020820190508181036000830152612cf481612a79565b9050919050565b60006020820190508181036000830152612d1481612a9c565b9050919050565b60006020820190508181036000830152612d3481612abf565b9050919050565b60006020820190508181036000830152612d5481612ae2565b9050919050565b60006020820190508181036000830152612d7481612b05565b9050919050565b60006020820190508181036000830152612d9481612b4b565b9050919050565b60006020820190508181036000830152612db481612b6e565b9050919050565b6000602082019050612dd06000830184612ba0565b92915050565b6000612de0612df1565b9050612dec8282613091565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f8261320a565b9050602081019050919050565b600067ffffffffffffffff821115612e4757612e466131c7565b5b612e508261320a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0482613013565b9150612f0f83613013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4457612f4361310b565b5b828201905092915050565b6000612f5a82613013565b9150612f6583613013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9e57612f9d61310b565b5b828202905092915050565b6000612fb482612ff3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000600282049050600182168061307757607f821691505b6020821081141561308b5761308a613169565b5b50919050565b61309a8261320a565b810181811067ffffffffffffffff821117156130b9576130b86131c7565b5b80604052505050565b60006130cd82613013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff61310b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133bb81612fa9565b81146133c657600080fd5b50565b6133d281612fbb565b81146133dd57600080fd5b50565b6133e981612fc7565b81146133f457600080fd5b50565b61340081613013565b811461340b57600080fd5b5056fea2646970667358221220e4fa3b64416b768ce3a09ef943c71f9d0ef45648962d36433f3d5a4593773f9364736f6c63430008070033697066733a2f2f516d554a437358754e585a70434646695a65325a485037664d4d466d657a3442676e7a5669697a6d3952583759322f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612790565b61077b565b6040516102279190612c7e565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b6040516102529190612c99565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612833565b61089f565b60405161028f9190612bf5565b60405180910390f35b6102b260048036038101906102ad9190612723565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d69190612dbb565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906127ea565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612763565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b6040516103539190612dbb565b60405180910390f35b6103766004803603810190610371919061260d565b610ac6565b005b34801561038457600080fd5b5061038d610deb565b005b6103a960048036038101906103a4919061260d565b610e73565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125a0565b610e93565b6040516103df9190612c5c565b60405180910390f35b3480156103f457600080fd5b506103fd610f9e565b60405161040a9190612c7e565b60405180910390f35b34801561041f57600080fd5b50610428610fb1565b6040516104359190612c99565b60405180910390f35b34801561044a57600080fd5b5061045361103f565b6040516104609190612c7e565b60405180910390f35b34801561047557600080fd5b5061047e611052565b60405161048b9190612c99565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612833565b6110e0565b6040516104c89190612bf5565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906125a0565b6110f2565b6040516105059190612dbb565b60405180910390f35b34801561051a57600080fd5b506105236111ab565b005b34801561053157600080fd5b5061054c600480360381019061054791906127ea565b6111bf565b005b34801561055a57600080fd5b506105636111e1565b6040516105709190612bf5565b60405180910390f35b34801561058557600080fd5b5061058e61120a565b60405161059b9190612dbb565b60405180910390f35b3480156105b057600080fd5b506105b9611210565b6040516105c69190612c99565b60405180910390f35b6105e960048036038101906105e49190612833565b6112a2565b005b3480156105f757600080fd5b50610612600480360381019061060d91906126e3565b611451565b005b34801561062057600080fd5b5061062961155c565b6040516106369190612c99565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612833565b6115ea565b005b610682600480360381019061067d9190612660565b6115fc565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612833565b61166f565b6040516106b89190612c99565b60405180910390f35b3480156106cd57600080fd5b506106d66117c8565b6040516106e39190612dbb565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906125cd565b6117ce565b6040516107209190612c7e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612860565b611862565b005b34801561075e57600080fd5b50610779600480360381019061077491906125a0565b611924565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c9061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061305f565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a8565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a07565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a07565b6117ce565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a0f565b80600b9080519060200190610a869291906123b4565b5050565b610a92611a0f565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a8d565b6002546001540303905090565b6000610ad182611a92565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b60565b91509150610b5a8187610b55611a07565b611b87565b610ba657610b6f86610b6a611a07565b6117ce565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1a8686866001611bcb565b8015610c2557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf385610ccf888887611bd1565b7c020000000000000000000000000000000000000000000000000000000017611bf9565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d7b576000600185019050600060056000838152602001908152602001600020541415610d79576001548114610d78578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de38686866001611c24565b505050505050565b610df3611a0f565b6000610dfd6111e1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2090612be0565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e838383604051806020016040528060008152506115fc565b505050565b60606000610ea0836110f2565b905060008167ffffffffffffffff811115610ebe57610ebd6131c7565b5b604051908082528060200260200182016040528015610eec5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f095750600e548211155b15610f92576000610f19836110e0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e5782848381518110610f6357610f62613198565b5b6020026020010181815250508180610f7a906130c2565b9250505b8280610f89906130c2565b93505050610ef8565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fbe9061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea9061305f565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461108b9061305f565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b505050505081565b60006110eb82611a92565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611a0f565b6111bd6000611c2a565b565b6111c7611a0f565b80600a90805190602001906111dd9291906123b4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461121f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b9061305f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b806000811180156112b55750600f548111155b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612cdb565b60405180910390fd5b600e54816113026009611cee565b61130c9190612ef9565b111561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490612d7b565b60405180910390fd5b601060009054906101000a900460ff161561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490612d3b565b60405180910390fd5b600e54826113a9610aaf565b6113b39190612ef9565b106113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612cfb565b60405180910390fd5b81600d546114019190612f4f565b341015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612d9b565b60405180910390fd5b61144d3383611cfc565b5050565b806008600061145e611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150b611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115509190612c7e565b60405180910390a35050565b600c80546115699061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061305f565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2611a0f565b80600f8190555050565b611607848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d1a565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167a826119a8565b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090612d5b565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561176757600c80546116e29061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461170e9061305f565b801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b505050505090506117c3565b6000611771611e7a565b9050600081511161179157604051806020016040528060008152506117bf565b8061179b84611f0c565b600b6040516020016117af93929190612baf565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118755750600f548111155b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90612cdb565b60405180910390fd5b600e54816118c26009611cee565b6118cc9190612ef9565b111561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612d7b565b60405180910390fd5b611915611a0f565b61191f8284611cfc565b505050565b61192c611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612cbb565b60405180910390fd5b6119a581611c2a565b50565b6000816119b3611a8d565b111580156119c2575060015482105b8015611a00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a17611fe4565b73ffffffffffffffffffffffffffffffffffffffff16611a356111e1565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612d1b565b60405180910390fd5b565b600090565b60008082905080611aa1611a8d565b11611b2957600154811015611b285760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b26575b6000811415611b1c576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be8868684611fec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611d16828260405180602001604052806000815250611ff5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d40611a07565b8786866040518563ffffffff1660e01b8152600401611d629493929190612c10565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dad57506040513d601f19601f82011682018060405250810190611daa91906127bd565b60015b611e27573d8060008114611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b50600081511415611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e899061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb59061305f565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b5050505050905090565b606060006001611f1b84612093565b01905060008167ffffffffffffffff811115611f3a57611f396131c7565b5b6040519080825280601f01601f191660200182016040528015611f6c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611fd9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611fc357611fc261313a565b5b0494506000851415611fd457611fd9565b611f7a565b819350505050919050565b600033905090565b60009392505050565b611fff83836121e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208e5760006001549050600083820390505b6120406000868380600101945086611d1a565b612076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202d57816001541461208b57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120f1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120e7576120e661313a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061212e576d04ee2d6d415b85acef810000000083816121245761212361313a565b5b0492506020810190505b662386f26fc10000831061215d57662386f26fc1000083816121535761215261313a565b5b0492506010810190505b6305f5e1008310612186576305f5e100838161217c5761217b61313a565b5b0492506008810190505b61271083106121ab5761271083816121a1576121a061313a565b5b0492506004810190505b606483106121ce57606483816121c4576121c361313a565b5b0492506002810190505b600a83106121dd576001810190505b80915050919050565b600060015490506000821415612228576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122356000848385611bcb565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122ac8361229d6000866000611bd1565b6122a6856123a4565b17611bf9565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612312565b506000821415612389576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061239f6000848385611c24565b505050565b60006001821460e11b9050919050565b8280546123c09061305f565b90600052602060002090601f0160209004810192826123e25760008555612429565b82601f106123fb57805160ff1916838001178555612429565b82800160010185558215612429579182015b8281111561242857825182559160200191906001019061240d565b5b509050612436919061243a565b5090565b5b8082111561245357600081600090555060010161243b565b5090565b600061246a61246584612dfb565b612dd6565b905082815260208101848484011115612486576124856131fb565b5b61249184828561301d565b509392505050565b60006124ac6124a784612e2c565b612dd6565b9050828152602081018484840111156124c8576124c76131fb565b5b6124d384828561301d565b509392505050565b6000813590506124ea816133b2565b92915050565b6000813590506124ff816133c9565b92915050565b600081359050612514816133e0565b92915050565b600081519050612529816133e0565b92915050565b600082601f830112612544576125436131f6565b5b8135612554848260208601612457565b91505092915050565b600082601f830112612572576125716131f6565b5b8135612582848260208601612499565b91505092915050565b60008135905061259a816133f7565b92915050565b6000602082840312156125b6576125b5613205565b5b60006125c4848285016124db565b91505092915050565b600080604083850312156125e4576125e3613205565b5b60006125f2858286016124db565b9250506020612603858286016124db565b9150509250929050565b60008060006060848603121561262657612625613205565b5b6000612634868287016124db565b9350506020612645868287016124db565b92505060406126568682870161258b565b9150509250925092565b6000806000806080858703121561267a57612679613205565b5b6000612688878288016124db565b9450506020612699878288016124db565b93505060406126aa8782880161258b565b925050606085013567ffffffffffffffff8111156126cb576126ca613200565b5b6126d78782880161252f565b91505092959194509250565b600080604083850312156126fa576126f9613205565b5b6000612708858286016124db565b9250506020612719858286016124f0565b9150509250929050565b6000806040838503121561273a57612739613205565b5b6000612748858286016124db565b92505060206127598582860161258b565b9150509250929050565b60006020828403121561277957612778613205565b5b6000612787848285016124f0565b91505092915050565b6000602082840312156127a6576127a5613205565b5b60006127b484828501612505565b91505092915050565b6000602082840312156127d3576127d2613205565b5b60006127e18482850161251a565b91505092915050565b600060208284031215612800576127ff613205565b5b600082013567ffffffffffffffff81111561281e5761281d613200565b5b61282a8482850161255d565b91505092915050565b60006020828403121561284957612848613205565b5b60006128578482850161258b565b91505092915050565b6000806040838503121561287757612876613205565b5b60006128858582860161258b565b9250506020612896858286016124db565b9150509250929050565b60006128ac8383612b91565b60208301905092915050565b6128c181612fa9565b82525050565b60006128d282612e82565b6128dc8185612eb0565b93506128e783612e5d565b8060005b838110156129185781516128ff88826128a0565b975061290a83612ea3565b9250506001810190506128eb565b5085935050505092915050565b61292e81612fbb565b82525050565b600061293f82612e8d565b6129498185612ec1565b935061295981856020860161302c565b6129628161320a565b840191505092915050565b600061297882612e98565b6129828185612edd565b935061299281856020860161302c565b61299b8161320a565b840191505092915050565b60006129b182612e98565b6129bb8185612eee565b93506129cb81856020860161302c565b80840191505092915050565b600081546129e48161305f565b6129ee8186612eee565b94506001821660008114612a095760018114612a1a57612a4d565b60ff19831686528186019350612a4d565b612a2385612e6d565b60005b83811015612a4557815481890152600182019150602081019050612a26565b838801955050505b50505092915050565b6000612a63602683612edd565b9150612a6e8261321b565b604082019050919050565b6000612a86601483612edd565b9150612a918261326a565b602082019050919050565b6000612aa9601383612edd565b9150612ab482613293565b602082019050919050565b6000612acc602083612edd565b9150612ad7826132bc565b602082019050919050565b6000612aef601783612edd565b9150612afa826132e5565b602082019050919050565b6000612b12602f83612edd565b9150612b1d8261330e565b604082019050919050565b6000612b35600083612ed2565b9150612b408261335d565b600082019050919050565b6000612b58601483612edd565b9150612b6382613360565b602082019050919050565b6000612b7b601383612edd565b9150612b8682613389565b602082019050919050565b612b9a81613013565b82525050565b612ba981613013565b82525050565b6000612bbb82866129a6565b9150612bc782856129a6565b9150612bd382846129d7565b9150819050949350505050565b6000612beb82612b28565b9150819050919050565b6000602082019050612c0a60008301846128b8565b92915050565b6000608082019050612c2560008301876128b8565b612c3260208301866128b8565b612c3f6040830185612ba0565b8181036060830152612c518184612934565b905095945050505050565b60006020820190508181036000830152612c7681846128c7565b905092915050565b6000602082019050612c936000830184612925565b92915050565b60006020820190508181036000830152612cb3818461296d565b905092915050565b60006020820190508181036000830152612cd481612a56565b9050919050565b60006020820190508181036000830152612cf481612a79565b9050919050565b60006020820190508181036000830152612d1481612a9c565b9050919050565b60006020820190508181036000830152612d3481612abf565b9050919050565b60006020820190508181036000830152612d5481612ae2565b9050919050565b60006020820190508181036000830152612d7481612b05565b9050919050565b60006020820190508181036000830152612d9481612b4b565b9050919050565b60006020820190508181036000830152612db481612b6e565b9050919050565b6000602082019050612dd06000830184612ba0565b92915050565b6000612de0612df1565b9050612dec8282613091565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f8261320a565b9050602081019050919050565b600067ffffffffffffffff821115612e4757612e466131c7565b5b612e508261320a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0482613013565b9150612f0f83613013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4457612f4361310b565b5b828201905092915050565b6000612f5a82613013565b9150612f6583613013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9e57612f9d61310b565b5b828202905092915050565b6000612fb482612ff3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000600282049050600182168061307757607f821691505b6020821081141561308b5761308a613169565b5b50919050565b61309a8261320a565b810181811067ffffffffffffffff821117156130b9576130b86131c7565b5b80604052505050565b60006130cd82613013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff61310b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133bb81612fa9565b81146133c657600080fd5b50565b6133d281612fbb565b81146133dd57600080fd5b50565b6133e981612fc7565b81146133f457600080fd5b50565b61340081613013565b811461340b57600080fd5b5056fea2646970667358221220e4fa3b64416b768ce3a09ef943c71f9d0ef45648962d36433f3d5a4593773f9364736f6c63430008070033

Deployed Bytecode Sourcemap

71237:3401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18360:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19262:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25753:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25186:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71540:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72489:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72595:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15013:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29392:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74165:466;;;;;;;;;;;;;:::i;:::-;;32313:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72786:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71691:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71469:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71660:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71382:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20655:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16197:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54167:103;;;;;;;;;;;;;:::i;:::-;;72383:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53519:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71616:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19438:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71778:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26311:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71502:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72247:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33104:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73427:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71580:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26702:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72084:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54425:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18360:639;18445:4;18784:10;18769:25;;:11;:25;;;;:102;;;;18861:10;18846:25;;:11;:25;;;;18769:102;:179;;;;18938:10;18923:25;;:11;:25;;;;18769:179;18749:199;;18360:639;;;:::o;19262:100::-;19316:13;19349:5;19342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19262:100;:::o;25753:218::-;25829:7;25854:16;25862:7;25854;:16::i;:::-;25849:64;;25879:34;;;;;;;;;;;;;;25849:64;25933:15;:24;25949:7;25933:24;;;;;;;;;;;:30;;;;;;;;;;;;25926:37;;25753:218;;;:::o;25186:408::-;25275:13;25291:16;25299:7;25291;:16::i;:::-;25275:32;;25347:5;25324:28;;:19;:17;:19::i;:::-;:28;;;25320:175;;25372:44;25389:5;25396:19;:17;:19::i;:::-;25372:16;:44::i;:::-;25367:128;;25444:35;;;;;;;;;;;;;;25367:128;25320:175;25540:2;25507:15;:24;25523:7;25507:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25578:7;25574:2;25558:28;;25567:5;25558:28;;;;;;;;;;;;25264:330;25186:408;;:::o;71540:35::-;;;;:::o;72489:100::-;53405:13;:11;:13::i;:::-;72573:10:::1;72561:9;:22;;;;;;;;;;;;:::i;:::-;;72489:100:::0;:::o;72595:77::-;53405:13;:11;:13::i;:::-;72660:6:::1;72651;;:15;;;;;;;;;;;;;;;;;;72595:77:::0;:::o;15013:323::-;15074:7;15302:15;:13;:15::i;:::-;15287:12;;15271:13;;:28;:46;15264:53;;15013:323;:::o;29392:2825::-;29534:27;29564;29583:7;29564:18;:27::i;:::-;29534:57;;29649:4;29608:45;;29624:19;29608:45;;;29604:86;;29662:28;;;;;;;;;;;;;;29604:86;29704:27;29733:23;29760:35;29787:7;29760:26;:35::i;:::-;29703:92;;;;29895:68;29920:15;29937:4;29943:19;:17;:19::i;:::-;29895:24;:68::i;:::-;29890:180;;29983:43;30000:4;30006:19;:17;:19::i;:::-;29983:16;:43::i;:::-;29978:92;;30035:35;;;;;;;;;;;;;;29978:92;29890:180;30101:1;30087:16;;:2;:16;;;30083:52;;;30112:23;;;;;;;;;;;;;;30083:52;30148:43;30170:4;30176:2;30180:7;30189:1;30148:21;:43::i;:::-;30284:15;30281:160;;;30424:1;30403:19;30396:30;30281:160;30821:18;:24;30840:4;30821:24;;;;;;;;;;;;;;;;30819:26;;;;;;;;;;;;30890:18;:22;30909:2;30890:22;;;;;;;;;;;;;;;;30888:24;;;;;;;;;;;31212:146;31249:2;31298:45;31313:4;31319:2;31323:19;31298:14;:45::i;:::-;11412:8;31270:73;31212:18;:146::i;:::-;31183:17;:26;31201:7;31183:26;;;;;;;;;;;:175;;;;31529:1;11412:8;31478:19;:47;:52;31474:627;;;31551:19;31583:1;31573:7;:11;31551:33;;31740:1;31706:17;:30;31724:11;31706:30;;;;;;;;;;;;:35;31702:384;;;31844:13;;31829:11;:28;31825:242;;32024:19;31991:17;:30;32009:11;31991:30;;;;;;;;;;;:52;;;;31825:242;31702:384;31532:569;31474:627;32148:7;32144:2;32129:27;;32138:4;32129:27;;;;;;;;;;;;32167:42;32188:4;32194:2;32198:7;32207:1;32167:20;:42::i;:::-;29523:2694;;;29392:2825;;;:::o;74165:466::-;53405:13;:11;:13::i;:::-;74453:7:::1;74474;:5;:7::i;:::-;74466:21;;74495;74466:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74452:69;;;74536:2;74528:11;;;::::0;::::1;;74202:429;74165:466::o:0;32313:193::-;32459:39;32476:4;32482:2;32486:7;32459:39;;;;;;;;;;;;:16;:39::i;:::-;32313:193;;;:::o;72786:635::-;72861:16;72889:23;72915:17;72925:6;72915:9;:17::i;:::-;72889:43;;72939:30;72986:15;72972:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72939:63;;73009:22;73034:1;73009:26;;73042:23;73078:309;73103:15;73085;:33;:64;;;;;73140:9;;73122:14;:27;;73085:64;73078:309;;;73160:25;73188:23;73196:14;73188:7;:23::i;:::-;73160:51;;73247:6;73226:27;;:17;:27;;;73222:131;;;73299:14;73266:13;73280:15;73266:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73326:17;;;;;:::i;:::-;;;;73222:131;73363:16;;;;;:::i;:::-;;;;73151:236;73078:309;;;73402:13;73395:20;;;;;;72786:635;;;:::o;71691:27::-;;;;;;;;;;;;;:::o;71469:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71660:26::-;;;;;;;;;;;;;:::o;71382:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20655:152::-;20727:7;20770:27;20789:7;20770:18;:27::i;:::-;20747:52;;20655:152;;;:::o;16197:233::-;16269:7;16310:1;16293:19;;:5;:19;;;16289:60;;;16321:28;;;;;;;;;;;;;;16289:60;10356:13;16367:18;:25;16386:5;16367:25;;;;;;;;;;;;;;;;:55;16360:62;;16197:233;;;:::o;54167:103::-;53405:13;:11;:13::i;:::-;54232:30:::1;54259:1;54232:18;:30::i;:::-;54167:103::o:0;72383:100::-;53405:13;:11;:13::i;:::-;72467:10:::1;72455:9;:22;;;;;;;;;;;;:::i;:::-;;72383:100:::0;:::o;53519:87::-;53565:7;53592:6;;;;;;;;;;;53585:13;;53519:87;:::o;71616:37::-;;;;:::o;19438:104::-;19494:13;19527:7;19520:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19438:104;:::o;71778:296::-;71840:6;73998:1;73984:11;:15;:52;;;;;74018:18;;74003:11;:33;;73984:52;73976:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74110:9;;74095:11;74076:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74068:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;71864:6:::1;;;;;;;;;;;71863:7;71855:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;71935:9;;71927:6;71913:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;71905:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72002:6;71995:4;;:13;;;;:::i;:::-;71982:9;:26;;71974:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72039:29;72049:10;72061:6;72039:9;:29::i;:::-;71778:296:::0;;:::o;26311:234::-;26458:8;26406:18;:39;26425:19;:17;:19::i;:::-;26406:39;;;;;;;;;;;;;;;:49;26446:8;26406:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26518:8;26482:55;;26497:19;:17;:19::i;:::-;26482:55;;;26528:8;26482:55;;;;;;:::i;:::-;;;;;;;;26311:234;;:::o;71502:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72247:130::-;53405:13;:11;:13::i;:::-;72352:19:::1;72331:18;:40;;;;72247:130:::0;:::o;33104:407::-;33279:31;33292:4;33298:2;33302:7;33279:12;:31::i;:::-;33343:1;33325:2;:14;;;:19;33321:183;;33364:56;33395:4;33401:2;33405:7;33414:5;33364:30;:56::i;:::-;33359:145;;33448:40;;;;;;;;;;;;;;33359:145;33321:183;33104:407;;;;:::o;73427:494::-;73526:13;73567:17;73575:8;73567:7;:17::i;:::-;73551:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;73674:5;73662:17;;:8;;;;;;;;;;;:17;;;73658:64;;;73697:17;73690:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73658:64;73730:28;73761:10;:8;:10::i;:::-;73730:41;;73816:1;73791:14;73785:28;:32;:130;;;;;;;;;;;;;;;;;73853:14;73869:19;:8;:17;:19::i;:::-;73890:9;73836:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73785:130;73778:137;;;73427:494;;;;:::o;71580:31::-;;;;:::o;26702:164::-;26799:4;26823:18;:25;26842:5;26823:25;;;;;;;;;;;;;;;:35;26849:8;26823:35;;;;;;;;;;;;;;;;;;;;;;;;;26816:42;;26702:164;;;;:::o;72084:155::-;72170:11;73998:1;73984:11;:15;:52;;;;;74018:18;;74003:11;:33;;73984:52;73976:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74110:9;;74095:11;74076:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74068:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53405:13:::1;:11;:13::i;:::-;72200:33:::2;72210:9;72221:11;72200:9;:33::i;:::-;72084:155:::0;;;:::o;54425:201::-;53405:13;:11;:13::i;:::-;54534:1:::1;54514:22;;:8;:22;;;;54506:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54590:28;54609:8;54590:18;:28::i;:::-;54425:201:::0;:::o;27124:282::-;27189:4;27245:7;27226:15;:13;:15::i;:::-;:26;;:66;;;;;27279:13;;27269:7;:23;27226:66;:153;;;;;27378:1;11132:8;27330:17;:26;27348:7;27330:26;;;;;;;;;;;;:44;:49;27226:153;27206:173;;27124:282;;;:::o;49432:105::-;49492:7;49519:10;49512:17;;49432:105;:::o;53684:132::-;53759:12;:10;:12::i;:::-;53748:23;;:7;:5;:7::i;:::-;:23;;;53740:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53684:132::o;14529:92::-;14585:7;14529:92;:::o;21810:1275::-;21877:7;21897:12;21912:7;21897:22;;21980:4;21961:15;:13;:15::i;:::-;:23;21957:1061;;22014:13;;22007:4;:20;22003:1015;;;22052:14;22069:17;:23;22087:4;22069:23;;;;;;;;;;;;22052:40;;22186:1;11132:8;22158:6;:24;:29;22154:845;;;22823:113;22840:1;22830:6;:11;22823:113;;;22883:17;:25;22901:6;;;;;;;22883:25;;;;;;;;;;;;22874:34;;22823:113;;;22969:6;22962:13;;;;;;22154:845;22029:989;22003:1015;21957:1061;23046:31;;;;;;;;;;;;;;21810:1275;;;;:::o;28287:485::-;28389:27;28418:23;28459:38;28500:15;:24;28516:7;28500:24;;;;;;;;;;;28459:65;;28677:18;28654:41;;28734:19;28728:26;28709:45;;28639:126;28287:485;;;:::o;27515:659::-;27664:11;27829:16;27822:5;27818:28;27809:37;;27989:16;27978:9;27974:32;27961:45;;28139:15;28128:9;28125:30;28117:5;28106:9;28103:20;28100:56;28090:66;;27515:659;;;;;:::o;34173:159::-;;;;;:::o;48741:311::-;48876:7;48896:16;11536:3;48922:19;:41;;48896:68;;11536:3;48990:31;49001:4;49007:2;49011:9;48990:10;:31::i;:::-;48982:40;;:62;;48975:69;;;48741:311;;;;;:::o;23633:450::-;23713:14;23881:16;23874:5;23870:28;23861:37;;24058:5;24044:11;24019:23;24015:41;24012:52;24005:5;24002:63;23992:73;;23633:450;;;;:::o;34997:158::-;;;;;:::o;54786:191::-;54860:16;54879:6;;;;;;;;;;;54860:25;;54905:8;54896:6;;:17;;;;;;;;;;;;;;;;;;54960:8;54929:40;;54950:8;54929:40;;;;;;;;;;;;54849:128;54786:191;:::o;70617:114::-;70682:7;70709;:14;;;70702:21;;70617:114;;;:::o;43264:112::-;43341:27;43351:2;43355:8;43341:27;;;;;;;;;;;;:9;:27::i;:::-;43264:112;;:::o;35595:716::-;35758:4;35804:2;35779:45;;;35825:19;:17;:19::i;:::-;35846:4;35852:7;35861:5;35779:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35775:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36079:1;36062:6;:13;:18;36058:235;;;36108:40;;;;;;;;;;;;;;36058:235;36251:6;36245:13;36236:6;36232:2;36228:15;36221:38;35775:529;35948:54;;;35938:64;;;:6;:64;;;;35931:71;;;35595:716;;;;;;:::o;72676:104::-;72736:13;72765:9;72758:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72676:104;:::o;68289:716::-;68345:13;68396:14;68433:1;68413:17;68424:5;68413:10;:17::i;:::-;:21;68396:38;;68449:20;68483:6;68472:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68449:41;;68505:11;68634:6;68630:2;68626:15;68618:6;68614:28;68607:35;;68671:288;68678:4;68671:288;;;68703:5;;;;;;;;68845:8;68840:2;68833:5;68829:14;68824:30;68819:3;68811:44;68901:2;68892:11;;;;;;:::i;:::-;;;;;68935:1;68926:5;:10;68922:21;;;68938:5;;68922:21;68671:288;;;68980:6;68973:13;;;;;68289:716;;;:::o;52070:98::-;52123:7;52150:10;52143:17;;52070:98;:::o;48442:147::-;48579:6;48442:147;;;;;:::o;42491:689::-;42622:19;42628:2;42632:8;42622:5;:19::i;:::-;42701:1;42683:2;:14;;;:19;42679:483;;42723:11;42737:13;;42723:27;;42769:13;42791:8;42785:3;:14;42769:30;;42818:233;42849:62;42888:1;42892:2;42896:7;;;;;;42905:5;42849:30;:62::i;:::-;42844:167;;42947:40;;;;;;;;;;;;;;42844:167;43046:3;43038:5;:11;42818:233;;43133:3;43116:13;;:20;43112:34;;43138:8;;;43112:34;42704:458;;42679:483;42491:689;;;:::o;65155:922::-;65208:7;65228:14;65245:1;65228:18;;65295:6;65286:5;:15;65282:102;;65331:6;65322:15;;;;;;:::i;:::-;;;;;65366:2;65356:12;;;;65282:102;65411:6;65402:5;:15;65398:102;;65447:6;65438:15;;;;;;:::i;:::-;;;;;65482:2;65472:12;;;;65398:102;65527:6;65518:5;:15;65514:102;;65563:6;65554:15;;;;;;:::i;:::-;;;;;65598:2;65588:12;;;;65514:102;65643:5;65634;:14;65630:99;;65678:5;65669:14;;;;;;:::i;:::-;;;;;65712:1;65702:11;;;;65630:99;65756:5;65747;:14;65743:99;;65791:5;65782:14;;;;;;:::i;:::-;;;;;65825:1;65815:11;;;;65743:99;65869:5;65860;:14;65856:99;;65904:5;65895:14;;;;;;:::i;:::-;;;;;65938:1;65928:11;;;;65856:99;65982:5;65973;:14;65969:66;;66018:1;66008:11;;;;65969:66;66063:6;66056:13;;;65155:922;;;:::o;36773:2966::-;36846:20;36869:13;;36846:36;;36909:1;36897:8;:13;36893:44;;;36919:18;;;;;;;;;;;;;;36893:44;36950:61;36980:1;36984:2;36988:12;37002:8;36950:21;:61::i;:::-;37494:1;10494:2;37464:1;:26;;37463:32;37451:8;:45;37425:18;:22;37444:2;37425:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37773:139;37810:2;37864:33;37887:1;37891:2;37895:1;37864:14;:33::i;:::-;37831:30;37852:8;37831:20;:30::i;:::-;:66;37773:18;:139::i;:::-;37739:17;:31;37757:12;37739:31;;;;;;;;;;;:173;;;;37929:16;37960:11;37989:8;37974:12;:23;37960:37;;38510:16;38506:2;38502:25;38490:37;;38882:12;38842:8;38801:1;38739:25;38680:1;38619;38592:335;39253:1;39239:12;39235:20;39193:346;39294:3;39285:7;39282:16;39193:346;;39512:7;39502:8;39499:1;39472:25;39469:1;39466;39461:59;39347:1;39338:7;39334:15;39323:26;;39193:346;;;39197:77;39584:1;39572:8;:13;39568:45;;;39594:19;;;;;;;;;;;;;;39568:45;39646:3;39630:13;:19;;;;37199:2462;;39671:60;39700:1;39704:2;39708:12;39722:8;39671:20;:60::i;:::-;36835:2904;36773:2966;;:::o;24185:324::-;24255:14;24488:1;24478:8;24475:15;24449:24;24445:46;24435:56;;24185:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:398::-;13544:3;13565:83;13646:1;13641:3;13565:83;:::i;:::-;13558:90;;13657:93;13746:3;13657:93;:::i;:::-;13775:1;13770:3;13766:11;13759:18;;13385:398;;;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:::-;14303:3;14324:67;14388:2;14383:3;14324:67;:::i;:::-;14317:74;;14400:93;14489:3;14400:93;:::i;:::-;14518:2;14513:3;14509:12;14502:19;;14161:366;;;:::o;14533:108::-;14610:24;14628:5;14610:24;:::i;:::-;14605:3;14598:37;14533:108;;:::o;14647:118::-;14734:24;14752:5;14734:24;:::i;:::-;14729:3;14722:37;14647:118;;:::o;14771:589::-;14996:3;15018:95;15109:3;15100:6;15018:95;:::i;:::-;15011:102;;15130:95;15221:3;15212:6;15130:95;:::i;:::-;15123:102;;15242:92;15330:3;15321:6;15242:92;:::i;:::-;15235:99;;15351:3;15344:10;;14771:589;;;;;;:::o;15366:379::-;15550:3;15572:147;15715:3;15572:147;:::i;:::-;15565:154;;15736:3;15729:10;;15366:379;;;:::o;15751:222::-;15844:4;15882:2;15871:9;15867:18;15859:26;;15895:71;15963:1;15952:9;15948:17;15939:6;15895:71;:::i;:::-;15751:222;;;;:::o;15979:640::-;16174:4;16212:3;16201:9;16197:19;16189:27;;16226:71;16294:1;16283:9;16279:17;16270:6;16226:71;:::i;:::-;16307:72;16375:2;16364:9;16360:18;16351:6;16307:72;:::i;:::-;16389;16457:2;16446:9;16442:18;16433:6;16389:72;:::i;:::-;16508:9;16502:4;16498:20;16493:2;16482:9;16478:18;16471:48;16536:76;16607:4;16598:6;16536:76;:::i;:::-;16528:84;;15979:640;;;;;;;:::o;16625:373::-;16768:4;16806:2;16795:9;16791:18;16783:26;;16855:9;16849:4;16845:20;16841:1;16830:9;16826:17;16819:47;16883:108;16986:4;16977:6;16883:108;:::i;:::-;16875:116;;16625:373;;;;:::o;17004:210::-;17091:4;17129:2;17118:9;17114:18;17106:26;;17142:65;17204:1;17193:9;17189:17;17180:6;17142:65;:::i;:::-;17004:210;;;;:::o;17220:313::-;17333:4;17371:2;17360:9;17356:18;17348:26;;17420:9;17414:4;17410:20;17406:1;17395:9;17391:17;17384:47;17448:78;17521:4;17512:6;17448:78;:::i;:::-;17440:86;;17220:313;;;;:::o;17539:419::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17792:9;17786:4;17782:20;17778:1;17767:9;17763:17;17756:47;17820:131;17946:4;17820:131;:::i;:::-;17812:139;;17539:419;;;:::o;17964:::-;18130:4;18168:2;18157:9;18153:18;18145:26;;18217:9;18211:4;18207:20;18203:1;18192:9;18188:17;18181:47;18245:131;18371:4;18245:131;:::i;:::-;18237:139;;17964:419;;;:::o;18389:::-;18555:4;18593:2;18582:9;18578:18;18570:26;;18642:9;18636:4;18632:20;18628:1;18617:9;18613:17;18606:47;18670:131;18796:4;18670:131;:::i;:::-;18662:139;;18389:419;;;:::o;18814:::-;18980:4;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:131;19221:4;19095:131;:::i;:::-;19087:139;;18814:419;;;:::o;19239:::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19492:9;19486:4;19482:20;19478:1;19467:9;19463:17;19456:47;19520:131;19646:4;19520:131;:::i;:::-;19512:139;;19239:419;;;:::o;19664:::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:::-;20255:4;20293:2;20282:9;20278:18;20270:26;;20342:9;20336:4;20332:20;20328:1;20317:9;20313:17;20306:47;20370:131;20496:4;20370:131;:::i;:::-;20362:139;;20089:419;;;:::o;20514:::-;20680:4;20718:2;20707:9;20703:18;20695:26;;20767:9;20761:4;20757:20;20753:1;20742:9;20738:17;20731:47;20795:131;20921:4;20795:131;:::i;:::-;20787:139;;20514:419;;;:::o;20939:222::-;21032:4;21070:2;21059:9;21055:18;21047:26;;21083:71;21151:1;21140:9;21136:17;21127:6;21083:71;:::i;:::-;20939:222;;;;:::o;21167:129::-;21201:6;21228:20;;:::i;:::-;21218:30;;21257:33;21285:4;21277:6;21257:33;:::i;:::-;21167:129;;;:::o;21302:75::-;21335:6;21368:2;21362:9;21352:19;;21302:75;:::o;21383:307::-;21444:4;21534:18;21526:6;21523:30;21520:56;;;21556:18;;:::i;:::-;21520:56;21594:29;21616:6;21594:29;:::i;:::-;21586:37;;21678:4;21672;21668:15;21660:23;;21383:307;;;:::o;21696:308::-;21758:4;21848:18;21840:6;21837:30;21834:56;;;21870:18;;:::i;:::-;21834:56;21908:29;21930:6;21908:29;:::i;:::-;21900:37;;21992:4;21986;21982:15;21974:23;;21696:308;;;:::o;22010:132::-;22077:4;22100:3;22092:11;;22130:4;22125:3;22121:14;22113:22;;22010:132;;;:::o;22148:141::-;22197:4;22220:3;22212:11;;22243:3;22240:1;22233:14;22277:4;22274:1;22264:18;22256:26;;22148:141;;;:::o;22295:114::-;22362:6;22396:5;22390:12;22380:22;;22295:114;;;:::o;22415:98::-;22466:6;22500:5;22494:12;22484:22;;22415:98;;;:::o;22519:99::-;22571:6;22605:5;22599:12;22589:22;;22519:99;;;:::o;22624:113::-;22694:4;22726;22721:3;22717:14;22709:22;;22624:113;;;:::o;22743:184::-;22842:11;22876:6;22871:3;22864:19;22916:4;22911:3;22907:14;22892:29;;22743:184;;;;:::o;22933:168::-;23016:11;23050:6;23045:3;23038:19;23090:4;23085:3;23081:14;23066:29;;22933:168;;;;:::o;23107:147::-;23208:11;23245:3;23230:18;;23107:147;;;;:::o;23260:169::-;23344:11;23378:6;23373:3;23366:19;23418:4;23413:3;23409:14;23394:29;;23260:169;;;;:::o;23435:148::-;23537:11;23574:3;23559:18;;23435:148;;;;:::o;23589:305::-;23629:3;23648:20;23666:1;23648:20;:::i;:::-;23643:25;;23682:20;23700:1;23682:20;:::i;:::-;23677:25;;23836:1;23768:66;23764:74;23761:1;23758:81;23755:107;;;23842:18;;:::i;:::-;23755:107;23886:1;23883;23879:9;23872:16;;23589:305;;;;:::o;23900:348::-;23940:7;23963:20;23981:1;23963:20;:::i;:::-;23958:25;;23997:20;24015:1;23997:20;:::i;:::-;23992:25;;24185:1;24117:66;24113:74;24110:1;24107:81;24102:1;24095:9;24088:17;24084:105;24081:131;;;24192:18;;:::i;:::-;24081:131;24240:1;24237;24233:9;24222:20;;23900:348;;;;:::o;24254:96::-;24291:7;24320:24;24338:5;24320:24;:::i;:::-;24309:35;;24254:96;;;:::o;24356:90::-;24390:7;24433:5;24426:13;24419:21;24408:32;;24356:90;;;:::o;24452:149::-;24488:7;24528:66;24521:5;24517:78;24506:89;;24452:149;;;:::o;24607:126::-;24644:7;24684:42;24677:5;24673:54;24662:65;;24607:126;;;:::o;24739:77::-;24776:7;24805:5;24794:16;;24739:77;;;:::o;24822:154::-;24906:6;24901:3;24896;24883:30;24968:1;24959:6;24954:3;24950:16;24943:27;24822:154;;;:::o;24982:307::-;25050:1;25060:113;25074:6;25071:1;25068:13;25060:113;;;25159:1;25154:3;25150:11;25144:18;25140:1;25135:3;25131:11;25124:39;25096:2;25093:1;25089:10;25084:15;;25060:113;;;25191:6;25188:1;25185:13;25182:101;;;25271:1;25262:6;25257:3;25253:16;25246:27;25182:101;25031:258;24982:307;;;:::o;25295:320::-;25339:6;25376:1;25370:4;25366:12;25356:22;;25423:1;25417:4;25413:12;25444:18;25434:81;;25500:4;25492:6;25488:17;25478:27;;25434:81;25562:2;25554:6;25551:14;25531:18;25528:38;25525:84;;;25581:18;;:::i;:::-;25525:84;25346:269;25295:320;;;:::o;25621:281::-;25704:27;25726:4;25704:27;:::i;:::-;25696:6;25692:40;25834:6;25822:10;25819:22;25798:18;25786:10;25783:34;25780:62;25777:88;;;25845:18;;:::i;:::-;25777:88;25885:10;25881:2;25874:22;25664:238;25621:281;;:::o;25908:233::-;25947:3;25970:24;25988:5;25970:24;:::i;:::-;25961:33;;26016:66;26009:5;26006:77;26003:103;;;26086:18;;:::i;:::-;26003:103;26133:1;26126:5;26122:13;26115:20;;25908:233;;;:::o;26147:180::-;26195:77;26192:1;26185:88;26292:4;26289:1;26282:15;26316:4;26313:1;26306:15;26333:180;26381:77;26378:1;26371:88;26478:4;26475:1;26468:15;26502:4;26499:1;26492:15;26519:180;26567:77;26564:1;26557:88;26664:4;26661:1;26654:15;26688:4;26685:1;26678:15;26705:180;26753:77;26750:1;26743:88;26850:4;26847:1;26840:15;26874:4;26871:1;26864:15;26891:180;26939:77;26936:1;26929:88;27036:4;27033:1;27026:15;27060:4;27057:1;27050:15;27077:117;27186:1;27183;27176:12;27200:117;27309:1;27306;27299:12;27323:117;27432:1;27429;27422:12;27446:117;27555:1;27552;27545:12;27569:102;27610:6;27661:2;27657:7;27652:2;27645:5;27641:14;27637:28;27627:38;;27569:102;;;:::o;27677:225::-;27817:34;27813:1;27805:6;27801:14;27794:58;27886:8;27881:2;27873:6;27869:15;27862:33;27677:225;:::o;27908:170::-;28048:22;28044:1;28036:6;28032:14;28025:46;27908:170;:::o;28084:169::-;28224:21;28220:1;28212:6;28208:14;28201:45;28084:169;:::o;28259:182::-;28399:34;28395:1;28387:6;28383:14;28376:58;28259:182;:::o;28447:173::-;28587:25;28583:1;28575:6;28571:14;28564:49;28447:173;:::o;28626:234::-;28766:34;28762:1;28754:6;28750:14;28743:58;28835:17;28830:2;28822:6;28818:15;28811:42;28626:234;:::o;28866:114::-;;:::o;28986:170::-;29126:22;29122:1;29114:6;29110:14;29103:46;28986:170;:::o;29162:169::-;29302:21;29298:1;29290:6;29286:14;29279:45;29162:169;:::o;29337:122::-;29410:24;29428:5;29410:24;:::i;:::-;29403:5;29400:35;29390:63;;29449:1;29446;29439:12;29390:63;29337:122;:::o;29465:116::-;29535:21;29550:5;29535:21;:::i;:::-;29528:5;29525:32;29515:60;;29571:1;29568;29561:12;29515:60;29465:116;:::o;29587:120::-;29659:23;29676:5;29659:23;:::i;:::-;29652:5;29649:34;29639:62;;29697:1;29694;29687:12;29639:62;29587:120;:::o;29713:122::-;29786:24;29804:5;29786:24;:::i;:::-;29779:5;29776:35;29766:63;;29825:1;29822;29815:12;29766:63;29713:122;:::o

Swarm Source

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