ETH Price: $3,166.27 (+2.76%)

Token

MadCap Clowns (MCC)
 

Overview

Max Total Supply

415 MCC

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MCC
0x7b0b92d106197797095693c25f4c8918cbfc09cf
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:
MadCapClowns

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-25
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


pragma solidity >=0.8.0 <0.9.0;


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

    enum ContractMintState {
        PAUSED,
        PUBLIC
    }

    ContractMintState public contractState = ContractMintState.PAUSED;

    string public uriPrefix = "";
    string public hiddenMetadataUri = "ipfs://QmVpse8B1pjBEHXKRD78HKB8zq2cryVUun3fd8kLZ5ycg8/mcc_hidden_json.json";

    uint256 public maxSupply = 3333;
    uint256 public maxMintAmountPerTx = 33;
    uint256 public maxMintAmount = 33;

    uint256 public cost = 0.02 ether;

    mapping(address => uint256) private _mintAllowance;

    constructor() ERC721A("MadCap Clowns", "MCC") {}

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

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

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded"
        );
        require(
            msg.value >= cost * _mintAmount, 
            "Insufficient funds!"
        );
        _;
    }

    // MINTING FUNCTIONS
    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(contractState == ContractMintState.PUBLIC, "Public mint is disabled");
        require(_mintAllowance[msg.sender] + _mintAmount <= maxMintAmount);

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


    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        onlyOwner
    {
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded");
        _safeMint(_receiver, _mintAmount);
    }

    function batchMint(uint256 _mintAmount, address[] memory _receiver)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _receiver.length; i++) {
            _safeMint(_receiver[i], _mintAmount);
        }
    }

    function numberMinted(address _minter) public view returns (uint256) {
        return _numberMinted(_minter);
    }

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

        string memory currentBaseURI = _baseURI();

        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        ".json"
                    )
                )
                : hiddenMetadataUri;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownerTokens = new uint256[](ownerTokenCount);
        uint256 ownerTokenIdx = 0;
        for (
            uint256 tokenIdx = _startTokenId();
            tokenIdx <= totalSupply();
            tokenIdx++
        ) {
            if (ownerOf(tokenIdx) == _owner) {
                ownerTokens[ownerTokenIdx] = tokenIdx;
                ownerTokenIdx++;
            }
        }
        return ownerTokens;
    }

    function setState(ContractMintState _contractState) public onlyOwner {
        contractState = _contractState;
    }

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

    function setMaxMintAmount(uint256 _maxMintAmount)
        public
        onlyOwner
    {
        maxMintAmount = _maxMintAmount;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(_maxSupply < maxSupply, "Cannot increase the supply");
        maxSupply = _maxSupply;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

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

    function remainingPublicMints(address userAddress) public view returns (uint256) { 
            return maxMintAmount - _mintAllowance[userAddress];
    }


    // WITHDRAW
    function withdraw() public onlyOwner {

        (bool os, ) = payable(0x6cC523902b0B661844bc1C65BE5d1039C678420a).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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractState","outputs":[{"internalType":"enum MadCapClowns.ContractMintState","name":"","type":"uint8"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_mintAmount","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":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"remainingPublicMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MadCapClowns.ContractMintState","name":"_contractState","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff021916908360018111156200002d576200002c6200024c565b5b02179055506040518060200160405280600081525060099081620000529190620004f5565b506040518060800160405280604a815260200162004563604a9139600a90816200007d9190620004f5565b50610d05600b556021600c556021600d5566470de4df820000600e55348015620000a657600080fd5b506040518060400160405280600d81526020017f4d616443617020436c6f776e73000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d434300000000000000000000000000000000000000000000000000000000008152508160029081620001249190620004f5565b508060039081620001369190620004f5565b50620001476200017560201b60201c565b60008190555050506200016f620001636200017e60201b60201c565b6200018660201b60201c565b620005dc565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fd57607f821691505b602082108103620003135762000312620002b5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033e565b6200038986836200033e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d6620003d0620003ca84620003a1565b620003ab565b620003a1565b9050919050565b6000819050919050565b620003f283620003b5565b6200040a6200040182620003dd565b8484546200034b565b825550505050565b600090565b6200042162000412565b6200042e818484620003e7565b505050565b5b8181101562000456576200044a60008262000417565b60018101905062000434565b5050565b601f821115620004a5576200046f8162000319565b6200047a846200032e565b810160208510156200048a578190505b620004a262000499856200032e565b83018262000433565b50505b505050565b600082821c905092915050565b6000620004ca60001984600802620004aa565b1980831691505092915050565b6000620004e58383620004b7565b9150826002028217905092915050565b62000500826200027b565b67ffffffffffffffff8111156200051c576200051b62000286565b5b620005288254620002e4565b620005358282856200045a565b600060209050601f8311600181146200056d576000841562000558578287015190505b620005648582620004d7565b865550620005d4565b601f1984166200057d8662000319565b60005b82811015620005a75784890151825560018201915060208501945060208101905062000580565b86831015620005c75784890151620005c3601f891682620004b7565b8355505b6001600288020188555050505b505050505050565b613f7780620005ec6000396000f3fe6080604052600436106102255760003560e01c80636f8b44b011610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107e2578063dc33e6811461080d578063e985e9c51461084a578063efbd73f414610887578063f2fde38b146108b057610225565b8063a22cb465146106ff578063a45ba8e714610728578063b071401b14610753578063b88d4fde1461077c578063c87b56dd146107a557610225565b806385209ee0116100f257806385209ee0146106375780638da5cb5b1461066257806394354fd01461068d57806395d89b41146106b8578063a0712d68146106e357610225565b80636f8b44b01461059157806370a08231146105ba578063715018a6146105f75780637ec4a6591461060e57610225565b8063277e52a3116101b157806344a0d68a1161017557806344a0d68a146104ae5780634fdd43cb146104d757806356de96db1461050057806362b99ad4146105295780636352211e1461055457610225565b8063277e52a3146103cb5780633379b27b146104085780633ccfd60b1461043157806342842e0e14610448578063438b63001461047157610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063239c70ae1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b96565b6108d9565b60405161025e9190612bde565b60405180910390f35b34801561027357600080fd5b5061027c61096b565b6040516102899190612c89565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ce1565b6109fd565b6040516102c69190612d4f565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ce1565b610a79565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612d96565b610aff565b005b34801561032d57600080fd5b50610336610ca5565b6040516103439190612de5565b60405180910390f35b34801561035857600080fd5b50610361610cab565b60405161036e9190612de5565b60405180910390f35b34801561038357600080fd5b5061038c610cc2565b6040516103999190612de5565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612e00565b610cc8565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612e53565b610cd8565b6040516103ff9190612de5565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612fc8565b610d2e565b005b34801561043d57600080fd5b50610446610df2565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612e00565b610efb565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e53565b610f1b565b6040516104a591906130e2565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612ce1565b61101c565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906131b9565b6110a2565b005b34801561050c57600080fd5b5061052760048036038101906105229190613227565b611131565b005b34801561053557600080fd5b5061053e6111da565b60405161054b9190612c89565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612ce1565b611268565b6040516105889190612d4f565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612ce1565b61127a565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612e53565b611344565b6040516105ee9190612de5565b60405180910390f35b34801561060357600080fd5b5061060c6113fc565b005b34801561061a57600080fd5b50610635600480360381019061063091906131b9565b611484565b005b34801561064357600080fd5b5061064c611513565b60405161065991906132cb565b60405180910390f35b34801561066e57600080fd5b50610677611526565b6040516106849190612d4f565b60405180910390f35b34801561069957600080fd5b506106a2611550565b6040516106af9190612de5565b60405180910390f35b3480156106c457600080fd5b506106cd611556565b6040516106da9190612c89565b60405180910390f35b6106fd60048036038101906106f89190612ce1565b6115e8565b005b34801561070b57600080fd5b5061072660048036038101906107219190613312565b61184b565b005b34801561073457600080fd5b5061073d6119c2565b60405161074a9190612c89565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ce1565b611a50565b005b34801561078857600080fd5b506107a3600480360381019061079e91906133f3565b611ad6565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190612ce1565b611b49565b6040516107d99190612c89565b60405180910390f35b3480156107ee57600080fd5b506107f7611c6b565b6040516108049190612de5565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612e53565b611c71565b6040516108419190612de5565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613476565b611c83565b60405161087e9190612bde565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906134b6565b611d17565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190612e53565b611df8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461097a90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690613525565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a0882611eef565b610a3e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a81611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610a9f611526565b73ffffffffffffffffffffffffffffffffffffffff1614610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec906135a2565b60405180910390fd5b80600d8190555050565b6000610b0a82611f56565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b90612022565b73ffffffffffffffffffffffffffffffffffffffff1614610bf357610bbc81610bb7612022565b611c83565b610bf2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b6000610cb561202a565b6001546000540303905090565b600d5481565b610cd3838383612033565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610d2791906135f1565b9050919050565b610d36611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610d54611526565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906135a2565b60405180910390fd5b60005b8151811015610ded57610dda828281518110610dcc57610dcb613625565b5b6020026020010151846123da565b8080610de590613654565b915050610dad565b505050565b610dfa611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610e18611526565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e65906135a2565b60405180910390fd5b6000736cc523902b0b661844bc1c65be5d1039c678420a73ffffffffffffffffffffffffffffffffffffffff1647604051610ea8906136cd565b60006040518083038185875af1925050503d8060008114610ee5576040519150601f19603f3d011682016040523d82523d6000602084013e610eea565b606091505b5050905080610ef857600080fd5b50565b610f1683838360405180602001604052806000815250611ad6565b505050565b60606000610f2883611344565b905060008167ffffffffffffffff811115610f4657610f45612e85565b5b604051908082528060200260200182016040528015610f745781602001602082028036833780820191505090505b509050600080610f8261202a565b90505b610f8d610cab565b8111611010578573ffffffffffffffffffffffffffffffffffffffff16610fb382611268565b73ffffffffffffffffffffffffffffffffffffffff1603610ffd5780838381518110610fe257610fe1613625565b5b6020026020010181815250508180610ff990613654565b9250505b808061100890613654565b915050610f85565b50819350505050919050565b611024611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611042611526565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906135a2565b60405180910390fd5b80600e8190555050565b6110aa611f4e565b73ffffffffffffffffffffffffffffffffffffffff166110c8611526565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906135a2565b60405180910390fd5b80600a908161112d919061388e565b5050565b611139611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611157611526565b73ffffffffffffffffffffffffffffffffffffffff16146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906135a2565b60405180910390fd5b80600860146101000a81548160ff021916908360018111156111d2576111d1613254565b5b021790555050565b600980546111e790613525565b80601f016020809104026020016040519081016040528092919081815260200182805461121390613525565b80156112605780601f1061123557610100808354040283529160200191611260565b820191906000526020600020905b81548152906001019060200180831161124357829003601f168201915b505050505081565b600061127382611f56565b9050919050565b611282611f4e565b73ffffffffffffffffffffffffffffffffffffffff166112a0611526565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906135a2565b60405180910390fd5b600b54811061133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906139ac565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611404611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611422611526565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906135a2565b60405180910390fd5b61148260006123f8565b565b61148c611f4e565b73ffffffffffffffffffffffffffffffffffffffff166114aa611526565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906135a2565b60405180910390fd5b806009908161150f919061388e565b5050565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606003805461156590613525565b80601f016020809104026020016040519081016040528092919081815260200182805461159190613525565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905090565b806000811180156115fb5750600c548111155b61163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190613a18565b60405180910390fd5b600b5481611646610cab565b6116509190613a38565b1115611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613ab8565b60405180910390fd5b80600e5461169f9190613ad8565b3410156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613b66565b60405180910390fd5b6001808111156116f4576116f3613254565b5b600860149054906101000a900460ff16600181111561171657611715613254565b5b14611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613bd2565b60405180910390fd5b600d5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a49190613a38565b11156117af57600080fd5b6117b933836123da565b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118049190613a38565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611853612022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c4612022565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611971612022565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b69190612bde565b60405180910390a35050565b600a80546119cf90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546119fb90613525565b8015611a485780601f10611a1d57610100808354040283529160200191611a48565b820191906000526020600020905b815481529060010190602001808311611a2b57829003601f168201915b505050505081565b611a58611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611a76611526565b73ffffffffffffffffffffffffffffffffffffffff1614611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906135a2565b60405180910390fd5b80600c8190555050565b611ae1848484612033565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b4357611b0c848484846124be565b611b42576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b5482611eef565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613c64565b60405180910390fd5b6000611b9d61260e565b90506000815111611c3857600a8054611bb590613525565b80601f0160208091040260200160405190810160405280929190818152602001828054611be190613525565b8015611c2e5780601f10611c0357610100808354040283529160200191611c2e565b820191906000526020600020905b815481529060010190602001808311611c1157829003601f168201915b5050505050611c63565b80611c42846126a0565b604051602001611c53929190613d0c565b6040516020818303038152906040525b915050919050565b600b5481565b6000611c7c82612800565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1f611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611d3d611526565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a906135a2565b60405180910390fd5b600b5482611d9f610cab565b611da99190613a38565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613ab8565b60405180910390fd5b611df481836123da565b5050565b611e00611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611e1e611526565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906135a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90613dad565b60405180910390fd5b611eec816123f8565b50565b600081611efa61202a565b11158015611f09575060005482105b8015611f47575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008082905080611f6561202a565b11611feb57600054811015611fea5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fe8575b60008103611fde576004600083600190039350838152602001908152602001600020549050611fb4565b809250505061201d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061203e82611f56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120c6612022565b73ffffffffffffffffffffffffffffffffffffffff1614806120f557506120f4856120ef612022565b611c83565b5b8061213a5750612103612022565b73ffffffffffffffffffffffffffffffffffffffff16612122846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612173576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e68585856001612857565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122e38661285d565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361236b5760006001840190506000600460008381526020019081526020016000205403612369576000548114612368578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d38585856001612867565b5050505050565b6123f482826040518060200160405280600081525061286d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e4612022565b8786866040518563ffffffff1660e01b81526004016125069493929190613e22565b6020604051808303816000875af192505050801561254257506040513d601f19601f8201168201806040525081019061253f9190613e83565b60015b6125bb573d8060008114612572576040519150601f19603f3d011682016040523d82523d6000602084013e612577565b606091505b5060008151036125b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461261d90613525565b80601f016020809104026020016040519081016040528092919081815260200182805461264990613525565b80156126965780601f1061266b57610100808354040283529160200191612696565b820191906000526020600020905b81548152906001019060200180831161267957829003601f168201915b5050505050905090565b6060600082036126e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fb565b600082905060005b6000821461271957808061270290613654565b915050600a826127129190613edf565b91506126ef565b60008167ffffffffffffffff81111561273557612734612e85565b5b6040519080825280601f01601f1916602001820160405280156127675781602001600182028036833780820191505090505b5090505b600085146127f45760018261278091906135f1565b9150600a8561278f9190613f10565b603061279b9190613a38565b60f81b8183815181106127b1576127b0613625565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ed9190613edf565b945061276b565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128d9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612913576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129206000858386612857565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161298560018514612b20565b901b60a042901b6129958661285d565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a99575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4960008784806001019550876124be565b612a7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129da578260005414612a9457600080fd5b612b04565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a9a575b816000819055505050612b1a6000858386612867565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b7381612b3e565b8114612b7e57600080fd5b50565b600081359050612b9081612b6a565b92915050565b600060208284031215612bac57612bab612b34565b5b6000612bba84828501612b81565b91505092915050565b60008115159050919050565b612bd881612bc3565b82525050565b6000602082019050612bf36000830184612bcf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c33578082015181840152602081019050612c18565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c5b82612bf9565b612c658185612c04565b9350612c75818560208601612c15565b612c7e81612c3f565b840191505092915050565b60006020820190508181036000830152612ca38184612c50565b905092915050565b6000819050919050565b612cbe81612cab565b8114612cc957600080fd5b50565b600081359050612cdb81612cb5565b92915050565b600060208284031215612cf757612cf6612b34565b5b6000612d0584828501612ccc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d3982612d0e565b9050919050565b612d4981612d2e565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d2e565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b60008060408385031215612dad57612dac612b34565b5b6000612dbb85828601612d81565b9250506020612dcc85828601612ccc565b9150509250929050565b612ddf81612cab565b82525050565b6000602082019050612dfa6000830184612dd6565b92915050565b600080600060608486031215612e1957612e18612b34565b5b6000612e2786828701612d81565b9350506020612e3886828701612d81565b9250506040612e4986828701612ccc565b9150509250925092565b600060208284031215612e6957612e68612b34565b5b6000612e7784828501612d81565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebd82612c3f565b810181811067ffffffffffffffff82111715612edc57612edb612e85565b5b80604052505050565b6000612eef612b2a565b9050612efb8282612eb4565b919050565b600067ffffffffffffffff821115612f1b57612f1a612e85565b5b602082029050602081019050919050565b600080fd5b6000612f44612f3f84612f00565b612ee5565b90508083825260208201905060208402830185811115612f6757612f66612f2c565b5b835b81811015612f905780612f7c8882612d81565b845260208401935050602081019050612f69565b5050509392505050565b600082601f830112612faf57612fae612e80565b5b8135612fbf848260208601612f31565b91505092915050565b60008060408385031215612fdf57612fde612b34565b5b6000612fed85828601612ccc565b925050602083013567ffffffffffffffff81111561300e5761300d612b39565b5b61301a85828601612f9a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61305981612cab565b82525050565b600061306b8383613050565b60208301905092915050565b6000602082019050919050565b600061308f82613024565b613099818561302f565b93506130a483613040565b8060005b838110156130d55781516130bc888261305f565b97506130c783613077565b9250506001810190506130a8565b5085935050505092915050565b600060208201905081810360008301526130fc8184613084565b905092915050565b600080fd5b600067ffffffffffffffff82111561312457613123612e85565b5b61312d82612c3f565b9050602081019050919050565b82818337600083830152505050565b600061315c61315784613109565b612ee5565b90508281526020810184848401111561317857613177613104565b5b61318384828561313a565b509392505050565b600082601f8301126131a05761319f612e80565b5b81356131b0848260208601613149565b91505092915050565b6000602082840312156131cf576131ce612b34565b5b600082013567ffffffffffffffff8111156131ed576131ec612b39565b5b6131f98482850161318b565b91505092915050565b6002811061320f57600080fd5b50565b60008135905061322181613202565b92915050565b60006020828403121561323d5761323c612b34565b5b600061324b84828501613212565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061329457613293613254565b5b50565b60008190506132a582613283565b919050565b60006132b582613297565b9050919050565b6132c5816132aa565b82525050565b60006020820190506132e060008301846132bc565b92915050565b6132ef81612bc3565b81146132fa57600080fd5b50565b60008135905061330c816132e6565b92915050565b6000806040838503121561332957613328612b34565b5b600061333785828601612d81565b9250506020613348858286016132fd565b9150509250929050565b600067ffffffffffffffff82111561336d5761336c612e85565b5b61337682612c3f565b9050602081019050919050565b600061339661339184613352565b612ee5565b9050828152602081018484840111156133b2576133b1613104565b5b6133bd84828561313a565b509392505050565b600082601f8301126133da576133d9612e80565b5b81356133ea848260208601613383565b91505092915050565b6000806000806080858703121561340d5761340c612b34565b5b600061341b87828801612d81565b945050602061342c87828801612d81565b935050604061343d87828801612ccc565b925050606085013567ffffffffffffffff81111561345e5761345d612b39565b5b61346a878288016133c5565b91505092959194509250565b6000806040838503121561348d5761348c612b34565b5b600061349b85828601612d81565b92505060206134ac85828601612d81565b9150509250929050565b600080604083850312156134cd576134cc612b34565b5b60006134db85828601612ccc565b92505060206134ec85828601612d81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061353d57607f821691505b6020821081036135505761354f6134f6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061358c602083612c04565b915061359782613556565b602082019050919050565b600060208201905081810360008301526135bb8161357f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135fc82612cab565b915061360783612cab565b925082820390508181111561361f5761361e6135c2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061365f82612cab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613691576136906135c2565b5b600182019050919050565b600081905092915050565b50565b60006136b760008361369c565b91506136c2826136a7565b600082019050919050565b60006136d8826136aa565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613707565b61374e8683613707565b95508019841693508086168417925050509392505050565b6000819050919050565b600061378b61378661378184612cab565b613766565b612cab565b9050919050565b6000819050919050565b6137a583613770565b6137b96137b182613792565b848454613714565b825550505050565b600090565b6137ce6137c1565b6137d981848461379c565b505050565b5b818110156137fd576137f26000826137c6565b6001810190506137df565b5050565b601f82111561384257613813816136e2565b61381c846136f7565b8101602085101561382b578190505b61383f613837856136f7565b8301826137de565b50505b505050565b600082821c905092915050565b600061386560001984600802613847565b1980831691505092915050565b600061387e8383613854565b9150826002028217905092915050565b61389782612bf9565b67ffffffffffffffff8111156138b0576138af612e85565b5b6138ba8254613525565b6138c5828285613801565b600060209050601f8311600181146138f857600084156138e6578287015190505b6138f08582613872565b865550613958565b601f198416613906866136e2565b60005b8281101561392e57848901518255600182019150602085019450602081019050613909565b8683101561394b5784890151613947601f891682613854565b8355505b6001600288020188555050505b505050505050565b7f43616e6e6f7420696e6372656173652074686520737570706c79000000000000600082015250565b6000613996601a83612c04565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613a02601383612c04565b9150613a0d826139cc565b602082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b6000613a4382612cab565b9150613a4e83612cab565b9250828201905080821115613a6657613a656135c2565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613aa2601383612c04565b9150613aad82613a6c565b602082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b6000613ae382612cab565b9150613aee83612cab565b9250828202613afc81612cab565b91508282048414831517613b1357613b126135c2565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b50601383612c04565b9150613b5b82613b1a565b602082019050919050565b60006020820190508181036000830152613b7f81613b43565b9050919050565b7f5075626c6963206d696e742069732064697361626c6564000000000000000000600082015250565b6000613bbc601783612c04565b9150613bc782613b86565b602082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c4e602f83612c04565b9150613c5982613bf2565b604082019050919050565b60006020820190508181036000830152613c7d81613c41565b9050919050565b600081905092915050565b6000613c9a82612bf9565b613ca48185613c84565b9350613cb4818560208601612c15565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cf6600583613c84565b9150613d0182613cc0565b600582019050919050565b6000613d188285613c8f565b9150613d248284613c8f565b9150613d2f82613ce9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d97602683612c04565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613df482613dcd565b613dfe8185613dd8565b9350613e0e818560208601612c15565b613e1781612c3f565b840191505092915050565b6000608082019050613e376000830187612d40565b613e446020830186612d40565b613e516040830185612dd6565b8181036060830152613e638184613de9565b905095945050505050565b600081519050613e7d81612b6a565b92915050565b600060208284031215613e9957613e98612b34565b5b6000613ea784828501613e6e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eea82612cab565b9150613ef583612cab565b925082613f0557613f04613eb0565b5b828204905092915050565b6000613f1b82612cab565b9150613f2683612cab565b925082613f3657613f35613eb0565b5b82820690509291505056fea2646970667358221220de1d8cd725694952a91195c51e7c7e06d0ab251a1498ee1586b006b42fb8135a64736f6c63430008130033697066733a2f2f516d56707365384231706a424548584b52443738484b42387a71326372795655756e336664386b4c5a35796367382f6d63635f68696464656e5f6a736f6e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636f8b44b011610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107e2578063dc33e6811461080d578063e985e9c51461084a578063efbd73f414610887578063f2fde38b146108b057610225565b8063a22cb465146106ff578063a45ba8e714610728578063b071401b14610753578063b88d4fde1461077c578063c87b56dd146107a557610225565b806385209ee0116100f257806385209ee0146106375780638da5cb5b1461066257806394354fd01461068d57806395d89b41146106b8578063a0712d68146106e357610225565b80636f8b44b01461059157806370a08231146105ba578063715018a6146105f75780637ec4a6591461060e57610225565b8063277e52a3116101b157806344a0d68a1161017557806344a0d68a146104ae5780634fdd43cb146104d757806356de96db1461050057806362b99ad4146105295780636352211e1461055457610225565b8063277e52a3146103cb5780633379b27b146104085780633ccfd60b1461043157806342842e0e14610448578063438b63001461047157610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063239c70ae1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b96565b6108d9565b60405161025e9190612bde565b60405180910390f35b34801561027357600080fd5b5061027c61096b565b6040516102899190612c89565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ce1565b6109fd565b6040516102c69190612d4f565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ce1565b610a79565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612d96565b610aff565b005b34801561032d57600080fd5b50610336610ca5565b6040516103439190612de5565b60405180910390f35b34801561035857600080fd5b50610361610cab565b60405161036e9190612de5565b60405180910390f35b34801561038357600080fd5b5061038c610cc2565b6040516103999190612de5565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612e00565b610cc8565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612e53565b610cd8565b6040516103ff9190612de5565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612fc8565b610d2e565b005b34801561043d57600080fd5b50610446610df2565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612e00565b610efb565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e53565b610f1b565b6040516104a591906130e2565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612ce1565b61101c565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906131b9565b6110a2565b005b34801561050c57600080fd5b5061052760048036038101906105229190613227565b611131565b005b34801561053557600080fd5b5061053e6111da565b60405161054b9190612c89565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612ce1565b611268565b6040516105889190612d4f565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612ce1565b61127a565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612e53565b611344565b6040516105ee9190612de5565b60405180910390f35b34801561060357600080fd5b5061060c6113fc565b005b34801561061a57600080fd5b50610635600480360381019061063091906131b9565b611484565b005b34801561064357600080fd5b5061064c611513565b60405161065991906132cb565b60405180910390f35b34801561066e57600080fd5b50610677611526565b6040516106849190612d4f565b60405180910390f35b34801561069957600080fd5b506106a2611550565b6040516106af9190612de5565b60405180910390f35b3480156106c457600080fd5b506106cd611556565b6040516106da9190612c89565b60405180910390f35b6106fd60048036038101906106f89190612ce1565b6115e8565b005b34801561070b57600080fd5b5061072660048036038101906107219190613312565b61184b565b005b34801561073457600080fd5b5061073d6119c2565b60405161074a9190612c89565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ce1565b611a50565b005b34801561078857600080fd5b506107a3600480360381019061079e91906133f3565b611ad6565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190612ce1565b611b49565b6040516107d99190612c89565b60405180910390f35b3480156107ee57600080fd5b506107f7611c6b565b6040516108049190612de5565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612e53565b611c71565b6040516108419190612de5565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613476565b611c83565b60405161087e9190612bde565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906134b6565b611d17565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190612e53565b611df8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461097a90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690613525565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a0882611eef565b610a3e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a81611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610a9f611526565b73ffffffffffffffffffffffffffffffffffffffff1614610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec906135a2565b60405180910390fd5b80600d8190555050565b6000610b0a82611f56565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b90612022565b73ffffffffffffffffffffffffffffffffffffffff1614610bf357610bbc81610bb7612022565b611c83565b610bf2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b6000610cb561202a565b6001546000540303905090565b600d5481565b610cd3838383612033565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610d2791906135f1565b9050919050565b610d36611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610d54611526565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906135a2565b60405180910390fd5b60005b8151811015610ded57610dda828281518110610dcc57610dcb613625565b5b6020026020010151846123da565b8080610de590613654565b915050610dad565b505050565b610dfa611f4e565b73ffffffffffffffffffffffffffffffffffffffff16610e18611526565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e65906135a2565b60405180910390fd5b6000736cc523902b0b661844bc1c65be5d1039c678420a73ffffffffffffffffffffffffffffffffffffffff1647604051610ea8906136cd565b60006040518083038185875af1925050503d8060008114610ee5576040519150601f19603f3d011682016040523d82523d6000602084013e610eea565b606091505b5050905080610ef857600080fd5b50565b610f1683838360405180602001604052806000815250611ad6565b505050565b60606000610f2883611344565b905060008167ffffffffffffffff811115610f4657610f45612e85565b5b604051908082528060200260200182016040528015610f745781602001602082028036833780820191505090505b509050600080610f8261202a565b90505b610f8d610cab565b8111611010578573ffffffffffffffffffffffffffffffffffffffff16610fb382611268565b73ffffffffffffffffffffffffffffffffffffffff1603610ffd5780838381518110610fe257610fe1613625565b5b6020026020010181815250508180610ff990613654565b9250505b808061100890613654565b915050610f85565b50819350505050919050565b611024611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611042611526565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906135a2565b60405180910390fd5b80600e8190555050565b6110aa611f4e565b73ffffffffffffffffffffffffffffffffffffffff166110c8611526565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906135a2565b60405180910390fd5b80600a908161112d919061388e565b5050565b611139611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611157611526565b73ffffffffffffffffffffffffffffffffffffffff16146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906135a2565b60405180910390fd5b80600860146101000a81548160ff021916908360018111156111d2576111d1613254565b5b021790555050565b600980546111e790613525565b80601f016020809104026020016040519081016040528092919081815260200182805461121390613525565b80156112605780601f1061123557610100808354040283529160200191611260565b820191906000526020600020905b81548152906001019060200180831161124357829003601f168201915b505050505081565b600061127382611f56565b9050919050565b611282611f4e565b73ffffffffffffffffffffffffffffffffffffffff166112a0611526565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906135a2565b60405180910390fd5b600b54811061133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906139ac565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611404611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611422611526565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906135a2565b60405180910390fd5b61148260006123f8565b565b61148c611f4e565b73ffffffffffffffffffffffffffffffffffffffff166114aa611526565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906135a2565b60405180910390fd5b806009908161150f919061388e565b5050565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606003805461156590613525565b80601f016020809104026020016040519081016040528092919081815260200182805461159190613525565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905090565b806000811180156115fb5750600c548111155b61163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190613a18565b60405180910390fd5b600b5481611646610cab565b6116509190613a38565b1115611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613ab8565b60405180910390fd5b80600e5461169f9190613ad8565b3410156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613b66565b60405180910390fd5b6001808111156116f4576116f3613254565b5b600860149054906101000a900460ff16600181111561171657611715613254565b5b14611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613bd2565b60405180910390fd5b600d5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a49190613a38565b11156117af57600080fd5b6117b933836123da565b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118049190613a38565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611853612022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c4612022565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611971612022565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b69190612bde565b60405180910390a35050565b600a80546119cf90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546119fb90613525565b8015611a485780601f10611a1d57610100808354040283529160200191611a48565b820191906000526020600020905b815481529060010190602001808311611a2b57829003601f168201915b505050505081565b611a58611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611a76611526565b73ffffffffffffffffffffffffffffffffffffffff1614611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906135a2565b60405180910390fd5b80600c8190555050565b611ae1848484612033565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b4357611b0c848484846124be565b611b42576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b5482611eef565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613c64565b60405180910390fd5b6000611b9d61260e565b90506000815111611c3857600a8054611bb590613525565b80601f0160208091040260200160405190810160405280929190818152602001828054611be190613525565b8015611c2e5780601f10611c0357610100808354040283529160200191611c2e565b820191906000526020600020905b815481529060010190602001808311611c1157829003601f168201915b5050505050611c63565b80611c42846126a0565b604051602001611c53929190613d0c565b6040516020818303038152906040525b915050919050565b600b5481565b6000611c7c82612800565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1f611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611d3d611526565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a906135a2565b60405180910390fd5b600b5482611d9f610cab565b611da99190613a38565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613ab8565b60405180910390fd5b611df481836123da565b5050565b611e00611f4e565b73ffffffffffffffffffffffffffffffffffffffff16611e1e611526565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906135a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90613dad565b60405180910390fd5b611eec816123f8565b50565b600081611efa61202a565b11158015611f09575060005482105b8015611f47575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008082905080611f6561202a565b11611feb57600054811015611fea5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fe8575b60008103611fde576004600083600190039350838152602001908152602001600020549050611fb4565b809250505061201d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061203e82611f56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120c6612022565b73ffffffffffffffffffffffffffffffffffffffff1614806120f557506120f4856120ef612022565b611c83565b5b8061213a5750612103612022565b73ffffffffffffffffffffffffffffffffffffffff16612122846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612173576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e68585856001612857565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122e38661285d565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361236b5760006001840190506000600460008381526020019081526020016000205403612369576000548114612368578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d38585856001612867565b5050505050565b6123f482826040518060200160405280600081525061286d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e4612022565b8786866040518563ffffffff1660e01b81526004016125069493929190613e22565b6020604051808303816000875af192505050801561254257506040513d601f19601f8201168201806040525081019061253f9190613e83565b60015b6125bb573d8060008114612572576040519150601f19603f3d011682016040523d82523d6000602084013e612577565b606091505b5060008151036125b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461261d90613525565b80601f016020809104026020016040519081016040528092919081815260200182805461264990613525565b80156126965780601f1061266b57610100808354040283529160200191612696565b820191906000526020600020905b81548152906001019060200180831161267957829003601f168201915b5050505050905090565b6060600082036126e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fb565b600082905060005b6000821461271957808061270290613654565b915050600a826127129190613edf565b91506126ef565b60008167ffffffffffffffff81111561273557612734612e85565b5b6040519080825280601f01601f1916602001820160405280156127675781602001600182028036833780820191505090505b5090505b600085146127f45760018261278091906135f1565b9150600a8561278f9190613f10565b603061279b9190613a38565b60f81b8183815181106127b1576127b0613625565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ed9190613edf565b945061276b565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128d9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612913576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129206000858386612857565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161298560018514612b20565b901b60a042901b6129958661285d565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a99575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4960008784806001019550876124be565b612a7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129da578260005414612a9457600080fd5b612b04565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a9a575b816000819055505050612b1a6000858386612867565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b7381612b3e565b8114612b7e57600080fd5b50565b600081359050612b9081612b6a565b92915050565b600060208284031215612bac57612bab612b34565b5b6000612bba84828501612b81565b91505092915050565b60008115159050919050565b612bd881612bc3565b82525050565b6000602082019050612bf36000830184612bcf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c33578082015181840152602081019050612c18565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c5b82612bf9565b612c658185612c04565b9350612c75818560208601612c15565b612c7e81612c3f565b840191505092915050565b60006020820190508181036000830152612ca38184612c50565b905092915050565b6000819050919050565b612cbe81612cab565b8114612cc957600080fd5b50565b600081359050612cdb81612cb5565b92915050565b600060208284031215612cf757612cf6612b34565b5b6000612d0584828501612ccc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d3982612d0e565b9050919050565b612d4981612d2e565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d2e565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b60008060408385031215612dad57612dac612b34565b5b6000612dbb85828601612d81565b9250506020612dcc85828601612ccc565b9150509250929050565b612ddf81612cab565b82525050565b6000602082019050612dfa6000830184612dd6565b92915050565b600080600060608486031215612e1957612e18612b34565b5b6000612e2786828701612d81565b9350506020612e3886828701612d81565b9250506040612e4986828701612ccc565b9150509250925092565b600060208284031215612e6957612e68612b34565b5b6000612e7784828501612d81565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebd82612c3f565b810181811067ffffffffffffffff82111715612edc57612edb612e85565b5b80604052505050565b6000612eef612b2a565b9050612efb8282612eb4565b919050565b600067ffffffffffffffff821115612f1b57612f1a612e85565b5b602082029050602081019050919050565b600080fd5b6000612f44612f3f84612f00565b612ee5565b90508083825260208201905060208402830185811115612f6757612f66612f2c565b5b835b81811015612f905780612f7c8882612d81565b845260208401935050602081019050612f69565b5050509392505050565b600082601f830112612faf57612fae612e80565b5b8135612fbf848260208601612f31565b91505092915050565b60008060408385031215612fdf57612fde612b34565b5b6000612fed85828601612ccc565b925050602083013567ffffffffffffffff81111561300e5761300d612b39565b5b61301a85828601612f9a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61305981612cab565b82525050565b600061306b8383613050565b60208301905092915050565b6000602082019050919050565b600061308f82613024565b613099818561302f565b93506130a483613040565b8060005b838110156130d55781516130bc888261305f565b97506130c783613077565b9250506001810190506130a8565b5085935050505092915050565b600060208201905081810360008301526130fc8184613084565b905092915050565b600080fd5b600067ffffffffffffffff82111561312457613123612e85565b5b61312d82612c3f565b9050602081019050919050565b82818337600083830152505050565b600061315c61315784613109565b612ee5565b90508281526020810184848401111561317857613177613104565b5b61318384828561313a565b509392505050565b600082601f8301126131a05761319f612e80565b5b81356131b0848260208601613149565b91505092915050565b6000602082840312156131cf576131ce612b34565b5b600082013567ffffffffffffffff8111156131ed576131ec612b39565b5b6131f98482850161318b565b91505092915050565b6002811061320f57600080fd5b50565b60008135905061322181613202565b92915050565b60006020828403121561323d5761323c612b34565b5b600061324b84828501613212565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061329457613293613254565b5b50565b60008190506132a582613283565b919050565b60006132b582613297565b9050919050565b6132c5816132aa565b82525050565b60006020820190506132e060008301846132bc565b92915050565b6132ef81612bc3565b81146132fa57600080fd5b50565b60008135905061330c816132e6565b92915050565b6000806040838503121561332957613328612b34565b5b600061333785828601612d81565b9250506020613348858286016132fd565b9150509250929050565b600067ffffffffffffffff82111561336d5761336c612e85565b5b61337682612c3f565b9050602081019050919050565b600061339661339184613352565b612ee5565b9050828152602081018484840111156133b2576133b1613104565b5b6133bd84828561313a565b509392505050565b600082601f8301126133da576133d9612e80565b5b81356133ea848260208601613383565b91505092915050565b6000806000806080858703121561340d5761340c612b34565b5b600061341b87828801612d81565b945050602061342c87828801612d81565b935050604061343d87828801612ccc565b925050606085013567ffffffffffffffff81111561345e5761345d612b39565b5b61346a878288016133c5565b91505092959194509250565b6000806040838503121561348d5761348c612b34565b5b600061349b85828601612d81565b92505060206134ac85828601612d81565b9150509250929050565b600080604083850312156134cd576134cc612b34565b5b60006134db85828601612ccc565b92505060206134ec85828601612d81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061353d57607f821691505b6020821081036135505761354f6134f6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061358c602083612c04565b915061359782613556565b602082019050919050565b600060208201905081810360008301526135bb8161357f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135fc82612cab565b915061360783612cab565b925082820390508181111561361f5761361e6135c2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061365f82612cab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613691576136906135c2565b5b600182019050919050565b600081905092915050565b50565b60006136b760008361369c565b91506136c2826136a7565b600082019050919050565b60006136d8826136aa565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613707565b61374e8683613707565b95508019841693508086168417925050509392505050565b6000819050919050565b600061378b61378661378184612cab565b613766565b612cab565b9050919050565b6000819050919050565b6137a583613770565b6137b96137b182613792565b848454613714565b825550505050565b600090565b6137ce6137c1565b6137d981848461379c565b505050565b5b818110156137fd576137f26000826137c6565b6001810190506137df565b5050565b601f82111561384257613813816136e2565b61381c846136f7565b8101602085101561382b578190505b61383f613837856136f7565b8301826137de565b50505b505050565b600082821c905092915050565b600061386560001984600802613847565b1980831691505092915050565b600061387e8383613854565b9150826002028217905092915050565b61389782612bf9565b67ffffffffffffffff8111156138b0576138af612e85565b5b6138ba8254613525565b6138c5828285613801565b600060209050601f8311600181146138f857600084156138e6578287015190505b6138f08582613872565b865550613958565b601f198416613906866136e2565b60005b8281101561392e57848901518255600182019150602085019450602081019050613909565b8683101561394b5784890151613947601f891682613854565b8355505b6001600288020188555050505b505050505050565b7f43616e6e6f7420696e6372656173652074686520737570706c79000000000000600082015250565b6000613996601a83612c04565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613a02601383612c04565b9150613a0d826139cc565b602082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b6000613a4382612cab565b9150613a4e83612cab565b9250828201905080821115613a6657613a656135c2565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613aa2601383612c04565b9150613aad82613a6c565b602082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b6000613ae382612cab565b9150613aee83612cab565b9250828202613afc81612cab565b91508282048414831517613b1357613b126135c2565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b50601383612c04565b9150613b5b82613b1a565b602082019050919050565b60006020820190508181036000830152613b7f81613b43565b9050919050565b7f5075626c6963206d696e742069732064697361626c6564000000000000000000600082015250565b6000613bbc601783612c04565b9150613bc782613b86565b602082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c4e602f83612c04565b9150613c5982613bf2565b604082019050919050565b60006020820190508181036000830152613c7d81613c41565b9050919050565b600081905092915050565b6000613c9a82612bf9565b613ca48185613c84565b9350613cb4818560208601612c15565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cf6600583613c84565b9150613d0182613cc0565b600582019050919050565b6000613d188285613c8f565b9150613d248284613c8f565b9150613d2f82613ce9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d97602683612c04565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613df482613dcd565b613dfe8185613dd8565b9350613e0e818560208601612c15565b613e1781612c3f565b840191505092915050565b6000608082019050613e376000830187612d40565b613e446020830186612d40565b613e516040830185612dd6565b8181036060830152613e638184613de9565b905095945050505050565b600081519050613e7d81612b6a565b92915050565b600060208284031215613e9957613e98612b34565b5b6000613ea784828501613e6e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eea82612cab565b9150613ef583612cab565b925082613f0557613f04613eb0565b5b828204905092915050565b6000613f1b82612cab565b9150613f2683612cab565b925082613f3657613f35613eb0565b5b82820690509291505056fea2646970667358221220de1d8cd725694952a91195c51e7c7e06d0ab251a1498ee1586b006b42fb8135a64736f6c63430008130033

Deployed Bytecode Sourcemap

43966:5042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13106:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18119:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20187:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47941:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19647:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44474:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12160:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44432:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21073:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48639:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45993:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48821:184;;;;;;;;;;;;;:::i;:::-;;21314:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47026:614;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48088:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48356:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47648:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44195:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17908:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48176:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13785:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43110:103;;;;;;;;;;;;;:::i;:::-;;48525:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44121:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42459:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44387:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18288:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45338:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20463:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44230:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47774:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21570:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46362:656;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44349:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46237:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20842:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45746:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43368:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13106:615;13191:4;13506:10;13491:25;;:11;:25;;;;:102;;;;13583:10;13568:25;;:11;:25;;;;13491:102;:179;;;;13660:10;13645:25;;:11;:25;;;;13491:179;13471:199;;13106:615;;;:::o;18119:100::-;18173:13;18206:5;18199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18119:100;:::o;20187:204::-;20255:7;20280:16;20288:7;20280;:16::i;:::-;20275:64;;20305:34;;;;;;;;;;;;;;20275:64;20359:15;:24;20375:7;20359:24;;;;;;;;;;;;;;;;;;;;;20352:31;;20187:204;;;:::o;47941:139::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48058:14:::1;48042:13;:30;;;;47941:139:::0;:::o;19647:474::-;19720:13;19752:27;19771:7;19752:18;:27::i;:::-;19720:61;;19802:5;19796:11;;:2;:11;;;19792:48;;19816:24;;;;;;;;;;;;;;19792:48;19880:5;19857:28;;:19;:17;:19::i;:::-;:28;;;19853:175;;19905:44;19922:5;19929:19;:17;:19::i;:::-;19905:16;:44::i;:::-;19900:128;;19977:35;;;;;;;;;;;;;;19900:128;19853:175;20067:2;20040:15;:24;20056:7;20040:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20105:7;20101:2;20085:28;;20094:5;20085:28;;;;;;;;;;;;19709:412;19647:474;;:::o;44474:32::-;;;;:::o;12160:315::-;12213:7;12441:15;:13;:15::i;:::-;12426:12;;12410:13;;:28;:46;12403:53;;12160:315;:::o;44432:33::-;;;;:::o;21073:170::-;21207:28;21217:4;21223:2;21227:7;21207:9;:28::i;:::-;21073:170;;;:::o;48639:155::-;48711:7;48759:14;:27;48774:11;48759:27;;;;;;;;;;;;;;;;48743:13;;:43;;;;:::i;:::-;48736:50;;48639:155;;;:::o;45993:236::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46117:9:::1;46112:110;46136:9;:16;46132:1;:20;46112:110;;;46174:36;46184:9;46194:1;46184:12;;;;;;;;:::i;:::-;;;;;;;;46198:11;46174:9;:36::i;:::-;46154:3;;;;;:::i;:::-;;;;46112:110;;;;45993:236:::0;;:::o;48821:184::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48872:7:::1;48893:42;48885:56;;48949:21;48885:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48871:104;;;48994:2;48986:11;;;::::0;::::1;;48858:147;48821:184::o:0;21314:185::-;21452:39;21469:4;21475:2;21479:7;21452:39;;;;;;;;;;;;:16;:39::i;:::-;21314:185;;;:::o;47026:614::-;47113:16;47147:23;47173:17;47183:6;47173:9;:17::i;:::-;47147:43;;47201:28;47246:15;47232:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47201:61;;47273:21;47328:16;47347:15;:13;:15::i;:::-;47328:34;;47309:295;47389:13;:11;:13::i;:::-;47377:8;:25;47309:295;;47479:6;47458:27;;:17;47466:8;47458:7;:17::i;:::-;:27;;;47454:139;;47535:8;47506:11;47518:13;47506:26;;;;;;;;:::i;:::-;;;;;;;:37;;;;;47562:15;;;;;:::i;:::-;;;;47454:139;47417:10;;;;;:::i;:::-;;;;47309:295;;;;47621:11;47614:18;;;;;47026:614;;;:::o;48088:80::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48155:5:::1;48148:4;:12;;;;48088:80:::0;:::o;48356:161::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48491:18:::1;48471:17;:38;;;;;;:::i;:::-;;48356:161:::0;:::o;47648:118::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47744:14:::1;47728:13;;:30;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;47648:118:::0;:::o;44195:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17908:144::-;17972:7;18015:27;18034:7;18015:18;:27::i;:::-;17992:52;;17908:144;;;:::o;48176:172::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:9:::1;;48254:10;:22;48246:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48330:10;48318:9;:22;;;;48176:172:::0;:::o;13785:224::-;13849:7;13890:1;13873:19;;:5;:19;;;13869:60;;13901:28;;;;;;;;;;;;;;13869:60;9124:13;13947:18;:25;13966:5;13947:25;;;;;;;;;;;;;;;;:54;13940:61;;13785:224;;;:::o;43110:103::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43175:30:::1;43202:1;43175:18;:30::i;:::-;43110:103::o:0;48525:106::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48613:10:::1;48601:9;:22;;;;;;:::i;:::-;;48525:106:::0;:::o;44121:65::-;;;;;;;;;;;;;:::o;42459:87::-;42505:7;42532:6;;;;;;;;;;;42525:13;;42459:87;:::o;44387:38::-;;;;:::o;18288:104::-;18344:13;18377:7;18370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:104;:::o;45338:398::-;45403:11;44967:1;44953:11;:15;:52;;;;;44987:18;;44972:11;:33;;44953:52;44931:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;45116:9;;45101:11;45085:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45063:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;45225:11;45218:4;;:18;;;;:::i;:::-;45205:9;:31;;45183:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45452:24:::1;45435:41:::0;::::1;;;;;;;:::i;:::-;;:13;;;;;;;;;;;:41;;;;;;;;:::i;:::-;;;45427:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:13;;45552:11;45523:14;:26;45538:10;45523:26;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:57;;45515:66;;;::::0;::::1;;45604:34;45614:10;45626:11;45604:9;:34::i;:::-;45707:11;45678:14;:26;45693:10;45678:26;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;45649:14;:26;45664:10;45649:26;;;;;;;;;;;;;;;:69;;;;45338:398:::0;;:::o;20463:308::-;20574:19;:17;:19::i;:::-;20562:31;;:8;:31;;;20558:61;;20602:17;;;;;;;;;;;;;;20558:61;20684:8;20632:18;:39;20651:19;:17;:19::i;:::-;20632:39;;;;;;;;;;;;;;;:49;20672:8;20632:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20744:8;20708:55;;20723:19;:17;:19::i;:::-;20708:55;;;20754:8;20708:55;;;;;;:::i;:::-;;;;;;;;20463:308;;:::o;44230:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47774:159::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47906:19:::1;47885:18;:40;;;;47774:159:::0;:::o;21570:396::-;21737:28;21747:4;21753:2;21757:7;21737:9;:28::i;:::-;21798:1;21780:2;:14;;;:19;21776:183;;21819:56;21850:4;21856:2;21860:7;21869:5;21819:30;:56::i;:::-;21814:145;;21903:40;;;;;;;;;;;;;;21814:145;21776:183;21570:396;;;;:::o;46362:656::-;46481:13;46534:17;46542:8;46534:7;:17::i;:::-;46512:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46639:28;46670:10;:8;:10::i;:::-;46639:41;;46744:1;46719:14;46713:28;:32;:297;;46993:17;46713:297;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46837:14;46878:19;:8;:17;:19::i;:::-;46794:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46713:297;46693:317;;;46362:656;;;:::o;44349:31::-;;;;:::o;46237:117::-;46297:7;46324:22;46338:7;46324:13;:22::i;:::-;46317:29;;46237:117;;;:::o;20842:164::-;20939:4;20963:18;:25;20982:5;20963:25;;;;;;;;;;;;;;;:35;20989:8;20963:35;;;;;;;;;;;;;;;;;;;;;;;;;20956:42;;20842:164;;;;:::o;45746:239::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45900:9:::1;;45885:11;45869:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45861:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45944:33;45954:9;45965:11;45944:9;:33::i;:::-;45746:239:::0;;:::o;43368:201::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43477:1:::1;43457:22;;:8;:22;;::::0;43449:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43533:28;43552:8;43533:18;:28::i;:::-;43368:201:::0;:::o;22221:273::-;22278:4;22334:7;22315:15;:13;:15::i;:::-;:26;;:66;;;;;22368:13;;22358:7;:23;22315:66;:152;;;;;22466:1;9894:8;22419:17;:26;22437:7;22419:26;;;;;;;;;;;;:43;:48;22315:152;22295:172;;22221:273;;;:::o;41183:98::-;41236:7;41263:10;41256:17;;41183:98;:::o;15423:1129::-;15490:7;15510:12;15525:7;15510:22;;15593:4;15574:15;:13;:15::i;:::-;:23;15570:915;;15627:13;;15620:4;:20;15616:869;;;15665:14;15682:17;:23;15700:4;15682:23;;;;;;;;;;;;15665:40;;15798:1;9894:8;15771:6;:23;:28;15767:699;;16290:113;16307:1;16297:6;:11;16290:113;;16350:17;:25;16368:6;;;;;;;16350:25;;;;;;;;;;;;16341:34;;16290:113;;;16436:6;16429:13;;;;;;15767:699;15642:843;15616:869;15570:915;16513:31;;;;;;;;;;;;;;15423:1129;;;;:::o;36203:105::-;36263:7;36290:10;36283:17;;36203:105;:::o;44648:101::-;44713:7;44740:1;44733:8;;44648:101;:::o;27460:2515::-;27575:27;27605;27624:7;27605:18;:27::i;:::-;27575:57;;27690:4;27649:45;;27665:19;27649:45;;;27645:86;;27703:28;;;;;;;;;;;;;;27645:86;27744:22;27793:4;27770:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27814:43;27831:4;27837:19;:17;:19::i;:::-;27814:16;:43::i;:::-;27770:87;:147;;;;27898:19;:17;:19::i;:::-;27874:43;;:20;27886:7;27874:11;:20::i;:::-;:43;;;27770:147;27744:174;;27936:17;27931:66;;27962:35;;;;;;;;;;;;;;27931:66;28026:1;28012:16;;:2;:16;;;28008:52;;28037:23;;;;;;;;;;;;;;28008:52;28073:43;28095:4;28101:2;28105:7;28114:1;28073:21;:43::i;:::-;28189:15;:24;28205:7;28189:24;;;;;;;;;;;;28182:31;;;;;;;;;;;28581:18;:24;28600:4;28581:24;;;;;;;;;;;;;;;;28579:26;;;;;;;;;;;;28650:18;:22;28669:2;28650:22;;;;;;;;;;;;;;;;28648:24;;;;;;;;;;;10176:8;9778:3;29031:15;:41;;28989:21;29007:2;28989:17;:21::i;:::-;:84;:128;28943:17;:26;28961:7;28943:26;;;;;;;;;;;:174;;;;29287:1;10176:8;29237:19;:46;:51;29233:626;;29309:19;29341:1;29331:7;:11;29309:33;;29498:1;29464:17;:30;29482:11;29464:30;;;;;;;;;;;;:35;29460:384;;29602:13;;29587:11;:28;29583:242;;29782:19;29749:17;:30;29767:11;29749:30;;;;;;;;;;;:52;;;;29583:242;29460:384;29290:569;29233:626;29906:7;29902:2;29887:27;;29896:4;29887:27;;;;;;;;;;;;29925:42;29946:4;29952:2;29956:7;29965:1;29925:20;:42::i;:::-;27564:2411;;27460:2515;;;:::o;22578:104::-;22647:27;22657:2;22661:8;22647:27;;;;;;;;;;;;:9;:27::i;:::-;22578:104;;:::o;43729:191::-;43803:16;43822:6;;;;;;;;;;;43803:25;;43848:8;43839:6;;:17;;;;;;;;;;;;;;;;;;43903:8;43872:40;;43893:8;43872:40;;;;;;;;;;;;43792:128;43729:191;:::o;33672:716::-;33835:4;33881:2;33856:45;;;33902:19;:17;:19::i;:::-;33923:4;33929:7;33938:5;33856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34156:1;34139:6;:13;:18;34135:235;;34185:40;;;;;;;;;;;;;;34135:235;34328:6;34322:13;34313:6;34309:2;34305:15;34298:38;33852:529;34025:54;;;34015:64;;;:6;:64;;;;34008:71;;;33672:716;;;;;;:::o;44757:110::-;44817:13;44850:9;44843:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44757:110;:::o;38745:723::-;38801:13;39031:1;39022:5;:10;39018:53;;39049:10;;;;;;;;;;;;;;;;;;;;;39018:53;39081:12;39096:5;39081:20;;39112:14;39137:78;39152:1;39144:4;:9;39137:78;;39170:8;;;;;:::i;:::-;;;;39201:2;39193:10;;;;;:::i;:::-;;;39137:78;;;39225:19;39257:6;39247:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39225:39;;39275:154;39291:1;39282:5;:10;39275:154;;39319:1;39309:11;;;;;:::i;:::-;;;39386:2;39378:5;:10;;;;:::i;:::-;39365:2;:24;;;;:::i;:::-;39352:39;;39335:6;39342;39335:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39415:2;39406:11;;;;;:::i;:::-;;;39275:154;;;39453:6;39439:21;;;;;38745:723;;;;:::o;14091:176::-;14152:7;9124:13;9261:2;14180:18;:25;14199:5;14180:25;;;;;;;;;;;;;;;;:49;;14179:80;14172:87;;14091:176;;;:::o;35036:159::-;;;;;:::o;19208:148::-;19272:14;19333:5;19323:15;;19208:148;;;:::o;35854:158::-;;;;;:::o;23055:2236::-;23178:20;23201:13;;23178:36;;23243:1;23229:16;;:2;:16;;;23225:48;;23254:19;;;;;;;;;;;;;;23225:48;23300:1;23288:8;:13;23284:44;;23310:18;;;;;;;;;;;;;;23284:44;23341:61;23371:1;23375:2;23379:12;23393:8;23341:21;:61::i;:::-;23945:1;9261:2;23916:1;:25;;23915:31;23903:8;:44;23877:18;:22;23896:2;23877:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10041:3;24346:29;24373:1;24361:8;:13;24346:14;:29::i;:::-;:56;;9778:3;24283:15;:41;;24241:21;24259:2;24241:17;:21::i;:::-;:84;:162;24190:17;:31;24208:12;24190:31;;;;;;;;;;;:213;;;;24420:20;24443:12;24420:35;;24470:11;24499:8;24484:12;:23;24470:37;;24546:1;24528:2;:14;;;:19;24524:635;;24568:313;24624:12;24620:2;24599:38;;24616:1;24599:38;;;;;;;;;;;;24665:69;24704:1;24708:2;24712:14;;;;;;24728:5;24665:30;:69::i;:::-;24660:174;;24770:40;;;;;;;;;;;;;;24660:174;24876:3;24861:12;:18;24568:313;;24962:12;24945:13;;:29;24941:43;;24976:8;;;24941:43;24524:635;;;25025:119;25081:14;;;;;;25077:2;25056:40;;25073:1;25056:40;;;;;;;;;;;;25139:3;25124:12;:18;25025:119;;24524:635;25189:12;25173:13;:28;;;;23654:1559;;25223:60;25252:1;25256:2;25260:12;25274:8;25223:20;:60::i;:::-;23167:2124;23055:2236;;;:::o;19443:142::-;19501:14;19562:5;19552:15;;19443:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:180;6373:77;6370:1;6363:88;6470:4;6467:1;6460:15;6494:4;6491:1;6484:15;6511:281;6594:27;6616:4;6594:27;:::i;:::-;6586:6;6582:40;6724:6;6712:10;6709:22;6688:18;6676:10;6673:34;6670:62;6667:88;;;6735:18;;:::i;:::-;6667:88;6775:10;6771:2;6764:22;6554:238;6511:281;;:::o;6798:129::-;6832:6;6859:20;;:::i;:::-;6849:30;;6888:33;6916:4;6908:6;6888:33;:::i;:::-;6798:129;;;:::o;6933:311::-;7010:4;7100:18;7092:6;7089:30;7086:56;;;7122:18;;:::i;:::-;7086:56;7172:4;7164:6;7160:17;7152:25;;7232:4;7226;7222:15;7214:23;;6933:311;;;:::o;7250:117::-;7359:1;7356;7349:12;7390:710;7486:5;7511:81;7527:64;7584:6;7527:64;:::i;:::-;7511:81;:::i;:::-;7502:90;;7612:5;7641:6;7634:5;7627:21;7675:4;7668:5;7664:16;7657:23;;7728:4;7720:6;7716:17;7708:6;7704:30;7757:3;7749:6;7746:15;7743:122;;;7776:79;;:::i;:::-;7743:122;7891:6;7874:220;7908:6;7903:3;7900:15;7874:220;;;7983:3;8012:37;8045:3;8033:10;8012:37;:::i;:::-;8007:3;8000:50;8079:4;8074:3;8070:14;8063:21;;7950:144;7934:4;7929:3;7925:14;7918:21;;7874:220;;;7878:21;7492:608;;7390:710;;;;;:::o;8123:370::-;8194:5;8243:3;8236:4;8228:6;8224:17;8220:27;8210:122;;8251:79;;:::i;:::-;8210:122;8368:6;8355:20;8393:94;8483:3;8475:6;8468:4;8460:6;8456:17;8393:94;:::i;:::-;8384:103;;8200:293;8123:370;;;;:::o;8499:684::-;8592:6;8600;8649:2;8637:9;8628:7;8624:23;8620:32;8617:119;;;8655:79;;:::i;:::-;8617:119;8775:1;8800:53;8845:7;8836:6;8825:9;8821:22;8800:53;:::i;:::-;8790:63;;8746:117;8930:2;8919:9;8915:18;8902:32;8961:18;8953:6;8950:30;8947:117;;;8983:79;;:::i;:::-;8947:117;9088:78;9158:7;9149:6;9138:9;9134:22;9088:78;:::i;:::-;9078:88;;8873:303;8499:684;;;;;:::o;9189:114::-;9256:6;9290:5;9284:12;9274:22;;9189:114;;;:::o;9309:184::-;9408:11;9442:6;9437:3;9430:19;9482:4;9477:3;9473:14;9458:29;;9309:184;;;;:::o;9499:132::-;9566:4;9589:3;9581:11;;9619:4;9614:3;9610:14;9602:22;;9499:132;;;:::o;9637:108::-;9714:24;9732:5;9714:24;:::i;:::-;9709:3;9702:37;9637:108;;:::o;9751:179::-;9820:10;9841:46;9883:3;9875:6;9841:46;:::i;:::-;9919:4;9914:3;9910:14;9896:28;;9751:179;;;;:::o;9936:113::-;10006:4;10038;10033:3;10029:14;10021:22;;9936:113;;;:::o;10085:732::-;10204:3;10233:54;10281:5;10233:54;:::i;:::-;10303:86;10382:6;10377:3;10303:86;:::i;:::-;10296:93;;10413:56;10463:5;10413:56;:::i;:::-;10492:7;10523:1;10508:284;10533:6;10530:1;10527:13;10508:284;;;10609:6;10603:13;10636:63;10695:3;10680:13;10636:63;:::i;:::-;10629:70;;10722:60;10775:6;10722:60;:::i;:::-;10712:70;;10568:224;10555:1;10552;10548:9;10543:14;;10508:284;;;10512:14;10808:3;10801:10;;10209:608;;;10085:732;;;;:::o;10823:373::-;10966:4;11004:2;10993:9;10989:18;10981:26;;11053:9;11047:4;11043:20;11039:1;11028:9;11024:17;11017:47;11081:108;11184:4;11175:6;11081:108;:::i;:::-;11073:116;;10823:373;;;;:::o;11202:117::-;11311:1;11308;11301:12;11325:308;11387:4;11477:18;11469:6;11466:30;11463:56;;;11499:18;;:::i;:::-;11463:56;11537:29;11559:6;11537:29;:::i;:::-;11529:37;;11621:4;11615;11611:15;11603:23;;11325:308;;;:::o;11639:146::-;11736:6;11731:3;11726;11713:30;11777:1;11768:6;11763:3;11759:16;11752:27;11639:146;;;:::o;11791:425::-;11869:5;11894:66;11910:49;11952:6;11910:49;:::i;:::-;11894:66;:::i;:::-;11885:75;;11983:6;11976:5;11969:21;12021:4;12014:5;12010:16;12059:3;12050:6;12045:3;12041:16;12038:25;12035:112;;;12066:79;;:::i;:::-;12035:112;12156:54;12203:6;12198:3;12193;12156:54;:::i;:::-;11875:341;11791:425;;;;;:::o;12236:340::-;12292:5;12341:3;12334:4;12326:6;12322:17;12318:27;12308:122;;12349:79;;:::i;:::-;12308:122;12466:6;12453:20;12491:79;12566:3;12558:6;12551:4;12543:6;12539:17;12491:79;:::i;:::-;12482:88;;12298:278;12236:340;;;;:::o;12582:509::-;12651:6;12700:2;12688:9;12679:7;12675:23;12671:32;12668:119;;;12706:79;;:::i;:::-;12668:119;12854:1;12843:9;12839:17;12826:31;12884:18;12876:6;12873:30;12870:117;;;12906:79;;:::i;:::-;12870:117;13011:63;13066:7;13057:6;13046:9;13042:22;13011:63;:::i;:::-;13001:73;;12797:287;12582:509;;;;:::o;13097:121::-;13192:1;13185:5;13182:12;13172:40;;13208:1;13205;13198:12;13172:40;13097:121;:::o;13224:183::-;13292:5;13330:6;13317:20;13308:29;;13346:55;13395:5;13346:55;:::i;:::-;13224:183;;;;:::o;13413:373::-;13494:6;13543:2;13531:9;13522:7;13518:23;13514:32;13511:119;;;13549:79;;:::i;:::-;13511:119;13669:1;13694:75;13761:7;13752:6;13741:9;13737:22;13694:75;:::i;:::-;13684:85;;13640:139;13413:373;;;;:::o;13792:180::-;13840:77;13837:1;13830:88;13937:4;13934:1;13927:15;13961:4;13958:1;13951:15;13978:127;14073:1;14066:5;14063:12;14053:46;;14079:18;;:::i;:::-;14053:46;13978:127;:::o;14111:155::-;14170:7;14199:5;14188:16;;14205:55;14254:5;14205:55;:::i;:::-;14111:155;;;:::o;14272:::-;14342:9;14375:46;14415:5;14375:46;:::i;:::-;14362:59;;14272:155;;;:::o;14433:171::-;14540:57;14591:5;14540:57;:::i;:::-;14535:3;14528:70;14433:171;;:::o;14610:262::-;14723:4;14761:2;14750:9;14746:18;14738:26;;14774:91;14862:1;14851:9;14847:17;14838:6;14774:91;:::i;:::-;14610:262;;;;:::o;14878:116::-;14948:21;14963:5;14948:21;:::i;:::-;14941:5;14938:32;14928:60;;14984:1;14981;14974:12;14928:60;14878:116;:::o;15000:133::-;15043:5;15081:6;15068:20;15059:29;;15097:30;15121:5;15097:30;:::i;:::-;15000:133;;;;:::o;15139:468::-;15204:6;15212;15261:2;15249:9;15240:7;15236:23;15232:32;15229:119;;;15267:79;;:::i;:::-;15229:119;15387:1;15412:53;15457:7;15448:6;15437:9;15433:22;15412:53;:::i;:::-;15402:63;;15358:117;15514:2;15540:50;15582:7;15573:6;15562:9;15558:22;15540:50;:::i;:::-;15530:60;;15485:115;15139:468;;;;;:::o;15613:307::-;15674:4;15764:18;15756:6;15753:30;15750:56;;;15786:18;;:::i;:::-;15750:56;15824:29;15846:6;15824:29;:::i;:::-;15816:37;;15908:4;15902;15898:15;15890:23;;15613:307;;;:::o;15926:423::-;16003:5;16028:65;16044:48;16085:6;16044:48;:::i;:::-;16028:65;:::i;:::-;16019:74;;16116:6;16109:5;16102:21;16154:4;16147:5;16143:16;16192:3;16183:6;16178:3;16174:16;16171:25;16168:112;;;16199:79;;:::i;:::-;16168:112;16289:54;16336:6;16331:3;16326;16289:54;:::i;:::-;16009:340;15926:423;;;;;:::o;16368:338::-;16423:5;16472:3;16465:4;16457:6;16453:17;16449:27;16439:122;;16480:79;;:::i;:::-;16439:122;16597:6;16584:20;16622:78;16696:3;16688:6;16681:4;16673:6;16669:17;16622:78;:::i;:::-;16613:87;;16429:277;16368:338;;;;:::o;16712:943::-;16807:6;16815;16823;16831;16880:3;16868:9;16859:7;16855:23;16851:33;16848:120;;;16887:79;;:::i;:::-;16848:120;17007:1;17032:53;17077:7;17068:6;17057:9;17053:22;17032:53;:::i;:::-;17022:63;;16978:117;17134:2;17160:53;17205:7;17196:6;17185:9;17181:22;17160:53;:::i;:::-;17150:63;;17105:118;17262:2;17288:53;17333:7;17324:6;17313:9;17309:22;17288:53;:::i;:::-;17278:63;;17233:118;17418:2;17407:9;17403:18;17390:32;17449:18;17441:6;17438:30;17435:117;;;17471:79;;:::i;:::-;17435:117;17576:62;17630:7;17621:6;17610:9;17606:22;17576:62;:::i;:::-;17566:72;;17361:287;16712:943;;;;;;;:::o;17661:474::-;17729:6;17737;17786:2;17774:9;17765:7;17761:23;17757:32;17754:119;;;17792:79;;:::i;:::-;17754:119;17912:1;17937:53;17982:7;17973:6;17962:9;17958:22;17937:53;:::i;:::-;17927:63;;17883:117;18039:2;18065:53;18110:7;18101:6;18090:9;18086:22;18065:53;:::i;:::-;18055:63;;18010:118;17661:474;;;;;:::o;18141:::-;18209:6;18217;18266:2;18254:9;18245:7;18241:23;18237:32;18234:119;;;18272:79;;:::i;:::-;18234:119;18392:1;18417:53;18462:7;18453:6;18442:9;18438:22;18417:53;:::i;:::-;18407:63;;18363:117;18519:2;18545:53;18590:7;18581:6;18570:9;18566:22;18545:53;:::i;:::-;18535:63;;18490:118;18141:474;;;;;:::o;18621:180::-;18669:77;18666:1;18659:88;18766:4;18763:1;18756:15;18790:4;18787:1;18780:15;18807:320;18851:6;18888:1;18882:4;18878:12;18868:22;;18935:1;18929:4;18925:12;18956:18;18946:81;;19012:4;19004:6;19000:17;18990:27;;18946:81;19074:2;19066:6;19063:14;19043:18;19040:38;19037:84;;19093:18;;:::i;:::-;19037:84;18858:269;18807:320;;;:::o;19133:182::-;19273:34;19269:1;19261:6;19257:14;19250:58;19133:182;:::o;19321:366::-;19463:3;19484:67;19548:2;19543:3;19484:67;:::i;:::-;19477:74;;19560:93;19649:3;19560:93;:::i;:::-;19678:2;19673:3;19669:12;19662:19;;19321:366;;;:::o;19693:419::-;19859:4;19897:2;19886:9;19882:18;19874:26;;19946:9;19940:4;19936:20;19932:1;19921:9;19917:17;19910:47;19974:131;20100:4;19974:131;:::i;:::-;19966:139;;19693:419;;;:::o;20118:180::-;20166:77;20163:1;20156:88;20263:4;20260:1;20253:15;20287:4;20284:1;20277:15;20304:194;20344:4;20364:20;20382:1;20364:20;:::i;:::-;20359:25;;20398:20;20416:1;20398:20;:::i;:::-;20393:25;;20442:1;20439;20435:9;20427:17;;20466:1;20460:4;20457:11;20454:37;;;20471:18;;:::i;:::-;20454:37;20304:194;;;;:::o;20504:180::-;20552:77;20549:1;20542:88;20649:4;20646:1;20639:15;20673:4;20670:1;20663:15;20690:233;20729:3;20752:24;20770:5;20752:24;:::i;:::-;20743:33;;20798:66;20791:5;20788:77;20785:103;;20868:18;;:::i;:::-;20785:103;20915:1;20908:5;20904:13;20897:20;;20690:233;;;:::o;20929:147::-;21030:11;21067:3;21052:18;;20929:147;;;;:::o;21082:114::-;;:::o;21202:398::-;21361:3;21382:83;21463:1;21458:3;21382:83;:::i;:::-;21375:90;;21474:93;21563:3;21474:93;:::i;:::-;21592:1;21587:3;21583:11;21576:18;;21202:398;;;:::o;21606:379::-;21790:3;21812:147;21955:3;21812:147;:::i;:::-;21805:154;;21976:3;21969:10;;21606:379;;;:::o;21991:141::-;22040:4;22063:3;22055:11;;22086:3;22083:1;22076:14;22120:4;22117:1;22107:18;22099:26;;21991:141;;;:::o;22138:93::-;22175:6;22222:2;22217;22210:5;22206:14;22202:23;22192:33;;22138:93;;;:::o;22237:107::-;22281:8;22331:5;22325:4;22321:16;22300:37;;22237:107;;;;:::o;22350:393::-;22419:6;22469:1;22457:10;22453:18;22492:97;22522:66;22511:9;22492:97;:::i;:::-;22610:39;22640:8;22629:9;22610:39;:::i;:::-;22598:51;;22682:4;22678:9;22671:5;22667:21;22658:30;;22731:4;22721:8;22717:19;22710:5;22707:30;22697:40;;22426:317;;22350:393;;;;;:::o;22749:60::-;22777:3;22798:5;22791:12;;22749:60;;;:::o;22815:142::-;22865:9;22898:53;22916:34;22925:24;22943:5;22925:24;:::i;:::-;22916:34;:::i;:::-;22898:53;:::i;:::-;22885:66;;22815:142;;;:::o;22963:75::-;23006:3;23027:5;23020:12;;22963:75;;;:::o;23044:269::-;23154:39;23185:7;23154:39;:::i;:::-;23215:91;23264:41;23288:16;23264:41;:::i;:::-;23256:6;23249:4;23243:11;23215:91;:::i;:::-;23209:4;23202:105;23120:193;23044:269;;;:::o;23319:73::-;23364:3;23319:73;:::o;23398:189::-;23475:32;;:::i;:::-;23516:65;23574:6;23566;23560:4;23516:65;:::i;:::-;23451:136;23398:189;;:::o;23593:186::-;23653:120;23670:3;23663:5;23660:14;23653:120;;;23724:39;23761:1;23754:5;23724:39;:::i;:::-;23697:1;23690:5;23686:13;23677:22;;23653:120;;;23593:186;;:::o;23785:543::-;23886:2;23881:3;23878:11;23875:446;;;23920:38;23952:5;23920:38;:::i;:::-;24004:29;24022:10;24004:29;:::i;:::-;23994:8;23990:44;24187:2;24175:10;24172:18;24169:49;;;24208:8;24193:23;;24169:49;24231:80;24287:22;24305:3;24287:22;:::i;:::-;24277:8;24273:37;24260:11;24231:80;:::i;:::-;23890:431;;23875:446;23785:543;;;:::o;24334:117::-;24388:8;24438:5;24432:4;24428:16;24407:37;;24334:117;;;;:::o;24457:169::-;24501:6;24534:51;24582:1;24578:6;24570:5;24567:1;24563:13;24534:51;:::i;:::-;24530:56;24615:4;24609;24605:15;24595:25;;24508:118;24457:169;;;;:::o;24631:295::-;24707:4;24853:29;24878:3;24872:4;24853:29;:::i;:::-;24845:37;;24915:3;24912:1;24908:11;24902:4;24899:21;24891:29;;24631:295;;;;:::o;24931:1395::-;25048:37;25081:3;25048:37;:::i;:::-;25150:18;25142:6;25139:30;25136:56;;;25172:18;;:::i;:::-;25136:56;25216:38;25248:4;25242:11;25216:38;:::i;:::-;25301:67;25361:6;25353;25347:4;25301:67;:::i;:::-;25395:1;25419:4;25406:17;;25451:2;25443:6;25440:14;25468:1;25463:618;;;;26125:1;26142:6;26139:77;;;26191:9;26186:3;26182:19;26176:26;26167:35;;26139:77;26242:67;26302:6;26295:5;26242:67;:::i;:::-;26236:4;26229:81;26098:222;25433:887;;25463:618;25515:4;25511:9;25503:6;25499:22;25549:37;25581:4;25549:37;:::i;:::-;25608:1;25622:208;25636:7;25633:1;25630:14;25622:208;;;25715:9;25710:3;25706:19;25700:26;25692:6;25685:42;25766:1;25758:6;25754:14;25744:24;;25813:2;25802:9;25798:18;25785:31;;25659:4;25656:1;25652:12;25647:17;;25622:208;;;25858:6;25849:7;25846:19;25843:179;;;25916:9;25911:3;25907:19;25901:26;25959:48;26001:4;25993:6;25989:17;25978:9;25959:48;:::i;:::-;25951:6;25944:64;25866:156;25843:179;26068:1;26064;26056:6;26052:14;26048:22;26042:4;26035:36;25470:611;;;25433:887;;25023:1303;;;24931:1395;;:::o;26332:176::-;26472:28;26468:1;26460:6;26456:14;26449:52;26332:176;:::o;26514:366::-;26656:3;26677:67;26741:2;26736:3;26677:67;:::i;:::-;26670:74;;26753:93;26842:3;26753:93;:::i;:::-;26871:2;26866:3;26862:12;26855:19;;26514:366;;;:::o;26886:419::-;27052:4;27090:2;27079:9;27075:18;27067:26;;27139:9;27133:4;27129:20;27125:1;27114:9;27110:17;27103:47;27167:131;27293:4;27167:131;:::i;:::-;27159:139;;26886:419;;;:::o;27311:169::-;27451:21;27447:1;27439:6;27435:14;27428:45;27311:169;:::o;27486:366::-;27628:3;27649:67;27713:2;27708:3;27649:67;:::i;:::-;27642:74;;27725:93;27814:3;27725:93;:::i;:::-;27843:2;27838:3;27834:12;27827:19;;27486:366;;;:::o;27858:419::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:191::-;28323:3;28342:20;28360:1;28342:20;:::i;:::-;28337:25;;28376:20;28394:1;28376:20;:::i;:::-;28371:25;;28419:1;28416;28412:9;28405:16;;28440:3;28437:1;28434:10;28431:36;;;28447:18;;:::i;:::-;28431:36;28283:191;;;;:::o;28480:169::-;28620:21;28616:1;28608:6;28604:14;28597:45;28480:169;:::o;28655:366::-;28797:3;28818:67;28882:2;28877:3;28818:67;:::i;:::-;28811:74;;28894:93;28983:3;28894:93;:::i;:::-;29012:2;29007:3;29003:12;28996:19;;28655:366;;;:::o;29027:419::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:410::-;29492:7;29515:20;29533:1;29515:20;:::i;:::-;29510:25;;29549:20;29567:1;29549:20;:::i;:::-;29544:25;;29604:1;29601;29597:9;29626:30;29644:11;29626:30;:::i;:::-;29615:41;;29805:1;29796:7;29792:15;29789:1;29786:22;29766:1;29759:9;29739:83;29716:139;;29835:18;;:::i;:::-;29716:139;29500:362;29452:410;;;;:::o;29868:169::-;30008:21;30004:1;29996:6;29992:14;29985:45;29868:169;:::o;30043:366::-;30185:3;30206:67;30270:2;30265:3;30206:67;:::i;:::-;30199:74;;30282:93;30371:3;30282:93;:::i;:::-;30400:2;30395:3;30391:12;30384:19;;30043:366;;;:::o;30415:419::-;30581:4;30619:2;30608:9;30604:18;30596:26;;30668:9;30662:4;30658:20;30654:1;30643:9;30639:17;30632:47;30696:131;30822:4;30696:131;:::i;:::-;30688:139;;30415:419;;;:::o;30840:173::-;30980:25;30976:1;30968:6;30964:14;30957:49;30840:173;:::o;31019:366::-;31161:3;31182:67;31246:2;31241:3;31182:67;:::i;:::-;31175:74;;31258:93;31347:3;31258:93;:::i;:::-;31376:2;31371:3;31367:12;31360:19;;31019:366;;;:::o;31391:419::-;31557:4;31595:2;31584:9;31580:18;31572:26;;31644:9;31638:4;31634:20;31630:1;31619:9;31615:17;31608:47;31672:131;31798:4;31672:131;:::i;:::-;31664:139;;31391:419;;;:::o;31816:234::-;31956:34;31952:1;31944:6;31940:14;31933:58;32025:17;32020:2;32012:6;32008:15;32001:42;31816:234;:::o;32056:366::-;32198:3;32219:67;32283:2;32278:3;32219:67;:::i;:::-;32212:74;;32295:93;32384:3;32295:93;:::i;:::-;32413:2;32408:3;32404:12;32397:19;;32056:366;;;:::o;32428:419::-;32594:4;32632:2;32621:9;32617:18;32609:26;;32681:9;32675:4;32671:20;32667:1;32656:9;32652:17;32645:47;32709:131;32835:4;32709:131;:::i;:::-;32701:139;;32428:419;;;:::o;32853:148::-;32955:11;32992:3;32977:18;;32853:148;;;;:::o;33007:390::-;33113:3;33141:39;33174:5;33141:39;:::i;:::-;33196:89;33278:6;33273:3;33196:89;:::i;:::-;33189:96;;33294:65;33352:6;33347:3;33340:4;33333:5;33329:16;33294:65;:::i;:::-;33384:6;33379:3;33375:16;33368:23;;33117:280;33007:390;;;;:::o;33403:155::-;33543:7;33539:1;33531:6;33527:14;33520:31;33403:155;:::o;33564:400::-;33724:3;33745:84;33827:1;33822:3;33745:84;:::i;:::-;33738:91;;33838:93;33927:3;33838:93;:::i;:::-;33956:1;33951:3;33947:11;33940:18;;33564:400;;;:::o;33970:701::-;34251:3;34273:95;34364:3;34355:6;34273:95;:::i;:::-;34266:102;;34385:95;34476:3;34467:6;34385:95;:::i;:::-;34378:102;;34497:148;34641:3;34497:148;:::i;:::-;34490:155;;34662:3;34655:10;;33970:701;;;;;:::o;34677:225::-;34817:34;34813:1;34805:6;34801:14;34794:58;34886:8;34881:2;34873:6;34869:15;34862:33;34677:225;:::o;34908:366::-;35050:3;35071:67;35135:2;35130:3;35071:67;:::i;:::-;35064:74;;35147:93;35236:3;35147:93;:::i;:::-;35265:2;35260:3;35256:12;35249:19;;34908:366;;;:::o;35280:419::-;35446:4;35484:2;35473:9;35469:18;35461:26;;35533:9;35527:4;35523:20;35519:1;35508:9;35504:17;35497:47;35561:131;35687:4;35561:131;:::i;:::-;35553:139;;35280:419;;;:::o;35705:98::-;35756:6;35790:5;35784:12;35774:22;;35705:98;;;:::o;35809:168::-;35892:11;35926:6;35921:3;35914:19;35966:4;35961:3;35957:14;35942:29;;35809:168;;;;:::o;35983:373::-;36069:3;36097:38;36129:5;36097:38;:::i;:::-;36151:70;36214:6;36209:3;36151:70;:::i;:::-;36144:77;;36230:65;36288:6;36283:3;36276:4;36269:5;36265:16;36230:65;:::i;:::-;36320:29;36342:6;36320:29;:::i;:::-;36315:3;36311:39;36304:46;;36073:283;35983:373;;;;:::o;36362:640::-;36557:4;36595:3;36584:9;36580:19;36572:27;;36609:71;36677:1;36666:9;36662:17;36653:6;36609:71;:::i;:::-;36690:72;36758:2;36747:9;36743:18;36734:6;36690:72;:::i;:::-;36772;36840:2;36829:9;36825:18;36816:6;36772:72;:::i;:::-;36891:9;36885:4;36881:20;36876:2;36865:9;36861:18;36854:48;36919:76;36990:4;36981:6;36919:76;:::i;:::-;36911:84;;36362:640;;;;;;;:::o;37008:141::-;37064:5;37095:6;37089:13;37080:22;;37111:32;37137:5;37111:32;:::i;:::-;37008:141;;;;:::o;37155:349::-;37224:6;37273:2;37261:9;37252:7;37248:23;37244:32;37241:119;;;37279:79;;:::i;:::-;37241:119;37399:1;37424:63;37479:7;37470:6;37459:9;37455:22;37424:63;:::i;:::-;37414:73;;37370:127;37155:349;;;;:::o;37510:180::-;37558:77;37555:1;37548:88;37655:4;37652:1;37645:15;37679:4;37676:1;37669:15;37696:185;37736:1;37753:20;37771:1;37753:20;:::i;:::-;37748:25;;37787:20;37805:1;37787:20;:::i;:::-;37782:25;;37826:1;37816:35;;37831:18;;:::i;:::-;37816:35;37873:1;37870;37866:9;37861:14;;37696:185;;;;:::o;37887:176::-;37919:1;37936:20;37954:1;37936:20;:::i;:::-;37931:25;;37970:20;37988:1;37970:20;:::i;:::-;37965:25;;38009:1;37999:35;;38014:18;;:::i;:::-;37999:35;38055:1;38052;38048:9;38043:14;;37887:176;;;;:::o

Swarm Source

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