ETH Price: $3,270.51 (+0.51%)
Gas: 1 Gwei

Token

Mutant Okay Bearz (MOB)
 

Overview

Max Total Supply

2,589 MOB

Holders

314

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MOB
0x3a066fdcc06731c8aef411fa8361c8da602a5fde
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:
Bears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

// File: IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

/**
 * @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.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;


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

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

    /**
     * @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/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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

// File: Bears.sol


pragma solidity ^0.8.7;

//@author Abderrahman JAIZE
//@BEARS


contract Bears is Ownable, ERC721A, PaymentSplitter {

    using Strings for uint;

    enum Step {
        Before,
        Mint,
        SoldOut
    }

    string public baseURI;

    Step public sellingStep;

    uint private constant MAX_SUPPLY = 10000;
    uint private constant MAX_PUBLIC = 10000;

    uint public publicSalePrice = 0 ether;

    uint public FreeMinAmount = 10 ; 

    bytes32 public merkleRoot;

    uint private teamLength;

    constructor(address[] memory _team, uint[] memory _teamShares, bytes32 _merkleRoot, string memory _baseURI) ERC721A("Mutant Okay Bearz", "MOB")
    PaymentSplitter(_team, _teamShares) {
        merkleRoot = _merkleRoot;
        baseURI = _baseURI;
        teamLength = _team.length;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function MutantMint(address _account, uint _quantity) external payable callerIsUser {
        uint price = publicSalePrice;
        require(_quantity < FreeMinAmount+1, "quantity is not right"); 
        require(sellingStep == Step.Mint, "Public sale is not activated");
        require(totalSupply() + _quantity <= MAX_PUBLIC, "Max supply exceeded");
        require(msg.value >= price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }
    /*
    function setSaleStartTime() external onlyOwner {
        saleStartTime = 0.02 ether;
    }
    */
    function setPublicSalePrice() external onlyOwner {
        publicSalePrice = 0.0069 ether;
    }

    function setFreeMinAmount(uint _FreeMinAmount) external onlyOwner {
        FreeMinAmount = _FreeMinAmount;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function currentTime() internal view returns(uint) {
        return block.timestamp;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

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

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    //Whitelist
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function isWhiteListed(address _account, bytes32[] calldata _proof) internal view returns(bool) {
        return _verify(leaf(_account), _proof);
    }

    function leaf(address _account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verify(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leaf);
    }

    //ReleaseALL
    function releaseAll() external {
        for(uint i = 0 ; i < teamLength ; i++) {
            release(payable(payee(i)));
        }
    }

    receive() override external payable {
        revert('Only if you mint');
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeMinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"MutantMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","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":[],"name":"sellingStep","outputs":[{"internalType":"enum Bears.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMinAmount","type":"uint256"}],"name":"setFreeMinAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526000601255600a6013553480156200001b57600080fd5b50604051620055b5380380620055b5833981810160405281019062000041919062000811565b83836040518060400160405280601181526020017f4d7574616e74204f6b617920426561727a0000000000000000000000000000008152506040518060400160405280600381526020017f4d4f420000000000000000000000000000000000000000000000000000000000815250620000cf620000c36200023c60201b60201c565b6200024460201b60201c565b8160039080519060200190620000e792919062000542565b5080600490805190602001906200010092919062000542565b50600180819055505050805182511462000151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001489062000a14565b60405180910390fd5b600082511162000198576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018f9062000a58565b60405180910390fd5b60005b82518110156200020757620001f1838281518110620001bf57620001be62000d5d565b5b6020026020010151838381518110620001dd57620001dc62000d5d565b5b60200260200101516200030860201b60201c565b8080620001fe9062000cb1565b9150506200019b565b5050508160148190555080601090805190602001906200022992919062000542565b5083516015819055505050505062000f72565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200037b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037290620009f2565b60405180910390fd5b60008111620003c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b89062000a7a565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d9062000a36565b60405180910390fd5b600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600954620004fd919062000b6a565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac828260405162000536929190620009c5565b60405180910390a15050565b828054620005509062000c45565b90600052602060002090601f016020900481019282620005745760008555620005c0565b82601f106200058f57805160ff1916838001178555620005c0565b82800160010185558215620005c0579182015b82811115620005bf578251825591602001919060010190620005a2565b5b509050620005cf9190620005d3565b5090565b5b80821115620005ee576000816000905550600101620005d4565b5090565b600062000609620006038462000ac5565b62000a9c565b905080838252602082019050828560208602820111156200062f576200062e62000dc0565b5b60005b8581101562000663578162000648888262000733565b84526020840193506020830192505060018101905062000632565b5050509392505050565b6000620006846200067e8462000af4565b62000a9c565b90508083825260208201905082856020860282011115620006aa57620006a962000dc0565b5b60005b85811015620006de5781620006c38882620007fa565b845260208401935060208301925050600181019050620006ad565b5050509392505050565b6000620006ff620006f98462000b23565b62000a9c565b9050828152602081018484840111156200071e576200071d62000dc5565b5b6200072b84828562000c0f565b509392505050565b600081519050620007448162000f24565b92915050565b600082601f83011262000762576200076162000dbb565b5b815162000774848260208601620005f2565b91505092915050565b600082601f83011262000795576200079462000dbb565b5b8151620007a78482602086016200066d565b91505092915050565b600081519050620007c18162000f3e565b92915050565b600082601f830112620007df57620007de62000dbb565b5b8151620007f1848260208601620006e8565b91505092915050565b6000815190506200080b8162000f58565b92915050565b600080600080608085870312156200082e576200082d62000dcf565b5b600085015167ffffffffffffffff8111156200084f576200084e62000dca565b5b6200085d878288016200074a565b945050602085015167ffffffffffffffff81111562000881576200088062000dca565b5b6200088f878288016200077d565b9350506040620008a287828801620007b0565b925050606085015167ffffffffffffffff811115620008c657620008c562000dca565b5b620008d487828801620007c7565b91505092959194509250565b620008eb8162000bc7565b82525050565b600062000900602c8362000b59565b91506200090d8262000de5565b604082019050919050565b60006200092760328362000b59565b9150620009348262000e34565b604082019050919050565b60006200094e602b8362000b59565b91506200095b8262000e83565b604082019050919050565b600062000975601a8362000b59565b9150620009828262000ed2565b602082019050919050565b60006200099c601d8362000b59565b9150620009a98262000efb565b602082019050919050565b620009bf8162000c05565b82525050565b6000604082019050620009dc6000830185620008e0565b620009eb6020830184620009b4565b9392505050565b6000602082019050818103600083015262000a0d81620008f1565b9050919050565b6000602082019050818103600083015262000a2f8162000918565b9050919050565b6000602082019050818103600083015262000a51816200093f565b9050919050565b6000602082019050818103600083015262000a738162000966565b9050919050565b6000602082019050818103600083015262000a95816200098d565b9050919050565b600062000aa862000abb565b905062000ab6828262000c7b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000ae35762000ae262000d8c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b125762000b1162000d8c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b415762000b4062000d8c565b5b62000b4c8262000dd4565b9050602081019050919050565b600082825260208201905092915050565b600062000b778262000c05565b915062000b848362000c05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bbc5762000bbb62000cff565b5b828201905092915050565b600062000bd48262000be5565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c2f57808201518184015260208101905062000c12565b8381111562000c3f576000848401525b50505050565b6000600282049050600182168062000c5e57607f821691505b6020821081141562000c755762000c7462000d2e565b5b50919050565b62000c868262000dd4565b810181811067ffffffffffffffff8211171562000ca85762000ca762000d8c565b5b80604052505050565b600062000cbe8262000c05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cf45762000cf362000cff565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000f2f8162000bc7565b811462000f3b57600080fd5b50565b62000f498162000bdb565b811462000f5557600080fd5b50565b62000f638162000c05565b811462000f6f57600080fd5b50565b6146338062000f826000396000f3fe6080604052600436106102295760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e33b7de31161006f578063e33b7de31461084e578063e985e9c514610879578063f2fde38b146108b6578063f8dcbddb146108df578063fcac04011461090857610269565b8063b88d4fde14610743578063c87b56dd1461076c578063cbccefb2146107a9578063ce7c2ac2146107d4578063d79779b21461081157610269565b80639b6860c8116100f25780639b6860c814610693578063a0bcfc7f146106be578063a22cb465146106e7578063b108124614610710578063b671629f1461072c57610269565b80638da5cb5b146105d757806395d89b41146106025780639771698f1461062d5780639852595c1461065657610269565b8063406072a9116101b15780636c0360eb116101755780636c0360eb146104f257806370a082311461051d578063715018a61461055a5780637cb64759146105715780638b83209b1461059a57610269565b8063406072a91461040f57806342842e0e1461044c57806348b75044146104755780635be7fde81461049e5780636352211e146104b557610269565b806318160ddd116101f857806318160ddd1461033c578063191655871461036757806323b872dd146103905780632eb4a7ab146103b95780633a98ef39146103e457610269565b806301ffc9a71461026e57806306fdde03146102ab578063081812fc146102d6578063095ea7b31461031357610269565b36610269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090613bd3565b60405180910390fd5b600080fd5b34801561027a57600080fd5b506102956004803603810190610290919061331f565b610933565b6040516102a291906139c0565b60405180910390f35b3480156102b757600080fd5b506102c06109c5565b6040516102cd9190613a11565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061342f565b610a57565b60405161030a9190613907565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613285565b610ad3565b005b34801561034857600080fd5b50610351610c7a565b60405161035e9190613c33565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613102565b610c91565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061316f565b610e3c565b005b3480156103c557600080fd5b506103ce610e4c565b6040516103db91906139db565b60405180910390f35b3480156103f057600080fd5b506103f9610e52565b6040516104069190613c33565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906133a6565b610e5c565b6040516104439190613c33565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061316f565b610ee3565b005b34801561048157600080fd5b5061049c600480360381019061049791906133a6565b610f03565b005b3480156104aa57600080fd5b506104b36111cb565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061342f565b6111ff565b6040516104e99190613907565b60405180910390f35b3480156104fe57600080fd5b50610507611211565b6040516105149190613a11565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906130d5565b61129f565b6040516105519190613c33565b60405180910390f35b34801561056657600080fd5b5061056f611358565b005b34801561057d57600080fd5b50610598600480360381019061059391906132f2565b6113e0565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061342f565b611466565b6040516105ce9190613907565b60405180910390f35b3480156105e357600080fd5b506105ec6114ae565b6040516105f99190613907565b60405180910390f35b34801561060e57600080fd5b506106176114d7565b6040516106249190613a11565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f919061342f565b611569565b005b34801561066257600080fd5b5061067d600480360381019061067891906130d5565b6115ef565b60405161068a9190613c33565b60405180910390f35b34801561069f57600080fd5b506106a8611638565b6040516106b59190613c33565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906133e6565b61163e565b005b3480156106f357600080fd5b5061070e60048036038101906107099190613245565b6116d4565b005b61072a60048036038101906107259190613285565b61184c565b005b34801561073857600080fd5b50610741611a3b565b005b34801561074f57600080fd5b5061076a600480360381019061076591906131c2565b611ac7565b005b34801561077857600080fd5b50610793600480360381019061078e919061342f565b611b3a565b6040516107a09190613a11565b60405180910390f35b3480156107b557600080fd5b506107be611bb6565b6040516107cb91906139f6565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906130d5565b611bc9565b6040516108089190613c33565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613379565b611c12565b6040516108459190613c33565b60405180910390f35b34801561085a57600080fd5b50610863611c5b565b6040516108709190613c33565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061312f565b611c65565b6040516108ad91906139c0565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906130d5565b611cf9565b005b3480156108eb57600080fd5b506109066004803603810190610901919061342f565b611df1565b005b34801561091457600080fd5b5061091d611eac565b60405161092a9190613c33565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546109d490613f8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613f8c565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611eb2565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ade82611f11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b65611fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610bc857610b9181610b8c611fdf565b611c65565b610bc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c84611fe7565b6002546001540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613ab3565b60405180910390fd5b6000610d1d611c5b565b47610d289190613d38565b90506000610d3f8383610d3a866115ef565b611ff0565b90506000811415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613b33565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dd49190613d38565b9250508190555080600a6000828254610ded9190613d38565b92505081905550610dfe838261205e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e2f929190613922565b60405180910390a1505050565b610e47838383612152565b505050565b60145481565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610efe83838360405180602001604052806000815250611ac7565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613ab3565b60405180910390fd5b6000610f9083611c12565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc99190613907565b60206040518083038186803b158015610fe157600080fd5b505afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611019919061345c565b6110239190613d38565b9050600061103b83836110368787610e5c565b611ff0565b90506000811415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613b33565b60405180910390fd5b80600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461110d9190613d38565b9250508190555080600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111639190613d38565b925050819055506111758484836124fc565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516111bd929190613997565b60405180910390a250505050565b60005b6015548110156111fc576111e96111e482611466565b610c91565b80806111f490613fef565b9150506111ce565b50565b600061120a82611f11565b9050919050565b6010805461121e90613f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461124a90613f8c565b80156112975780601f1061126c57610100808354040283529160200191611297565b820191906000526020600020905b81548152906001019060200180831161127a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611307576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611360612582565b73ffffffffffffffffffffffffffffffffffffffff1661137e6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613b93565b60405180910390fd5b6113de600061258a565b565b6113e8612582565b73ffffffffffffffffffffffffffffffffffffffff166114066114ae565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613b93565b60405180910390fd5b8060148190555050565b6000600d828154811061147c5761147b614125565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114e690613f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461151290613f8c565b801561155f5780601f106115345761010080835404028352916020019161155f565b820191906000526020600020905b81548152906001019060200180831161154257829003601f168201915b5050505050905090565b611571612582565b73ffffffffffffffffffffffffffffffffffffffff1661158f6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613b93565b60405180910390fd5b8060138190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b611646612582565b73ffffffffffffffffffffffffffffffffffffffff166116646114ae565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613b93565b60405180910390fd5b80601090805190602001906116d0929190612e80565b5050565b6116dc611fdf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611741576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061174e611fdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fb611fdf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184091906139c0565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613b53565b60405180910390fd5b6000601254905060016013546118d09190613d38565b8210611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613a93565b60405180910390fd5b60016002811115611925576119246140c7565b5b601160009054906101000a900460ff166002811115611947576119466140c7565b5b14611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613b73565b60405180910390fd5b61271082611993610c7a565b61199d9190613d38565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613a33565b60405180910390fd5b81816119ea9190613dbf565b341015611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613c13565b60405180910390fd5b611a36838361264e565b505050565b611a43612582565b73ffffffffffffffffffffffffffffffffffffffff16611a616114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613b93565b60405180910390fd5b6618838370f34000601281905550565b611ad2848484612152565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3457611afd8484848461266c565b611b33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4582611eb2565b611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613a53565b60405180910390fd5b6010611b8f836127cc565b604051602001611ba09291906138c3565b6040516020818303038152906040529050919050565b601160009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01612582565b73ffffffffffffffffffffffffffffffffffffffff16611d1f6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613a73565b60405180910390fd5b611dee8161258a565b50565b611df9612582565b73ffffffffffffffffffffffffffffffffffffffff16611e176114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613b93565b60405180910390fd5b806002811115611e8057611e7f6140c7565b5b601160006101000a81548160ff02191690836002811115611ea457611ea36140c7565b5b021790555050565b60135481565b600081611ebd611fe7565b11158015611ecc575060015482105b8015611f0a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611f20611fe7565b11611fa857600154811015611fa75760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fa5575b6000811415611f9b576005600083600190039350838152602001908152602001600020549050611f70565b8092505050611fda565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856120419190613dbf565b61204b9190613d8e565b6120559190613e19565b90509392505050565b804710156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613af3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120c7906138f2565b60006040518083038185875af1925050503d8060008114612104576040519150601f19603f3d011682016040523d82523d6000602084013e612109565b606091505b505090508061214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613ad3565b60405180910390fd5b505050565b600061215d82611f11565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121c4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121e5611fdf565b73ffffffffffffffffffffffffffffffffffffffff16148061221457506122138561220e611fdf565b611c65565b5b806122595750612222611fdf565b73ffffffffffffffffffffffffffffffffffffffff1661224184610a57565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612292576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612306858585600161292d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61240386612933565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561248d57600060018401905060006005600083815260200190815260200160002054141561248b57600154811461248a578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f5858585600161293d565b5050505050565b61257d8363a9059cbb60e01b848460405160240161251b929190613997565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612943565b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612668828260405180602001604052806000815250612a0a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611fdf565b8786866040518563ffffffff1660e01b81526004016126b4949392919061394b565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc919061334c565b60015b612779573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b50600081511415612771576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612814576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612928565b600082905060005b6000821461284657808061282f90613fef565b915050600a8261283f9190613d8e565b915061281c565b60008167ffffffffffffffff81111561286257612861614154565b5b6040519080825280601f01601f1916602001820160405280156128945781602001600182028036833780820191505090505b5090505b60008514612921576001826128ad9190613e19565b9150600a856128bc9190614038565b60306128c89190613d38565b60f81b8183815181106128de576128dd614125565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291a9190613d8e565b9450612898565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006129a5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cc09092919063ffffffff16565b9050600081511115612a0557808060200190518101906129c591906132c5565b612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90613bf3565b60405180910390fd5b5b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a78576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ab3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ac0600085838661292d565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b2560018514612cd8565b901b60a042901b612b3586612933565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c39575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be9600087848060010195508761266c565b612c1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b7a578260015414612c3457600080fd5b612ca4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c3a575b816001819055505050612cba600085838661293d565b50505050565b6060612ccf8484600085612ce2565b90509392505050565b6000819050919050565b606082471015612d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1e90613b13565b60405180910390fd5b612d3085612df6565b612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6690613bb3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612d9891906138ac565b60006040518083038185875af1925050503d8060008114612dd5576040519150601f19603f3d011682016040523d82523d6000602084013e612dda565b606091505b5091509150612dea828286612e19565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612e2957829050612e79565b600083511115612e3c5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e709190613a11565b60405180910390fd5b9392505050565b828054612e8c90613f8c565b90600052602060002090601f016020900481019282612eae5760008555612ef5565b82601f10612ec757805160ff1916838001178555612ef5565b82800160010185558215612ef5579182015b82811115612ef4578251825591602001919060010190612ed9565b5b509050612f029190612f06565b5090565b5b80821115612f1f576000816000905550600101612f07565b5090565b6000612f36612f3184613c73565b613c4e565b905082815260208101848484011115612f5257612f51614188565b5b612f5d848285613f4a565b509392505050565b6000612f78612f7384613ca4565b613c4e565b905082815260208101848484011115612f9457612f93614188565b5b612f9f848285613f4a565b509392505050565b600081359050612fb68161455c565b92915050565b600081359050612fcb81614573565b92915050565b600081359050612fe08161458a565b92915050565b600081519050612ff58161458a565b92915050565b60008135905061300a816145a1565b92915050565b60008135905061301f816145b8565b92915050565b600081519050613034816145b8565b92915050565b600082601f83011261304f5761304e614183565b5b813561305f848260208601612f23565b91505092915050565b600081359050613077816145cf565b92915050565b600082601f83011261309257613091614183565b5b81356130a2848260208601612f65565b91505092915050565b6000813590506130ba816145e6565b92915050565b6000815190506130cf816145e6565b92915050565b6000602082840312156130eb576130ea614192565b5b60006130f984828501612fa7565b91505092915050565b60006020828403121561311857613117614192565b5b600061312684828501612fbc565b91505092915050565b6000806040838503121561314657613145614192565b5b600061315485828601612fa7565b925050602061316585828601612fa7565b9150509250929050565b60008060006060848603121561318857613187614192565b5b600061319686828701612fa7565b93505060206131a786828701612fa7565b92505060406131b8868287016130ab565b9150509250925092565b600080600080608085870312156131dc576131db614192565b5b60006131ea87828801612fa7565b94505060206131fb87828801612fa7565b935050604061320c878288016130ab565b925050606085013567ffffffffffffffff81111561322d5761322c61418d565b5b6132398782880161303a565b91505092959194509250565b6000806040838503121561325c5761325b614192565b5b600061326a85828601612fa7565b925050602061327b85828601612fd1565b9150509250929050565b6000806040838503121561329c5761329b614192565b5b60006132aa85828601612fa7565b92505060206132bb858286016130ab565b9150509250929050565b6000602082840312156132db576132da614192565b5b60006132e984828501612fe6565b91505092915050565b60006020828403121561330857613307614192565b5b600061331684828501612ffb565b91505092915050565b60006020828403121561333557613334614192565b5b600061334384828501613010565b91505092915050565b60006020828403121561336257613361614192565b5b600061337084828501613025565b91505092915050565b60006020828403121561338f5761338e614192565b5b600061339d84828501613068565b91505092915050565b600080604083850312156133bd576133bc614192565b5b60006133cb85828601613068565b92505060206133dc85828601612fa7565b9150509250929050565b6000602082840312156133fc576133fb614192565b5b600082013567ffffffffffffffff81111561341a5761341961418d565b5b6134268482850161307d565b91505092915050565b60006020828403121561344557613444614192565b5b6000613453848285016130ab565b91505092915050565b60006020828403121561347257613471614192565b5b6000613480848285016130c0565b91505092915050565b61349281613f02565b82525050565b6134a181613e4d565b82525050565b6134b081613e71565b82525050565b6134bf81613e7d565b82525050565b60006134d082613cea565b6134da8185613d00565b93506134ea818560208601613f59565b6134f381614197565b840191505092915050565b600061350982613cea565b6135138185613d11565b9350613523818560208601613f59565b80840191505092915050565b61353881613f14565b82525050565b600061354982613cf5565b6135538185613d1c565b9350613563818560208601613f59565b61356c81614197565b840191505092915050565b600061358282613cf5565b61358c8185613d2d565b935061359c818560208601613f59565b80840191505092915050565b600081546135b581613f8c565b6135bf8186613d2d565b945060018216600081146135da57600181146135eb5761361e565b60ff1983168652818601935061361e565b6135f485613cd5565b60005b83811015613616578154818901526001820191506020810190506135f7565b838801955050505b50505092915050565b6000613634601383613d1c565b915061363f826141a8565b602082019050919050565b6000613657601f83613d1c565b9150613662826141d1565b602082019050919050565b600061367a602683613d1c565b9150613685826141fa565b604082019050919050565b600061369d601583613d1c565b91506136a882614249565b602082019050919050565b60006136c0602683613d1c565b91506136cb82614272565b604082019050919050565b60006136e3603a83613d1c565b91506136ee826142c1565b604082019050919050565b6000613706601d83613d1c565b915061371182614310565b602082019050919050565b6000613729602683613d1c565b915061373482614339565b604082019050919050565b600061374c602b83613d1c565b915061375782614388565b604082019050919050565b600061376f601e83613d1c565b915061377a826143d7565b602082019050919050565b6000613792601c83613d1c565b915061379d82614400565b602082019050919050565b60006137b5600583613d2d565b91506137c082614429565b600582019050919050565b60006137d8602083613d1c565b91506137e382614452565b602082019050919050565b60006137fb600083613d11565b91506138068261447b565b600082019050919050565b600061381e601d83613d1c565b91506138298261447e565b602082019050919050565b6000613841601083613d1c565b915061384c826144a7565b602082019050919050565b6000613864602a83613d1c565b915061386f826144d0565b604082019050919050565b6000613887601183613d1c565b91506138928261451f565b602082019050919050565b6138a681613ef8565b82525050565b60006138b882846134fe565b915081905092915050565b60006138cf82856135a8565b91506138db8284613577565b91506138e6826137a8565b91508190509392505050565b60006138fd826137ee565b9150819050919050565b600060208201905061391c6000830184613498565b92915050565b60006040820190506139376000830185613489565b613944602083018461389d565b9392505050565b60006080820190506139606000830187613498565b61396d6020830186613498565b61397a604083018561389d565b818103606083015261398c81846134c5565b905095945050505050565b60006040820190506139ac6000830185613498565b6139b9602083018461389d565b9392505050565b60006020820190506139d560008301846134a7565b92915050565b60006020820190506139f060008301846134b6565b92915050565b6000602082019050613a0b600083018461352f565b92915050565b60006020820190508181036000830152613a2b818461353e565b905092915050565b60006020820190508181036000830152613a4c81613627565b9050919050565b60006020820190508181036000830152613a6c8161364a565b9050919050565b60006020820190508181036000830152613a8c8161366d565b9050919050565b60006020820190508181036000830152613aac81613690565b9050919050565b60006020820190508181036000830152613acc816136b3565b9050919050565b60006020820190508181036000830152613aec816136d6565b9050919050565b60006020820190508181036000830152613b0c816136f9565b9050919050565b60006020820190508181036000830152613b2c8161371c565b9050919050565b60006020820190508181036000830152613b4c8161373f565b9050919050565b60006020820190508181036000830152613b6c81613762565b9050919050565b60006020820190508181036000830152613b8c81613785565b9050919050565b60006020820190508181036000830152613bac816137cb565b9050919050565b60006020820190508181036000830152613bcc81613811565b9050919050565b60006020820190508181036000830152613bec81613834565b9050919050565b60006020820190508181036000830152613c0c81613857565b9050919050565b60006020820190508181036000830152613c2c8161387a565b9050919050565b6000602082019050613c48600083018461389d565b92915050565b6000613c58613c69565b9050613c648282613fbe565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8e57613c8d614154565b5b613c9782614197565b9050602081019050919050565b600067ffffffffffffffff821115613cbf57613cbe614154565b5b613cc882614197565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4382613ef8565b9150613d4e83613ef8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8357613d82614069565b5b828201905092915050565b6000613d9982613ef8565b9150613da483613ef8565b925082613db457613db3614098565b5b828204905092915050565b6000613dca82613ef8565b9150613dd583613ef8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0e57613e0d614069565b5b828202905092915050565b6000613e2482613ef8565b9150613e2f83613ef8565b925082821015613e4257613e41614069565b5b828203905092915050565b6000613e5882613ed8565b9050919050565b6000613e6a82613ed8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ebe82613e4d565b9050919050565b6000819050613ed382614548565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f0d82613f26565b9050919050565b6000613f1f82613ec5565b9050919050565b6000613f3182613f38565b9050919050565b6000613f4382613ed8565b9050919050565b82818337600083830152505050565b60005b83811015613f77578082015181840152602081019050613f5c565b83811115613f86576000848401525b50505050565b60006002820490506001821680613fa457607f821691505b60208210811415613fb857613fb76140f6565b5b50919050565b613fc782614197565b810181811067ffffffffffffffff82111715613fe657613fe5614154565b5b80604052505050565b6000613ffa82613ef8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402d5761402c614069565b5b600182019050919050565b600061404382613ef8565b915061404e83613ef8565b92508261405e5761405d614098565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7175616e74697479206973206e6f742072696768740000000000000000000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766174656400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4f6e6c7920696620796f75206d696e7400000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b60038110614559576145586140c7565b5b50565b61456581613e4d565b811461457057600080fd5b50565b61457c81613e5f565b811461458757600080fd5b50565b61459381613e71565b811461459e57600080fd5b50565b6145aa81613e7d565b81146145b557600080fd5b50565b6145c181613e87565b81146145cc57600080fd5b50565b6145d881613eb3565b81146145e357600080fd5b50565b6145ef81613ef8565b81146145fa57600080fd5b5056fea2646970667358221220df211645aaef8f57b7724b7082aa2ff1f0893518cc1d4eafceebfce3f5ab53e264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001203e4adb70e7f155c2e06756d99131e3fd0ef0282128b4efae79bc3a9c97de3dea00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000040000000000000000000000005ddd0ce97517f00ba03e9a8d1e31128e3c172055000000000000000000000000b35d11043c0b2ac4bf1ebf9ccb28e7b7445dd24c0000000000000000000000003cf54f74d31757e823fb71d912ac9211ea30b1da000000000000000000000000076ce794c25b85329ed8b6f66415543f83953ff6000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61766a79796b6b544a6b3744413666586a434e426654427143444a444874467856375a6a78784b34575365412f00000000000000000000

Deployed Bytecode

0x6080604052600436106102295760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e33b7de31161006f578063e33b7de31461084e578063e985e9c514610879578063f2fde38b146108b6578063f8dcbddb146108df578063fcac04011461090857610269565b8063b88d4fde14610743578063c87b56dd1461076c578063cbccefb2146107a9578063ce7c2ac2146107d4578063d79779b21461081157610269565b80639b6860c8116100f25780639b6860c814610693578063a0bcfc7f146106be578063a22cb465146106e7578063b108124614610710578063b671629f1461072c57610269565b80638da5cb5b146105d757806395d89b41146106025780639771698f1461062d5780639852595c1461065657610269565b8063406072a9116101b15780636c0360eb116101755780636c0360eb146104f257806370a082311461051d578063715018a61461055a5780637cb64759146105715780638b83209b1461059a57610269565b8063406072a91461040f57806342842e0e1461044c57806348b75044146104755780635be7fde81461049e5780636352211e146104b557610269565b806318160ddd116101f857806318160ddd1461033c578063191655871461036757806323b872dd146103905780632eb4a7ab146103b95780633a98ef39146103e457610269565b806301ffc9a71461026e57806306fdde03146102ab578063081812fc146102d6578063095ea7b31461031357610269565b36610269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090613bd3565b60405180910390fd5b600080fd5b34801561027a57600080fd5b506102956004803603810190610290919061331f565b610933565b6040516102a291906139c0565b60405180910390f35b3480156102b757600080fd5b506102c06109c5565b6040516102cd9190613a11565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061342f565b610a57565b60405161030a9190613907565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613285565b610ad3565b005b34801561034857600080fd5b50610351610c7a565b60405161035e9190613c33565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613102565b610c91565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061316f565b610e3c565b005b3480156103c557600080fd5b506103ce610e4c565b6040516103db91906139db565b60405180910390f35b3480156103f057600080fd5b506103f9610e52565b6040516104069190613c33565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906133a6565b610e5c565b6040516104439190613c33565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061316f565b610ee3565b005b34801561048157600080fd5b5061049c600480360381019061049791906133a6565b610f03565b005b3480156104aa57600080fd5b506104b36111cb565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061342f565b6111ff565b6040516104e99190613907565b60405180910390f35b3480156104fe57600080fd5b50610507611211565b6040516105149190613a11565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906130d5565b61129f565b6040516105519190613c33565b60405180910390f35b34801561056657600080fd5b5061056f611358565b005b34801561057d57600080fd5b50610598600480360381019061059391906132f2565b6113e0565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061342f565b611466565b6040516105ce9190613907565b60405180910390f35b3480156105e357600080fd5b506105ec6114ae565b6040516105f99190613907565b60405180910390f35b34801561060e57600080fd5b506106176114d7565b6040516106249190613a11565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f919061342f565b611569565b005b34801561066257600080fd5b5061067d600480360381019061067891906130d5565b6115ef565b60405161068a9190613c33565b60405180910390f35b34801561069f57600080fd5b506106a8611638565b6040516106b59190613c33565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906133e6565b61163e565b005b3480156106f357600080fd5b5061070e60048036038101906107099190613245565b6116d4565b005b61072a60048036038101906107259190613285565b61184c565b005b34801561073857600080fd5b50610741611a3b565b005b34801561074f57600080fd5b5061076a600480360381019061076591906131c2565b611ac7565b005b34801561077857600080fd5b50610793600480360381019061078e919061342f565b611b3a565b6040516107a09190613a11565b60405180910390f35b3480156107b557600080fd5b506107be611bb6565b6040516107cb91906139f6565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906130d5565b611bc9565b6040516108089190613c33565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613379565b611c12565b6040516108459190613c33565b60405180910390f35b34801561085a57600080fd5b50610863611c5b565b6040516108709190613c33565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061312f565b611c65565b6040516108ad91906139c0565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906130d5565b611cf9565b005b3480156108eb57600080fd5b506109066004803603810190610901919061342f565b611df1565b005b34801561091457600080fd5b5061091d611eac565b60405161092a9190613c33565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546109d490613f8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613f8c565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611eb2565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ade82611f11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b65611fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610bc857610b9181610b8c611fdf565b611c65565b610bc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c84611fe7565b6002546001540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613ab3565b60405180910390fd5b6000610d1d611c5b565b47610d289190613d38565b90506000610d3f8383610d3a866115ef565b611ff0565b90506000811415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613b33565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dd49190613d38565b9250508190555080600a6000828254610ded9190613d38565b92505081905550610dfe838261205e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e2f929190613922565b60405180910390a1505050565b610e47838383612152565b505050565b60145481565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610efe83838360405180602001604052806000815250611ac7565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613ab3565b60405180910390fd5b6000610f9083611c12565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc99190613907565b60206040518083038186803b158015610fe157600080fd5b505afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611019919061345c565b6110239190613d38565b9050600061103b83836110368787610e5c565b611ff0565b90506000811415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613b33565b60405180910390fd5b80600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461110d9190613d38565b9250508190555080600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111639190613d38565b925050819055506111758484836124fc565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516111bd929190613997565b60405180910390a250505050565b60005b6015548110156111fc576111e96111e482611466565b610c91565b80806111f490613fef565b9150506111ce565b50565b600061120a82611f11565b9050919050565b6010805461121e90613f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461124a90613f8c565b80156112975780601f1061126c57610100808354040283529160200191611297565b820191906000526020600020905b81548152906001019060200180831161127a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611307576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611360612582565b73ffffffffffffffffffffffffffffffffffffffff1661137e6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613b93565b60405180910390fd5b6113de600061258a565b565b6113e8612582565b73ffffffffffffffffffffffffffffffffffffffff166114066114ae565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613b93565b60405180910390fd5b8060148190555050565b6000600d828154811061147c5761147b614125565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114e690613f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461151290613f8c565b801561155f5780601f106115345761010080835404028352916020019161155f565b820191906000526020600020905b81548152906001019060200180831161154257829003601f168201915b5050505050905090565b611571612582565b73ffffffffffffffffffffffffffffffffffffffff1661158f6114ae565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613b93565b60405180910390fd5b8060138190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b611646612582565b73ffffffffffffffffffffffffffffffffffffffff166116646114ae565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613b93565b60405180910390fd5b80601090805190602001906116d0929190612e80565b5050565b6116dc611fdf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611741576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061174e611fdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fb611fdf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184091906139c0565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613b53565b60405180910390fd5b6000601254905060016013546118d09190613d38565b8210611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613a93565b60405180910390fd5b60016002811115611925576119246140c7565b5b601160009054906101000a900460ff166002811115611947576119466140c7565b5b14611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613b73565b60405180910390fd5b61271082611993610c7a565b61199d9190613d38565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613a33565b60405180910390fd5b81816119ea9190613dbf565b341015611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613c13565b60405180910390fd5b611a36838361264e565b505050565b611a43612582565b73ffffffffffffffffffffffffffffffffffffffff16611a616114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613b93565b60405180910390fd5b6618838370f34000601281905550565b611ad2848484612152565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3457611afd8484848461266c565b611b33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4582611eb2565b611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613a53565b60405180910390fd5b6010611b8f836127cc565b604051602001611ba09291906138c3565b6040516020818303038152906040529050919050565b601160009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01612582565b73ffffffffffffffffffffffffffffffffffffffff16611d1f6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613a73565b60405180910390fd5b611dee8161258a565b50565b611df9612582565b73ffffffffffffffffffffffffffffffffffffffff16611e176114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613b93565b60405180910390fd5b806002811115611e8057611e7f6140c7565b5b601160006101000a81548160ff02191690836002811115611ea457611ea36140c7565b5b021790555050565b60135481565b600081611ebd611fe7565b11158015611ecc575060015482105b8015611f0a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611f20611fe7565b11611fa857600154811015611fa75760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fa5575b6000811415611f9b576005600083600190039350838152602001908152602001600020549050611f70565b8092505050611fda565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856120419190613dbf565b61204b9190613d8e565b6120559190613e19565b90509392505050565b804710156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613af3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120c7906138f2565b60006040518083038185875af1925050503d8060008114612104576040519150601f19603f3d011682016040523d82523d6000602084013e612109565b606091505b505090508061214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613ad3565b60405180910390fd5b505050565b600061215d82611f11565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121c4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121e5611fdf565b73ffffffffffffffffffffffffffffffffffffffff16148061221457506122138561220e611fdf565b611c65565b5b806122595750612222611fdf565b73ffffffffffffffffffffffffffffffffffffffff1661224184610a57565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612292576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612306858585600161292d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61240386612933565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561248d57600060018401905060006005600083815260200190815260200160002054141561248b57600154811461248a578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f5858585600161293d565b5050505050565b61257d8363a9059cbb60e01b848460405160240161251b929190613997565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612943565b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612668828260405180602001604052806000815250612a0a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611fdf565b8786866040518563ffffffff1660e01b81526004016126b4949392919061394b565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc919061334c565b60015b612779573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b50600081511415612771576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612814576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612928565b600082905060005b6000821461284657808061282f90613fef565b915050600a8261283f9190613d8e565b915061281c565b60008167ffffffffffffffff81111561286257612861614154565b5b6040519080825280601f01601f1916602001820160405280156128945781602001600182028036833780820191505090505b5090505b60008514612921576001826128ad9190613e19565b9150600a856128bc9190614038565b60306128c89190613d38565b60f81b8183815181106128de576128dd614125565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291a9190613d8e565b9450612898565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006129a5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cc09092919063ffffffff16565b9050600081511115612a0557808060200190518101906129c591906132c5565b612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90613bf3565b60405180910390fd5b5b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a78576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ab3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ac0600085838661292d565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b2560018514612cd8565b901b60a042901b612b3586612933565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c39575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be9600087848060010195508761266c565b612c1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b7a578260015414612c3457600080fd5b612ca4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c3a575b816001819055505050612cba600085838661293d565b50505050565b6060612ccf8484600085612ce2565b90509392505050565b6000819050919050565b606082471015612d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1e90613b13565b60405180910390fd5b612d3085612df6565b612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6690613bb3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612d9891906138ac565b60006040518083038185875af1925050503d8060008114612dd5576040519150601f19603f3d011682016040523d82523d6000602084013e612dda565b606091505b5091509150612dea828286612e19565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612e2957829050612e79565b600083511115612e3c5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e709190613a11565b60405180910390fd5b9392505050565b828054612e8c90613f8c565b90600052602060002090601f016020900481019282612eae5760008555612ef5565b82601f10612ec757805160ff1916838001178555612ef5565b82800160010185558215612ef5579182015b82811115612ef4578251825591602001919060010190612ed9565b5b509050612f029190612f06565b5090565b5b80821115612f1f576000816000905550600101612f07565b5090565b6000612f36612f3184613c73565b613c4e565b905082815260208101848484011115612f5257612f51614188565b5b612f5d848285613f4a565b509392505050565b6000612f78612f7384613ca4565b613c4e565b905082815260208101848484011115612f9457612f93614188565b5b612f9f848285613f4a565b509392505050565b600081359050612fb68161455c565b92915050565b600081359050612fcb81614573565b92915050565b600081359050612fe08161458a565b92915050565b600081519050612ff58161458a565b92915050565b60008135905061300a816145a1565b92915050565b60008135905061301f816145b8565b92915050565b600081519050613034816145b8565b92915050565b600082601f83011261304f5761304e614183565b5b813561305f848260208601612f23565b91505092915050565b600081359050613077816145cf565b92915050565b600082601f83011261309257613091614183565b5b81356130a2848260208601612f65565b91505092915050565b6000813590506130ba816145e6565b92915050565b6000815190506130cf816145e6565b92915050565b6000602082840312156130eb576130ea614192565b5b60006130f984828501612fa7565b91505092915050565b60006020828403121561311857613117614192565b5b600061312684828501612fbc565b91505092915050565b6000806040838503121561314657613145614192565b5b600061315485828601612fa7565b925050602061316585828601612fa7565b9150509250929050565b60008060006060848603121561318857613187614192565b5b600061319686828701612fa7565b93505060206131a786828701612fa7565b92505060406131b8868287016130ab565b9150509250925092565b600080600080608085870312156131dc576131db614192565b5b60006131ea87828801612fa7565b94505060206131fb87828801612fa7565b935050604061320c878288016130ab565b925050606085013567ffffffffffffffff81111561322d5761322c61418d565b5b6132398782880161303a565b91505092959194509250565b6000806040838503121561325c5761325b614192565b5b600061326a85828601612fa7565b925050602061327b85828601612fd1565b9150509250929050565b6000806040838503121561329c5761329b614192565b5b60006132aa85828601612fa7565b92505060206132bb858286016130ab565b9150509250929050565b6000602082840312156132db576132da614192565b5b60006132e984828501612fe6565b91505092915050565b60006020828403121561330857613307614192565b5b600061331684828501612ffb565b91505092915050565b60006020828403121561333557613334614192565b5b600061334384828501613010565b91505092915050565b60006020828403121561336257613361614192565b5b600061337084828501613025565b91505092915050565b60006020828403121561338f5761338e614192565b5b600061339d84828501613068565b91505092915050565b600080604083850312156133bd576133bc614192565b5b60006133cb85828601613068565b92505060206133dc85828601612fa7565b9150509250929050565b6000602082840312156133fc576133fb614192565b5b600082013567ffffffffffffffff81111561341a5761341961418d565b5b6134268482850161307d565b91505092915050565b60006020828403121561344557613444614192565b5b6000613453848285016130ab565b91505092915050565b60006020828403121561347257613471614192565b5b6000613480848285016130c0565b91505092915050565b61349281613f02565b82525050565b6134a181613e4d565b82525050565b6134b081613e71565b82525050565b6134bf81613e7d565b82525050565b60006134d082613cea565b6134da8185613d00565b93506134ea818560208601613f59565b6134f381614197565b840191505092915050565b600061350982613cea565b6135138185613d11565b9350613523818560208601613f59565b80840191505092915050565b61353881613f14565b82525050565b600061354982613cf5565b6135538185613d1c565b9350613563818560208601613f59565b61356c81614197565b840191505092915050565b600061358282613cf5565b61358c8185613d2d565b935061359c818560208601613f59565b80840191505092915050565b600081546135b581613f8c565b6135bf8186613d2d565b945060018216600081146135da57600181146135eb5761361e565b60ff1983168652818601935061361e565b6135f485613cd5565b60005b83811015613616578154818901526001820191506020810190506135f7565b838801955050505b50505092915050565b6000613634601383613d1c565b915061363f826141a8565b602082019050919050565b6000613657601f83613d1c565b9150613662826141d1565b602082019050919050565b600061367a602683613d1c565b9150613685826141fa565b604082019050919050565b600061369d601583613d1c565b91506136a882614249565b602082019050919050565b60006136c0602683613d1c565b91506136cb82614272565b604082019050919050565b60006136e3603a83613d1c565b91506136ee826142c1565b604082019050919050565b6000613706601d83613d1c565b915061371182614310565b602082019050919050565b6000613729602683613d1c565b915061373482614339565b604082019050919050565b600061374c602b83613d1c565b915061375782614388565b604082019050919050565b600061376f601e83613d1c565b915061377a826143d7565b602082019050919050565b6000613792601c83613d1c565b915061379d82614400565b602082019050919050565b60006137b5600583613d2d565b91506137c082614429565b600582019050919050565b60006137d8602083613d1c565b91506137e382614452565b602082019050919050565b60006137fb600083613d11565b91506138068261447b565b600082019050919050565b600061381e601d83613d1c565b91506138298261447e565b602082019050919050565b6000613841601083613d1c565b915061384c826144a7565b602082019050919050565b6000613864602a83613d1c565b915061386f826144d0565b604082019050919050565b6000613887601183613d1c565b91506138928261451f565b602082019050919050565b6138a681613ef8565b82525050565b60006138b882846134fe565b915081905092915050565b60006138cf82856135a8565b91506138db8284613577565b91506138e6826137a8565b91508190509392505050565b60006138fd826137ee565b9150819050919050565b600060208201905061391c6000830184613498565b92915050565b60006040820190506139376000830185613489565b613944602083018461389d565b9392505050565b60006080820190506139606000830187613498565b61396d6020830186613498565b61397a604083018561389d565b818103606083015261398c81846134c5565b905095945050505050565b60006040820190506139ac6000830185613498565b6139b9602083018461389d565b9392505050565b60006020820190506139d560008301846134a7565b92915050565b60006020820190506139f060008301846134b6565b92915050565b6000602082019050613a0b600083018461352f565b92915050565b60006020820190508181036000830152613a2b818461353e565b905092915050565b60006020820190508181036000830152613a4c81613627565b9050919050565b60006020820190508181036000830152613a6c8161364a565b9050919050565b60006020820190508181036000830152613a8c8161366d565b9050919050565b60006020820190508181036000830152613aac81613690565b9050919050565b60006020820190508181036000830152613acc816136b3565b9050919050565b60006020820190508181036000830152613aec816136d6565b9050919050565b60006020820190508181036000830152613b0c816136f9565b9050919050565b60006020820190508181036000830152613b2c8161371c565b9050919050565b60006020820190508181036000830152613b4c8161373f565b9050919050565b60006020820190508181036000830152613b6c81613762565b9050919050565b60006020820190508181036000830152613b8c81613785565b9050919050565b60006020820190508181036000830152613bac816137cb565b9050919050565b60006020820190508181036000830152613bcc81613811565b9050919050565b60006020820190508181036000830152613bec81613834565b9050919050565b60006020820190508181036000830152613c0c81613857565b9050919050565b60006020820190508181036000830152613c2c8161387a565b9050919050565b6000602082019050613c48600083018461389d565b92915050565b6000613c58613c69565b9050613c648282613fbe565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8e57613c8d614154565b5b613c9782614197565b9050602081019050919050565b600067ffffffffffffffff821115613cbf57613cbe614154565b5b613cc882614197565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4382613ef8565b9150613d4e83613ef8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8357613d82614069565b5b828201905092915050565b6000613d9982613ef8565b9150613da483613ef8565b925082613db457613db3614098565b5b828204905092915050565b6000613dca82613ef8565b9150613dd583613ef8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0e57613e0d614069565b5b828202905092915050565b6000613e2482613ef8565b9150613e2f83613ef8565b925082821015613e4257613e41614069565b5b828203905092915050565b6000613e5882613ed8565b9050919050565b6000613e6a82613ed8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ebe82613e4d565b9050919050565b6000819050613ed382614548565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f0d82613f26565b9050919050565b6000613f1f82613ec5565b9050919050565b6000613f3182613f38565b9050919050565b6000613f4382613ed8565b9050919050565b82818337600083830152505050565b60005b83811015613f77578082015181840152602081019050613f5c565b83811115613f86576000848401525b50505050565b60006002820490506001821680613fa457607f821691505b60208210811415613fb857613fb76140f6565b5b50919050565b613fc782614197565b810181811067ffffffffffffffff82111715613fe657613fe5614154565b5b80604052505050565b6000613ffa82613ef8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402d5761402c614069565b5b600182019050919050565b600061404382613ef8565b915061404e83613ef8565b92508261405e5761405d614098565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7175616e74697479206973206e6f742072696768740000000000000000000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766174656400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4f6e6c7920696620796f75206d696e7400000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b60038110614559576145586140c7565b5b50565b61456581613e4d565b811461457057600080fd5b50565b61457c81613e5f565b811461458757600080fd5b50565b61459381613e71565b811461459e57600080fd5b50565b6145aa81613e7d565b81146145b557600080fd5b50565b6145c181613e87565b81146145cc57600080fd5b50565b6145d881613eb3565b81146145e357600080fd5b50565b6145ef81613ef8565b81146145fa57600080fd5b5056fea2646970667358221220df211645aaef8f57b7724b7082aa2ff1f0893518cc1d4eafceebfce3f5ab53e264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001203e4adb70e7f155c2e06756d99131e3fd0ef0282128b4efae79bc3a9c97de3dea00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000040000000000000000000000005ddd0ce97517f00ba03e9a8d1e31128e3c172055000000000000000000000000b35d11043c0b2ac4bf1ebf9ccb28e7b7445dd24c0000000000000000000000003cf54f74d31757e823fb71d912ac9211ea30b1da000000000000000000000000076ce794c25b85329ed8b6f66415543f83953ff6000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61766a79796b6b544a6b3744413666586a434e426654427143444a444874467856375a6a78784b34575365412f00000000000000000000

-----Decoded View---------------
Arg [0] : _team (address[]): 0x5Ddd0CE97517F00ba03E9A8D1e31128E3c172055,0xB35D11043c0b2ac4bF1ebf9CCB28E7B7445dd24C,0x3cf54F74D31757e823FB71D912AC9211eA30b1dA,0x076ce794c25B85329ed8b6F66415543F83953fF6
Arg [1] : _teamShares (uint256[]): 35,35,15,15
Arg [2] : _merkleRoot (bytes32): 0x3e4adb70e7f155c2e06756d99131e3fd0ef0282128b4efae79bc3a9c97de3dea
Arg [3] : _baseURI (string): ipfs://QmavjyykkTJk7DA6fXjCNBfTBqCDJDHtFxV7ZjxxK4WSeA/

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 3e4adb70e7f155c2e06756d99131e3fd0ef0282128b4efae79bc3a9c97de3dea
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 0000000000000000000000005ddd0ce97517f00ba03e9a8d1e31128e3c172055
Arg [6] : 000000000000000000000000b35d11043c0b2ac4bf1ebf9ccb28e7b7445dd24c
Arg [7] : 0000000000000000000000003cf54f74d31757e823fb71d912ac9211ea30b1da
Arg [8] : 000000000000000000000000076ce794c25b85329ed8b6f66415543f83953ff6
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [15] : 697066733a2f2f516d61766a79796b6b544a6b3744413666586a434e42665442
Arg [16] : 7143444a444874467856375a6a78784b34575365412f00000000000000000000


Deployed Bytecode Sourcemap

69597:3139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72697:26;;;;;;;;;;:::i;:::-;;;;;;;;69597:3139;;;;13021:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20102:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19562:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12075:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64400:566;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20988:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70009:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62745:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63874:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21229:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65234:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72501:141;;;;;;;;;;;;;:::i;:::-;;17823:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69764:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13700:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68686:103;;;;;;;;;;;;;:::i;:::-;;71910:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64100:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68035:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18203:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71205:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63596:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69922:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71328:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20378:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70505:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71099:98;;;;;;;;;;;;;:::i;:::-;;21485:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71636:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69794:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63392:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63182:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62930:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20757:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68944:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71536:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69968:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13021:615;13106:4;13421:10;13406:25;;:11;:25;;;;:102;;;;13498:10;13483:25;;:11;:25;;;;13406:102;:179;;;;13575:10;13560:25;;:11;:25;;;;13406:179;13386:199;;13021:615;;;:::o;18034:100::-;18088:13;18121:5;18114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18034:100;:::o;20102:204::-;20170:7;20195:16;20203:7;20195;:16::i;:::-;20190:64;;20220:34;;;;;;;;;;;;;;20190:64;20274:15;:24;20290:7;20274:24;;;;;;;;;;;;;;;;;;;;;20267:31;;20102:204;;;:::o;19562:474::-;19635:13;19667:27;19686:7;19667:18;:27::i;:::-;19635:61;;19717:5;19711:11;;:2;:11;;;19707:48;;;19731:24;;;;;;;;;;;;;;19707:48;19795:5;19772:28;;:19;:17;:19::i;:::-;:28;;;19768:175;;19820:44;19837:5;19844:19;:17;:19::i;:::-;19820:16;:44::i;:::-;19815:128;;19892:35;;;;;;;;;;;;;;19815:128;19768:175;19982:2;19955:15;:24;19971:7;19955:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20020:7;20016:2;20000:28;;20009:5;20000:28;;;;;;;;;;;;19624:412;19562:474;;:::o;12075:315::-;12128:7;12356:15;:13;:15::i;:::-;12341:12;;12325:13;;:28;:46;12318:53;;12075:315;:::o;64400:566::-;64495:1;64476:7;:16;64484:7;64476:16;;;;;;;;;;;;;;;;:20;64468:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;64552:21;64600:15;:13;:15::i;:::-;64576:21;:39;;;;:::i;:::-;64552:63;;64626:15;64644:58;64660:7;64669:13;64684:17;64693:7;64684:8;:17::i;:::-;64644:15;:58::i;:::-;64626:76;;64734:1;64723:7;:12;;64715:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64818:7;64796:9;:18;64806:7;64796:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;64854:7;64836:14;;:25;;;;;;;:::i;:::-;;;;;;;;64874:35;64892:7;64901;64874:17;:35::i;:::-;64925:33;64941:7;64950;64925:33;;;;;;;:::i;:::-;;;;;;;;64457:509;;64400:566;:::o;20988:170::-;21122:28;21132:4;21138:2;21142:7;21122:9;:28::i;:::-;20988:170;;;:::o;70009:25::-;;;;:::o;62745:91::-;62789:7;62816:12;;62809:19;;62745:91;:::o;63874:135::-;63944:7;63971:14;:21;63986:5;63971:21;;;;;;;;;;;;;;;:30;63993:7;63971:30;;;;;;;;;;;;;;;;63964:37;;63874:135;;;;:::o;21229:185::-;21367:39;21384:4;21390:2;21394:7;21367:39;;;;;;;;;;;;:16;:39::i;:::-;21229:185;;;:::o;65234:641::-;65335:1;65316:7;:16;65324:7;65316:16;;;;;;;;;;;;;;;;:20;65308:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;65392:21;65449:20;65463:5;65449:13;:20::i;:::-;65416:5;:15;;;65440:4;65416:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;65392:77;;65480:15;65498:65;65514:7;65523:13;65538:24;65547:5;65554:7;65538:8;:24::i;:::-;65498:15;:65::i;:::-;65480:83;;65595:1;65584:7;:12;;65576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65691:7;65657:14;:21;65672:5;65657:21;;;;;;;;;;;;;;;:30;65679:7;65657:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;65739:7;65709:19;:26;65729:5;65709:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;65759:47;65782:5;65789:7;65798;65759:22;:47::i;:::-;65843:5;65822:45;;;65850:7;65859;65822:45;;;;;;;:::i;:::-;;;;;;;;65297:578;;65234:641;;:::o;72501:141::-;72547:6;72543:92;72564:10;;72560:1;:14;72543:92;;;72597:26;72613:8;72619:1;72613:5;:8::i;:::-;72597:7;:26::i;:::-;72577:3;;;;;:::i;:::-;;;;72543:92;;;;72501:141::o;17823:144::-;17887:7;17930:27;17949:7;17930:18;:27::i;:::-;17907:52;;17823:144;;;:::o;69764:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13700:224::-;13764:7;13805:1;13788:19;;:5;:19;;;13784:60;;;13816:28;;;;;;;;;;;;;;13784:60;9053:13;13862:18;:25;13881:5;13862:25;;;;;;;;;;;;;;;;:54;13855:61;;13700:224;;;:::o;68686:103::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68751:30:::1;68778:1;68751:18;:30::i;:::-;68686:103::o:0;71910:106::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71997:11:::1;71984:10;:24;;;;71910:106:::0;:::o;64100:100::-;64151:7;64178;64186:5;64178:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64171:21;;64100:100;;;:::o;68035:87::-;68081:7;68108:6;;;;;;;;;;;68101:13;;68035:87;:::o;18203:104::-;18259:13;18292:7;18285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18203:104;:::o;71205:115::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71298:14:::1;71282:13;:30;;;;71205:115:::0;:::o;63596:109::-;63652:7;63679:9;:18;63689:7;63679:18;;;;;;;;;;;;;;;;63672:25;;63596:109;;;:::o;69922:37::-;;;;:::o;71328:100::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71412:8:::1;71402:7;:18;;;;;;;;;;;;:::i;:::-;;71328:100:::0;:::o;20378:308::-;20489:19;:17;:19::i;:::-;20477:31;;:8;:31;;;20473:61;;;20517:17;;;;;;;;;;;;;;20473:61;20599:8;20547:18;:39;20566:19;:17;:19::i;:::-;20547:39;;;;;;;;;;;;;;;:49;20587:8;20547:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20659:8;20623:55;;20638:19;:17;:19::i;:::-;20623:55;;;20669:8;20623:55;;;;;;:::i;:::-;;;;;;;;20378:308;;:::o;70505:474::-;70432:10;70419:23;;:9;:23;;;70411:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;70600:10:::1;70613:15;;70600:28;;70673:1;70659:13;;:15;;;;:::i;:::-;70647:9;:27;70639:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;70735:9;70720:24;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;70712:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;69908:5;70812:9;70796:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;70788:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70899:9;70891:5;:17;;;;:::i;:::-;70878:9;:30;;70870:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70941:30;70951:8;70961:9;70941;:30::i;:::-;70589:390;70505:474:::0;;:::o;71099:98::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71177:12:::1;71159:15;:30;;;;71099:98::o:0;21485:396::-;21652:28;21662:4;21668:2;21672:7;21652:9;:28::i;:::-;21713:1;21695:2;:14;;;:19;21691:183;;21734:56;21765:4;21771:2;21775:7;21784:5;21734:30;:56::i;:::-;21729:145;;21818:40;;;;;;;;;;;;;;21729:145;21691:183;21485:396;;;;:::o;71636:249::-;71707:13;71741:17;71749:8;71741:7;:17::i;:::-;71733:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;71838:7;71847:19;:8;:17;:19::i;:::-;71821:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71807:70;;71636:249;;;:::o;69794:23::-;;;;;;;;;;;;;:::o;63392:105::-;63446:7;63473;:16;63481:7;63473:16;;;;;;;;;;;;;;;;63466:23;;63392:105;;;:::o;63182:119::-;63240:7;63267:19;:26;63287:5;63267:26;;;;;;;;;;;;;;;;63260:33;;63182:119;;;:::o;62930:95::-;62976:7;63003:14;;62996:21;;62930:95;:::o;20757:164::-;20854:4;20878:18;:25;20897:5;20878:25;;;;;;;;;;;;;;;:35;20904:8;20878:35;;;;;;;;;;;;;;;;;;;;;;;;;20871:42;;20757:164;;;;:::o;68944:201::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69053:1:::1;69033:22;;:8;:22;;;;69025:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;69109:28;69128:8;69109:18;:28::i;:::-;68944:201:::0;:::o;71536:92::-;68266:12;:10;:12::i;:::-;68255:23;;:7;:5;:7::i;:::-;:23;;;68247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71614:5:::1;71609:11;;;;;;;;:::i;:::-;;71595;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;71536:92:::0;:::o;69968:30::-;;;;:::o;22136:273::-;22193:4;22249:7;22230:15;:13;:15::i;:::-;:26;;:66;;;;;22283:13;;22273:7;:23;22230:66;:152;;;;;22381:1;9823:8;22334:17;:26;22352:7;22334:26;;;;;;;;;;;;:43;:48;22230:152;22210:172;;22136:273;;;:::o;15338:1129::-;15405:7;15425:12;15440:7;15425:22;;15508:4;15489:15;:13;:15::i;:::-;:23;15485:915;;15542:13;;15535:4;:20;15531:869;;;15580:14;15597:17;:23;15615:4;15597:23;;;;;;;;;;;;15580:40;;15713:1;9823:8;15686:6;:23;:28;15682:699;;;16205:113;16222:1;16212:6;:11;16205:113;;;16265:17;:25;16283:6;;;;;;;16265:25;;;;;;;;;;;;16256:34;;16205:113;;;16351:6;16344:13;;;;;;15682:699;15557:843;15531:869;15485:915;16428:31;;;;;;;;;;;;;;15338:1129;;;;:::o;36118:105::-;36178:7;36205:10;36198:17;;36118:105;:::o;11598:92::-;11654:7;11681:1;11674:8;;11598:92;:::o;66053:248::-;66199:7;66278:15;66263:12;;66243:7;:16;66251:7;66243:16;;;;;;;;;;;;;;;;66227:13;:32;;;;:::i;:::-;66226:49;;;;:::i;:::-;:67;;;;:::i;:::-;66219:74;;66053:248;;;;;:::o;42911:317::-;43026:6;43001:21;:31;;42993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43080:12;43098:9;:14;;43120:6;43098:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43079:52;;;43150:7;43142:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;42982:246;42911:317;;:::o;27375:2515::-;27490:27;27520;27539:7;27520:18;:27::i;:::-;27490:57;;27605:4;27564:45;;27580:19;27564:45;;;27560:86;;27618:28;;;;;;;;;;;;;;27560:86;27659:22;27708:4;27685:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27729:43;27746:4;27752:19;:17;:19::i;:::-;27729:16;:43::i;:::-;27685:87;:147;;;;27813:19;:17;:19::i;:::-;27789:43;;:20;27801:7;27789:11;:20::i;:::-;:43;;;27685:147;27659:174;;27851:17;27846:66;;27877:35;;;;;;;;;;;;;;27846:66;27941:1;27927:16;;:2;:16;;;27923:52;;;27952:23;;;;;;;;;;;;;;27923:52;27988:43;28010:4;28016:2;28020:7;28029:1;27988:21;:43::i;:::-;28104:15;:24;28120:7;28104:24;;;;;;;;;;;;28097:31;;;;;;;;;;;28496:18;:24;28515:4;28496:24;;;;;;;;;;;;;;;;28494:26;;;;;;;;;;;;28565:18;:22;28584:2;28565:22;;;;;;;;;;;;;;;;28563:24;;;;;;;;;;;10105:8;9707:3;28946:15;:41;;28904:21;28922:2;28904:17;:21::i;:::-;:84;:128;28858:17;:26;28876:7;28858:26;;;;;;;;;;;:174;;;;29202:1;10105:8;29152:19;:46;:51;29148:626;;;29224:19;29256:1;29246:7;:11;29224:33;;29413:1;29379:17;:30;29397:11;29379:30;;;;;;;;;;;;:35;29375:384;;;29517:13;;29502:11;:28;29498:242;;29697:19;29664:17;:30;29682:11;29664:30;;;;;;;;;;;:52;;;;29498:242;29375:384;29205:569;29148:626;29821:7;29817:2;29802:27;;29811:4;29802:27;;;;;;;;;;;;29840:42;29861:4;29867:2;29871:7;29880:1;29840:20;:42::i;:::-;27479:2411;;27375:2515;;;:::o;52496:211::-;52613:86;52633:5;52663:23;;;52688:2;52692:5;52640:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52613:19;:86::i;:::-;52496:211;;;:::o;59156:98::-;59209:7;59236:10;59229:17;;59156:98;:::o;69305:191::-;69379:16;69398:6;;;;;;;;;;;69379:25;;69424:8;69415:6;;:17;;;;;;;;;;;;;;;;;;69479:8;69448:40;;69469:8;69448:40;;;;;;;;;;;;69368:128;69305:191;:::o;22493:104::-;22562:27;22572:2;22576:8;22562:27;;;;;;;;;;;;:9;:27::i;:::-;22493:104;;:::o;33587:716::-;33750:4;33796:2;33771:45;;;33817:19;:17;:19::i;:::-;33838:4;33844:7;33853:5;33771:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33767:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34071:1;34054:6;:13;:18;34050:235;;;34100:40;;;;;;;;;;;;;;34050:235;34243:6;34237:13;34228:6;34224:2;34220:15;34213:38;33767:529;33940:54;;;33930:64;;;:6;:64;;;;33923:71;;;33587:716;;;;;;:::o;38658:723::-;38714:13;38944:1;38935:5;:10;38931:53;;;38962:10;;;;;;;;;;;;;;;;;;;;;38931:53;38994:12;39009:5;38994:20;;39025:14;39050:78;39065:1;39057:4;:9;39050:78;;39083:8;;;;;:::i;:::-;;;;39114:2;39106:10;;;;;:::i;:::-;;;39050:78;;;39138:19;39170:6;39160:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39138:39;;39188:154;39204:1;39195:5;:10;39188:154;;39232:1;39222:11;;;;;:::i;:::-;;;39299:2;39291:5;:10;;;;:::i;:::-;39278:2;:24;;;;:::i;:::-;39265:39;;39248:6;39255;39248:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39328:2;39319:11;;;;;:::i;:::-;;;39188:154;;;39366:6;39352:21;;;;;38658:723;;;;:::o;34951:159::-;;;;;:::o;19123:148::-;19187:14;19248:5;19238:15;;19123:148;;;:::o;35769:158::-;;;;;:::o;55069:716::-;55493:23;55519:69;55547:4;55519:69;;;;;;;;;;;;;;;;;55527:5;55519:27;;;;:69;;;;;:::i;:::-;55493:95;;55623:1;55603:10;:17;:21;55599:179;;;55700:10;55689:30;;;;;;;;;;;;:::i;:::-;55681:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;55599:179;55139:646;55069:716;;:::o;22970:2236::-;23093:20;23116:13;;23093:36;;23158:1;23144:16;;:2;:16;;;23140:48;;;23169:19;;;;;;;;;;;;;;23140:48;23215:1;23203:8;:13;23199:44;;;23225:18;;;;;;;;;;;;;;23199:44;23256:61;23286:1;23290:2;23294:12;23308:8;23256:21;:61::i;:::-;23860:1;9190:2;23831:1;:25;;23830:31;23818:8;:44;23792:18;:22;23811:2;23792:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9970:3;24261:29;24288:1;24276:8;:13;24261:14;:29::i;:::-;:56;;9707:3;24198:15;:41;;24156:21;24174:2;24156:17;:21::i;:::-;:84;:162;24105:17;:31;24123:12;24105:31;;;;;;;;;;;:213;;;;24335:20;24358:12;24335:35;;24385:11;24414:8;24399:12;:23;24385:37;;24461:1;24443:2;:14;;;:19;24439:635;;24483:313;24539:12;24535:2;24514:38;;24531:1;24514:38;;;;;;;;;;;;24580:69;24619:1;24623:2;24627:14;;;;;;24643:5;24580:30;:69::i;:::-;24575:174;;24685:40;;;;;;;;;;;;;;24575:174;24791:3;24776:12;:18;24483:313;;24877:12;24860:13;;:29;24856:43;;24891:8;;;24856:43;24439:635;;;24940:119;24996:14;;;;;;24992:2;24971:40;;24988:1;24971:40;;;;;;;;;;;;25054:3;25039:12;:18;24940:119;;24439:635;25104:12;25088:13;:28;;;;23569:1559;;25138:60;25167:1;25171:2;25175:12;25189:8;25138:20;:60::i;:::-;23082:2124;22970:2236;;;:::o;44395:229::-;44532:12;44564:52;44586:6;44594:4;44600:1;44603:12;44564:21;:52::i;:::-;44557:59;;44395:229;;;;;:::o;19358:142::-;19416:14;19477:5;19467:15;;19358:142;;;:::o;45515:510::-;45685:12;45743:5;45718:21;:30;;45710:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45810:18;45821:6;45810:10;:18::i;:::-;45802:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45876:12;45890:23;45917:6;:11;;45936:5;45943:4;45917:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45875:73;;;;45966:51;45983:7;45992:10;46004:12;45966:16;:51::i;:::-;45959:58;;;;45515:510;;;;;;:::o;41650:326::-;41710:4;41967:1;41945:7;:19;;;:23;41938:30;;41650:326;;;:::o;48201:712::-;48351:12;48380:7;48376:530;;;48411:10;48404:17;;;;48376:530;48545:1;48525:10;:17;:21;48521:374;;;48723:10;48717:17;48784:15;48771:10;48767:2;48763:19;48756:44;48521:374;48866:12;48859:20;;;;;;;;;;;:::i;:::-;;;;;;;;48201:712;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1340:5;1371:6;1365:13;1356:22;;1387:30;1411:5;1387:30;:::i;:::-;1286:137;;;;:::o;1429:139::-;1475:5;1513:6;1500:20;1491:29;;1529:33;1556:5;1529:33;:::i;:::-;1429:139;;;;:::o;1574:137::-;1619:5;1657:6;1644:20;1635:29;;1673:32;1699:5;1673:32;:::i;:::-;1574:137;;;;:::o;1717:141::-;1773:5;1804:6;1798:13;1789:22;;1820:32;1846:5;1820:32;:::i;:::-;1717:141;;;;:::o;1877:338::-;1932:5;1981:3;1974:4;1966:6;1962:17;1958:27;1948:122;;1989:79;;:::i;:::-;1948:122;2106:6;2093:20;2131:78;2205:3;2197:6;2190:4;2182:6;2178:17;2131:78;:::i;:::-;2122:87;;1938:277;1877:338;;;;:::o;2221:169::-;2282:5;2320:6;2307:20;2298:29;;2336:48;2378:5;2336:48;:::i;:::-;2221:169;;;;:::o;2410:340::-;2466:5;2515:3;2508:4;2500:6;2496:17;2492:27;2482:122;;2523:79;;:::i;:::-;2482:122;2640:6;2627:20;2665:79;2740:3;2732:6;2725:4;2717:6;2713:17;2665:79;:::i;:::-;2656:88;;2472:278;2410:340;;;;:::o;2756:139::-;2802:5;2840:6;2827:20;2818:29;;2856:33;2883:5;2856:33;:::i;:::-;2756:139;;;;:::o;2901:143::-;2958:5;2989:6;2983:13;2974:22;;3005:33;3032:5;3005:33;:::i;:::-;2901:143;;;;:::o;3050:329::-;3109:6;3158:2;3146:9;3137:7;3133:23;3129:32;3126:119;;;3164:79;;:::i;:::-;3126:119;3284:1;3309:53;3354:7;3345:6;3334:9;3330:22;3309:53;:::i;:::-;3299:63;;3255:117;3050:329;;;;:::o;3385:345::-;3452:6;3501:2;3489:9;3480:7;3476:23;3472:32;3469:119;;;3507:79;;:::i;:::-;3469:119;3627:1;3652:61;3705:7;3696:6;3685:9;3681:22;3652:61;:::i;:::-;3642:71;;3598:125;3385:345;;;;:::o;3736:474::-;3804:6;3812;3861:2;3849:9;3840:7;3836:23;3832:32;3829:119;;;3867:79;;:::i;:::-;3829:119;3987:1;4012:53;4057:7;4048:6;4037:9;4033:22;4012:53;:::i;:::-;4002:63;;3958:117;4114:2;4140:53;4185:7;4176:6;4165:9;4161:22;4140:53;:::i;:::-;4130:63;;4085:118;3736:474;;;;;:::o;4216:619::-;4293:6;4301;4309;4358:2;4346:9;4337:7;4333:23;4329:32;4326:119;;;4364:79;;:::i;:::-;4326:119;4484:1;4509:53;4554:7;4545:6;4534:9;4530:22;4509:53;:::i;:::-;4499:63;;4455:117;4611:2;4637:53;4682:7;4673:6;4662:9;4658:22;4637:53;:::i;:::-;4627:63;;4582:118;4739:2;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4710:118;4216:619;;;;;:::o;4841:943::-;4936:6;4944;4952;4960;5009:3;4997:9;4988:7;4984:23;4980:33;4977:120;;;5016:79;;:::i;:::-;4977:120;5136:1;5161:53;5206:7;5197:6;5186:9;5182:22;5161:53;:::i;:::-;5151:63;;5107:117;5263:2;5289:53;5334:7;5325:6;5314:9;5310:22;5289:53;:::i;:::-;5279:63;;5234:118;5391:2;5417:53;5462:7;5453:6;5442:9;5438:22;5417:53;:::i;:::-;5407:63;;5362:118;5547:2;5536:9;5532:18;5519:32;5578:18;5570:6;5567:30;5564:117;;;5600:79;;:::i;:::-;5564:117;5705:62;5759:7;5750:6;5739:9;5735:22;5705:62;:::i;:::-;5695:72;;5490:287;4841:943;;;;;;;:::o;5790:468::-;5855:6;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:50;6233:7;6224:6;6213:9;6209:22;6191:50;:::i;:::-;6181:60;;6136:115;5790:468;;;;;:::o;6264:474::-;6332:6;6340;6389:2;6377:9;6368:7;6364:23;6360:32;6357:119;;;6395:79;;:::i;:::-;6357:119;6515:1;6540:53;6585:7;6576:6;6565:9;6561:22;6540:53;:::i;:::-;6530:63;;6486:117;6642:2;6668:53;6713:7;6704:6;6693:9;6689:22;6668:53;:::i;:::-;6658:63;;6613:118;6264:474;;;;;:::o;6744:345::-;6811:6;6860:2;6848:9;6839:7;6835:23;6831:32;6828:119;;;6866:79;;:::i;:::-;6828:119;6986:1;7011:61;7064:7;7055:6;7044:9;7040:22;7011:61;:::i;:::-;7001:71;;6957:125;6744:345;;;;:::o;7095:329::-;7154:6;7203:2;7191:9;7182:7;7178:23;7174:32;7171:119;;;7209:79;;:::i;:::-;7171:119;7329:1;7354:53;7399:7;7390:6;7379:9;7375:22;7354:53;:::i;:::-;7344:63;;7300:117;7095:329;;;;:::o;7430:327::-;7488:6;7537:2;7525:9;7516:7;7512:23;7508:32;7505:119;;;7543:79;;:::i;:::-;7505:119;7663:1;7688:52;7732:7;7723:6;7712:9;7708:22;7688:52;:::i;:::-;7678:62;;7634:116;7430:327;;;;:::o;7763:349::-;7832:6;7881:2;7869:9;7860:7;7856:23;7852:32;7849:119;;;7887:79;;:::i;:::-;7849:119;8007:1;8032:63;8087:7;8078:6;8067:9;8063:22;8032:63;:::i;:::-;8022:73;;7978:127;7763:349;;;;:::o;8118:359::-;8192:6;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:68;8452:7;8443:6;8432:9;8428:22;8392:68;:::i;:::-;8382:78;;8338:132;8118:359;;;;:::o;8483:504::-;8566:6;8574;8623:2;8611:9;8602:7;8598:23;8594:32;8591:119;;;8629:79;;:::i;:::-;8591:119;8749:1;8774:68;8834:7;8825:6;8814:9;8810:22;8774:68;:::i;:::-;8764:78;;8720:132;8891:2;8917:53;8962:7;8953:6;8942:9;8938:22;8917:53;:::i;:::-;8907:63;;8862:118;8483:504;;;;;:::o;8993:509::-;9062:6;9111:2;9099:9;9090:7;9086:23;9082:32;9079:119;;;9117:79;;:::i;:::-;9079:119;9265:1;9254:9;9250:17;9237:31;9295:18;9287:6;9284:30;9281:117;;;9317:79;;:::i;:::-;9281:117;9422:63;9477:7;9468:6;9457:9;9453:22;9422:63;:::i;:::-;9412:73;;9208:287;8993:509;;;;:::o;9508:329::-;9567:6;9616:2;9604:9;9595:7;9591:23;9587:32;9584:119;;;9622:79;;:::i;:::-;9584:119;9742:1;9767:53;9812:7;9803:6;9792:9;9788:22;9767:53;:::i;:::-;9757:63;;9713:117;9508:329;;;;:::o;9843:351::-;9913:6;9962:2;9950:9;9941:7;9937:23;9933:32;9930:119;;;9968:79;;:::i;:::-;9930:119;10088:1;10113:64;10169:7;10160:6;10149:9;10145:22;10113:64;:::i;:::-;10103:74;;10059:128;9843:351;;;;:::o;10200:147::-;10295:45;10334:5;10295:45;:::i;:::-;10290:3;10283:58;10200:147;;:::o;10353:118::-;10440:24;10458:5;10440:24;:::i;:::-;10435:3;10428:37;10353:118;;:::o;10477:109::-;10558:21;10573:5;10558:21;:::i;:::-;10553:3;10546:34;10477:109;;:::o;10592:118::-;10679:24;10697:5;10679:24;:::i;:::-;10674:3;10667:37;10592:118;;:::o;10716:360::-;10802:3;10830:38;10862:5;10830:38;:::i;:::-;10884:70;10947:6;10942:3;10884:70;:::i;:::-;10877:77;;10963:52;11008:6;11003:3;10996:4;10989:5;10985:16;10963:52;:::i;:::-;11040:29;11062:6;11040:29;:::i;:::-;11035:3;11031:39;11024:46;;10806:270;10716:360;;;;:::o;11082:373::-;11186:3;11214:38;11246:5;11214:38;:::i;:::-;11268:88;11349:6;11344:3;11268:88;:::i;:::-;11261:95;;11365:52;11410:6;11405:3;11398:4;11391:5;11387:16;11365:52;:::i;:::-;11442:6;11437:3;11433:16;11426:23;;11190:265;11082:373;;;;:::o;11461:145::-;11555:44;11593:5;11555:44;:::i;:::-;11550:3;11543:57;11461:145;;:::o;11612:364::-;11700:3;11728:39;11761:5;11728:39;:::i;:::-;11783:71;11847:6;11842:3;11783:71;:::i;:::-;11776:78;;11863:52;11908:6;11903:3;11896:4;11889:5;11885:16;11863:52;:::i;:::-;11940:29;11962:6;11940:29;:::i;:::-;11935:3;11931:39;11924:46;;11704:272;11612:364;;;;:::o;11982:377::-;12088:3;12116:39;12149:5;12116:39;:::i;:::-;12171:89;12253:6;12248:3;12171:89;:::i;:::-;12164:96;;12269:52;12314:6;12309:3;12302:4;12295:5;12291:16;12269:52;:::i;:::-;12346:6;12341:3;12337:16;12330:23;;12092:267;11982:377;;;;:::o;12389:845::-;12492:3;12529:5;12523:12;12558:36;12584:9;12558:36;:::i;:::-;12610:89;12692:6;12687:3;12610:89;:::i;:::-;12603:96;;12730:1;12719:9;12715:17;12746:1;12741:137;;;;12892:1;12887:341;;;;12708:520;;12741:137;12825:4;12821:9;12810;12806:25;12801:3;12794:38;12861:6;12856:3;12852:16;12845:23;;12741:137;;12887:341;12954:38;12986:5;12954:38;:::i;:::-;13014:1;13028:154;13042:6;13039:1;13036:13;13028:154;;;13116:7;13110:14;13106:1;13101:3;13097:11;13090:35;13166:1;13157:7;13153:15;13142:26;;13064:4;13061:1;13057:12;13052:17;;13028:154;;;13211:6;13206:3;13202:16;13195:23;;12894:334;;12708:520;;12496:738;;12389:845;;;;:::o;13240:366::-;13382:3;13403:67;13467:2;13462:3;13403:67;:::i;:::-;13396:74;;13479:93;13568:3;13479:93;:::i;:::-;13597:2;13592:3;13588:12;13581:19;;13240:366;;;:::o;13612:::-;13754:3;13775:67;13839:2;13834:3;13775:67;:::i;:::-;13768:74;;13851:93;13940:3;13851:93;:::i;:::-;13969:2;13964:3;13960:12;13953:19;;13612:366;;;:::o;13984:::-;14126:3;14147:67;14211:2;14206:3;14147:67;:::i;:::-;14140:74;;14223:93;14312:3;14223:93;:::i;:::-;14341:2;14336:3;14332:12;14325:19;;13984:366;;;:::o;14356:::-;14498:3;14519:67;14583:2;14578:3;14519:67;:::i;:::-;14512:74;;14595:93;14684:3;14595:93;:::i;:::-;14713:2;14708:3;14704:12;14697:19;;14356:366;;;:::o;14728:::-;14870:3;14891:67;14955:2;14950:3;14891:67;:::i;:::-;14884:74;;14967:93;15056:3;14967:93;:::i;:::-;15085:2;15080:3;15076:12;15069:19;;14728:366;;;:::o;15100:::-;15242:3;15263:67;15327:2;15322:3;15263:67;:::i;:::-;15256:74;;15339:93;15428:3;15339:93;:::i;:::-;15457:2;15452:3;15448:12;15441:19;;15100:366;;;:::o;15472:::-;15614:3;15635:67;15699:2;15694:3;15635:67;:::i;:::-;15628:74;;15711:93;15800:3;15711:93;:::i;:::-;15829:2;15824:3;15820:12;15813:19;;15472:366;;;:::o;15844:::-;15986:3;16007:67;16071:2;16066:3;16007:67;:::i;:::-;16000:74;;16083:93;16172:3;16083:93;:::i;:::-;16201:2;16196:3;16192:12;16185:19;;15844:366;;;:::o;16216:::-;16358:3;16379:67;16443:2;16438:3;16379:67;:::i;:::-;16372:74;;16455:93;16544:3;16455:93;:::i;:::-;16573:2;16568:3;16564:12;16557:19;;16216:366;;;:::o;16588:::-;16730:3;16751:67;16815:2;16810:3;16751:67;:::i;:::-;16744:74;;16827:93;16916:3;16827:93;:::i;:::-;16945:2;16940:3;16936:12;16929:19;;16588:366;;;:::o;16960:::-;17102:3;17123:67;17187:2;17182:3;17123:67;:::i;:::-;17116:74;;17199:93;17288:3;17199:93;:::i;:::-;17317:2;17312:3;17308:12;17301:19;;16960:366;;;:::o;17332:400::-;17492:3;17513:84;17595:1;17590:3;17513:84;:::i;:::-;17506:91;;17606:93;17695:3;17606:93;:::i;:::-;17724:1;17719:3;17715:11;17708:18;;17332:400;;;:::o;17738:366::-;17880:3;17901:67;17965:2;17960:3;17901:67;:::i;:::-;17894:74;;17977:93;18066:3;17977:93;:::i;:::-;18095:2;18090:3;18086:12;18079:19;;17738:366;;;:::o;18110:398::-;18269:3;18290:83;18371:1;18366:3;18290:83;:::i;:::-;18283:90;;18382:93;18471:3;18382:93;:::i;:::-;18500:1;18495:3;18491:11;18484:18;;18110:398;;;:::o;18514:366::-;18656:3;18677:67;18741:2;18736:3;18677:67;:::i;:::-;18670:74;;18753:93;18842:3;18753:93;:::i;:::-;18871:2;18866:3;18862:12;18855:19;;18514:366;;;:::o;18886:::-;19028:3;19049:67;19113:2;19108:3;19049:67;:::i;:::-;19042:74;;19125:93;19214:3;19125:93;:::i;:::-;19243:2;19238:3;19234:12;19227:19;;18886:366;;;:::o;19258:::-;19400:3;19421:67;19485:2;19480:3;19421:67;:::i;:::-;19414:74;;19497:93;19586:3;19497:93;:::i;:::-;19615:2;19610:3;19606:12;19599:19;;19258:366;;;:::o;19630:::-;19772:3;19793:67;19857:2;19852:3;19793:67;:::i;:::-;19786:74;;19869:93;19958:3;19869:93;:::i;:::-;19987:2;19982:3;19978:12;19971:19;;19630:366;;;:::o;20002:118::-;20089:24;20107:5;20089:24;:::i;:::-;20084:3;20077:37;20002:118;;:::o;20126:271::-;20256:3;20278:93;20367:3;20358:6;20278:93;:::i;:::-;20271:100;;20388:3;20381:10;;20126:271;;;;:::o;20403:695::-;20681:3;20703:92;20791:3;20782:6;20703:92;:::i;:::-;20696:99;;20812:95;20903:3;20894:6;20812:95;:::i;:::-;20805:102;;20924:148;21068:3;20924:148;:::i;:::-;20917:155;;21089:3;21082:10;;20403:695;;;;;:::o;21104:379::-;21288:3;21310:147;21453:3;21310:147;:::i;:::-;21303:154;;21474:3;21467:10;;21104:379;;;:::o;21489:222::-;21582:4;21620:2;21609:9;21605:18;21597:26;;21633:71;21701:1;21690:9;21686:17;21677:6;21633:71;:::i;:::-;21489:222;;;;:::o;21717:348::-;21846:4;21884:2;21873:9;21869:18;21861:26;;21897:79;21973:1;21962:9;21958:17;21949:6;21897:79;:::i;:::-;21986:72;22054:2;22043:9;22039:18;22030:6;21986:72;:::i;:::-;21717:348;;;;;:::o;22071:640::-;22266:4;22304:3;22293:9;22289:19;22281:27;;22318:71;22386:1;22375:9;22371:17;22362:6;22318:71;:::i;:::-;22399:72;22467:2;22456:9;22452:18;22443:6;22399:72;:::i;:::-;22481;22549:2;22538:9;22534:18;22525:6;22481:72;:::i;:::-;22600:9;22594:4;22590:20;22585:2;22574:9;22570:18;22563:48;22628:76;22699:4;22690:6;22628:76;:::i;:::-;22620:84;;22071:640;;;;;;;:::o;22717:332::-;22838:4;22876:2;22865:9;22861:18;22853:26;;22889:71;22957:1;22946:9;22942:17;22933:6;22889:71;:::i;:::-;22970:72;23038:2;23027:9;23023:18;23014:6;22970:72;:::i;:::-;22717:332;;;;;:::o;23055:210::-;23142:4;23180:2;23169:9;23165:18;23157:26;;23193:65;23255:1;23244:9;23240:17;23231:6;23193:65;:::i;:::-;23055:210;;;;:::o;23271:222::-;23364:4;23402:2;23391:9;23387:18;23379:26;;23415:71;23483:1;23472:9;23468:17;23459:6;23415:71;:::i;:::-;23271:222;;;;:::o;23499:236::-;23599:4;23637:2;23626:9;23622:18;23614:26;;23650:78;23725:1;23714:9;23710:17;23701:6;23650:78;:::i;:::-;23499:236;;;;:::o;23741:313::-;23854:4;23892:2;23881:9;23877:18;23869:26;;23941:9;23935:4;23931:20;23927:1;23916:9;23912:17;23905:47;23969:78;24042:4;24033:6;23969:78;:::i;:::-;23961:86;;23741:313;;;;:::o;24060:419::-;24226:4;24264:2;24253:9;24249:18;24241:26;;24313:9;24307:4;24303:20;24299:1;24288:9;24284:17;24277:47;24341:131;24467:4;24341:131;:::i;:::-;24333:139;;24060:419;;;:::o;24485:::-;24651:4;24689:2;24678:9;24674:18;24666:26;;24738:9;24732:4;24728:20;24724:1;24713:9;24709:17;24702:47;24766:131;24892:4;24766:131;:::i;:::-;24758:139;;24485:419;;;:::o;24910:::-;25076:4;25114:2;25103:9;25099:18;25091:26;;25163:9;25157:4;25153:20;25149:1;25138:9;25134:17;25127:47;25191:131;25317:4;25191:131;:::i;:::-;25183:139;;24910:419;;;:::o;25335:::-;25501:4;25539:2;25528:9;25524:18;25516:26;;25588:9;25582:4;25578:20;25574:1;25563:9;25559:17;25552:47;25616:131;25742:4;25616:131;:::i;:::-;25608:139;;25335:419;;;:::o;25760:::-;25926:4;25964:2;25953:9;25949:18;25941:26;;26013:9;26007:4;26003:20;25999:1;25988:9;25984:17;25977:47;26041:131;26167:4;26041:131;:::i;:::-;26033:139;;25760:419;;;:::o;26185:::-;26351:4;26389:2;26378:9;26374:18;26366:26;;26438:9;26432:4;26428:20;26424:1;26413:9;26409:17;26402:47;26466:131;26592:4;26466:131;:::i;:::-;26458:139;;26185:419;;;:::o;26610:::-;26776:4;26814:2;26803:9;26799:18;26791:26;;26863:9;26857:4;26853:20;26849:1;26838:9;26834:17;26827:47;26891:131;27017:4;26891:131;:::i;:::-;26883:139;;26610:419;;;:::o;27035:::-;27201:4;27239:2;27228:9;27224:18;27216:26;;27288:9;27282:4;27278:20;27274:1;27263:9;27259:17;27252:47;27316:131;27442:4;27316:131;:::i;:::-;27308:139;;27035:419;;;:::o;27460:::-;27626:4;27664:2;27653:9;27649:18;27641:26;;27713:9;27707:4;27703:20;27699:1;27688:9;27684:17;27677:47;27741:131;27867:4;27741:131;:::i;:::-;27733:139;;27460:419;;;:::o;27885:::-;28051:4;28089:2;28078:9;28074:18;28066:26;;28138:9;28132:4;28128:20;28124:1;28113:9;28109:17;28102:47;28166:131;28292:4;28166:131;:::i;:::-;28158:139;;27885:419;;;:::o;28310:::-;28476:4;28514:2;28503:9;28499:18;28491:26;;28563:9;28557:4;28553:20;28549:1;28538:9;28534:17;28527:47;28591:131;28717:4;28591:131;:::i;:::-;28583:139;;28310:419;;;:::o;28735:::-;28901:4;28939:2;28928:9;28924:18;28916:26;;28988:9;28982:4;28978:20;28974:1;28963:9;28959:17;28952:47;29016:131;29142:4;29016:131;:::i;:::-;29008:139;;28735:419;;;:::o;29160:::-;29326:4;29364:2;29353:9;29349:18;29341:26;;29413:9;29407:4;29403:20;29399:1;29388:9;29384:17;29377:47;29441:131;29567:4;29441:131;:::i;:::-;29433:139;;29160:419;;;:::o;29585:::-;29751:4;29789:2;29778:9;29774:18;29766:26;;29838:9;29832:4;29828:20;29824:1;29813:9;29809:17;29802:47;29866:131;29992:4;29866:131;:::i;:::-;29858:139;;29585:419;;;:::o;30010:::-;30176:4;30214:2;30203:9;30199:18;30191:26;;30263:9;30257:4;30253:20;30249:1;30238:9;30234:17;30227:47;30291:131;30417:4;30291:131;:::i;:::-;30283:139;;30010:419;;;:::o;30435:::-;30601:4;30639:2;30628:9;30624:18;30616:26;;30688:9;30682:4;30678:20;30674:1;30663:9;30659:17;30652:47;30716:131;30842:4;30716:131;:::i;:::-;30708:139;;30435:419;;;:::o;30860:222::-;30953:4;30991:2;30980:9;30976:18;30968:26;;31004:71;31072:1;31061:9;31057:17;31048:6;31004:71;:::i;:::-;30860:222;;;;:::o;31088:129::-;31122:6;31149:20;;:::i;:::-;31139:30;;31178:33;31206:4;31198:6;31178:33;:::i;:::-;31088:129;;;:::o;31223:75::-;31256:6;31289:2;31283:9;31273:19;;31223:75;:::o;31304:307::-;31365:4;31455:18;31447:6;31444:30;31441:56;;;31477:18;;:::i;:::-;31441:56;31515:29;31537:6;31515:29;:::i;:::-;31507:37;;31599:4;31593;31589:15;31581:23;;31304:307;;;:::o;31617:308::-;31679:4;31769:18;31761:6;31758:30;31755:56;;;31791:18;;:::i;:::-;31755:56;31829:29;31851:6;31829:29;:::i;:::-;31821:37;;31913:4;31907;31903:15;31895:23;;31617:308;;;:::o;31931:141::-;31980:4;32003:3;31995:11;;32026:3;32023:1;32016:14;32060:4;32057:1;32047:18;32039:26;;31931:141;;;:::o;32078:98::-;32129:6;32163:5;32157:12;32147:22;;32078:98;;;:::o;32182:99::-;32234:6;32268:5;32262:12;32252:22;;32182:99;;;:::o;32287:168::-;32370:11;32404:6;32399:3;32392:19;32444:4;32439:3;32435:14;32420:29;;32287:168;;;;:::o;32461:147::-;32562:11;32599:3;32584:18;;32461:147;;;;:::o;32614:169::-;32698:11;32732:6;32727:3;32720:19;32772:4;32767:3;32763:14;32748:29;;32614:169;;;;:::o;32789:148::-;32891:11;32928:3;32913:18;;32789:148;;;;:::o;32943:305::-;32983:3;33002:20;33020:1;33002:20;:::i;:::-;32997:25;;33036:20;33054:1;33036:20;:::i;:::-;33031:25;;33190:1;33122:66;33118:74;33115:1;33112:81;33109:107;;;33196:18;;:::i;:::-;33109:107;33240:1;33237;33233:9;33226:16;;32943:305;;;;:::o;33254:185::-;33294:1;33311:20;33329:1;33311:20;:::i;:::-;33306:25;;33345:20;33363:1;33345:20;:::i;:::-;33340:25;;33384:1;33374:35;;33389:18;;:::i;:::-;33374:35;33431:1;33428;33424:9;33419:14;;33254:185;;;;:::o;33445:348::-;33485:7;33508:20;33526:1;33508:20;:::i;:::-;33503:25;;33542:20;33560:1;33542:20;:::i;:::-;33537:25;;33730:1;33662:66;33658:74;33655:1;33652:81;33647:1;33640:9;33633:17;33629:105;33626:131;;;33737:18;;:::i;:::-;33626:131;33785:1;33782;33778:9;33767:20;;33445:348;;;;:::o;33799:191::-;33839:4;33859:20;33877:1;33859:20;:::i;:::-;33854:25;;33893:20;33911:1;33893:20;:::i;:::-;33888:25;;33932:1;33929;33926:8;33923:34;;;33937:18;;:::i;:::-;33923:34;33982:1;33979;33975:9;33967:17;;33799:191;;;;:::o;33996:96::-;34033:7;34062:24;34080:5;34062:24;:::i;:::-;34051:35;;33996:96;;;:::o;34098:104::-;34143:7;34172:24;34190:5;34172:24;:::i;:::-;34161:35;;34098:104;;;:::o;34208:90::-;34242:7;34285:5;34278:13;34271:21;34260:32;;34208:90;;;:::o;34304:77::-;34341:7;34370:5;34359:16;;34304:77;;;:::o;34387:149::-;34423:7;34463:66;34456:5;34452:78;34441:89;;34387:149;;;:::o;34542:111::-;34594:7;34623:24;34641:5;34623:24;:::i;:::-;34612:35;;34542:111;;;:::o;34659:129::-;34705:7;34734:5;34723:16;;34740:42;34776:5;34740:42;:::i;:::-;34659:129;;;:::o;34794:126::-;34831:7;34871:42;34864:5;34860:54;34849:65;;34794:126;;;:::o;34926:77::-;34963:7;34992:5;34981:16;;34926:77;;;:::o;35009:134::-;35067:9;35100:37;35131:5;35100:37;:::i;:::-;35087:50;;35009:134;;;:::o;35149:129::-;35206:9;35239:33;35266:5;35239:33;:::i;:::-;35226:46;;35149:129;;;:::o;35284:126::-;35334:9;35367:37;35398:5;35367:37;:::i;:::-;35354:50;;35284:126;;;:::o;35416:113::-;35466:9;35499:24;35517:5;35499:24;:::i;:::-;35486:37;;35416:113;;;:::o;35535:154::-;35619:6;35614:3;35609;35596:30;35681:1;35672:6;35667:3;35663:16;35656:27;35535:154;;;:::o;35695:307::-;35763:1;35773:113;35787:6;35784:1;35781:13;35773:113;;;35872:1;35867:3;35863:11;35857:18;35853:1;35848:3;35844:11;35837:39;35809:2;35806:1;35802:10;35797:15;;35773:113;;;35904:6;35901:1;35898:13;35895:101;;;35984:1;35975:6;35970:3;35966:16;35959:27;35895:101;35744:258;35695:307;;;:::o;36008:320::-;36052:6;36089:1;36083:4;36079:12;36069:22;;36136:1;36130:4;36126:12;36157:18;36147:81;;36213:4;36205:6;36201:17;36191:27;;36147:81;36275:2;36267:6;36264:14;36244:18;36241:38;36238:84;;;36294:18;;:::i;:::-;36238:84;36059:269;36008:320;;;:::o;36334:281::-;36417:27;36439:4;36417:27;:::i;:::-;36409:6;36405:40;36547:6;36535:10;36532:22;36511:18;36499:10;36496:34;36493:62;36490:88;;;36558:18;;:::i;:::-;36490:88;36598:10;36594:2;36587:22;36377:238;36334:281;;:::o;36621:233::-;36660:3;36683:24;36701:5;36683:24;:::i;:::-;36674:33;;36729:66;36722:5;36719:77;36716:103;;;36799:18;;:::i;:::-;36716:103;36846:1;36839:5;36835:13;36828:20;;36621:233;;;:::o;36860:176::-;36892:1;36909:20;36927:1;36909:20;:::i;:::-;36904:25;;36943:20;36961:1;36943:20;:::i;:::-;36938:25;;36982:1;36972:35;;36987:18;;:::i;:::-;36972:35;37028:1;37025;37021:9;37016:14;;36860:176;;;;:::o;37042:180::-;37090:77;37087:1;37080:88;37187:4;37184:1;37177:15;37211:4;37208:1;37201:15;37228:180;37276:77;37273:1;37266:88;37373:4;37370:1;37363:15;37397:4;37394:1;37387:15;37414:180;37462:77;37459:1;37452:88;37559:4;37556:1;37549:15;37583:4;37580:1;37573:15;37600:180;37648:77;37645:1;37638:88;37745:4;37742:1;37735:15;37769:4;37766:1;37759:15;37786:180;37834:77;37831:1;37824:88;37931:4;37928:1;37921:15;37955:4;37952:1;37945:15;37972:180;38020:77;38017:1;38010:88;38117:4;38114:1;38107:15;38141:4;38138:1;38131:15;38158:117;38267:1;38264;38257:12;38281:117;38390:1;38387;38380:12;38404:117;38513:1;38510;38503:12;38527:117;38636:1;38633;38626:12;38650:102;38691:6;38742:2;38738:7;38733:2;38726:5;38722:14;38718:28;38708:38;;38650:102;;;:::o;38758:169::-;38898:21;38894:1;38886:6;38882:14;38875:45;38758:169;:::o;38933:181::-;39073:33;39069:1;39061:6;39057:14;39050:57;38933:181;:::o;39120:225::-;39260:34;39256:1;39248:6;39244:14;39237:58;39329:8;39324:2;39316:6;39312:15;39305:33;39120:225;:::o;39351:171::-;39491:23;39487:1;39479:6;39475:14;39468:47;39351:171;:::o;39528:225::-;39668:34;39664:1;39656:6;39652:14;39645:58;39737:8;39732:2;39724:6;39720:15;39713:33;39528:225;:::o;39759:245::-;39899:34;39895:1;39887:6;39883:14;39876:58;39968:28;39963:2;39955:6;39951:15;39944:53;39759:245;:::o;40010:179::-;40150:31;40146:1;40138:6;40134:14;40127:55;40010:179;:::o;40195:225::-;40335:34;40331:1;40323:6;40319:14;40312:58;40404:8;40399:2;40391:6;40387:15;40380:33;40195:225;:::o;40426:230::-;40566:34;40562:1;40554:6;40550:14;40543:58;40635:13;40630:2;40622:6;40618:15;40611:38;40426:230;:::o;40662:180::-;40802:32;40798:1;40790:6;40786:14;40779:56;40662:180;:::o;40848:178::-;40988:30;40984:1;40976:6;40972:14;40965:54;40848:178;:::o;41032:155::-;41172:7;41168:1;41160:6;41156:14;41149:31;41032:155;:::o;41193:182::-;41333:34;41329:1;41321:6;41317:14;41310:58;41193:182;:::o;41381:114::-;;:::o;41501:179::-;41641:31;41637:1;41629:6;41625:14;41618:55;41501:179;:::o;41686:166::-;41826:18;41822:1;41814:6;41810:14;41803:42;41686:166;:::o;41858:229::-;41998:34;41994:1;41986:6;41982:14;41975:58;42067:12;42062:2;42054:6;42050:15;42043:37;41858:229;:::o;42093:167::-;42233:19;42229:1;42221:6;42217:14;42210:43;42093:167;:::o;42266:114::-;42348:1;42341:5;42338:12;42328:46;;42354:18;;:::i;:::-;42328:46;42266:114;:::o;42386:122::-;42459:24;42477:5;42459:24;:::i;:::-;42452:5;42449:35;42439:63;;42498:1;42495;42488:12;42439:63;42386:122;:::o;42514:138::-;42595:32;42621:5;42595:32;:::i;:::-;42588:5;42585:43;42575:71;;42642:1;42639;42632:12;42575:71;42514:138;:::o;42658:116::-;42728:21;42743:5;42728:21;:::i;:::-;42721:5;42718:32;42708:60;;42764:1;42761;42754:12;42708:60;42658:116;:::o;42780:122::-;42853:24;42871:5;42853:24;:::i;:::-;42846:5;42843:35;42833:63;;42892:1;42889;42882:12;42833:63;42780:122;:::o;42908:120::-;42980:23;42997:5;42980:23;:::i;:::-;42973:5;42970:34;42960:62;;43018:1;43015;43008:12;42960:62;42908:120;:::o;43034:152::-;43122:39;43155:5;43122:39;:::i;:::-;43115:5;43112:50;43102:78;;43176:1;43173;43166:12;43102:78;43034:152;:::o;43192:122::-;43265:24;43283:5;43265:24;:::i;:::-;43258:5;43255:35;43245:63;;43304:1;43301;43294:12;43245:63;43192:122;:::o

Swarm Source

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