ETH Price: $3,083.33 (+0.74%)
Gas: 4 Gwei

Token

Not Tom (NT)
 

Overview

Max Total Supply

2,003 NT

Holders

891

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*٣٣٣٣٠.eth
Balance
1 NT
0x17fd87ab6da67797bde709f446826af10ceaf2de
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:
NotMyspace

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: NotTom.sol
/// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import "./Strings.sol";
import "./ERC721A.sol";
import "./MerkleProof.sol";
import "./Ownable.sol";


contract NotMyspace is ERC721A, Ownable {
    using Strings for uint;
    string public _baseTokenURI = "ipfs://QmbZm6PNNJLz8h4nsGCsHGsCuY8qcnPipHGn71iKEQDnfP/";
    uint public maxPerWallet = 2;
    uint public maxSupply = 2003;
    bool public paused = true;
    bool public presaleOnly = true;
    bool public revealed = false;
    bytes32 public merkleRoot;

    mapping(address => uint) public addressMintedBalance;

  constructor(
    ) ERC721A("Not Tom", "NT")payable{
        _mint(msg.sender, 100);
    }

    
    modifier mintCompliance(uint256 quantity) {
        require(paused == false, "Contract is paused");
        require(_totalMinted() + quantity <= maxSupply, "Collection is capped.");
        require(tx.origin == msg.sender, "No contracts!");
        require(addressMintedBalance[msg.sender] + quantity <= maxPerWallet, "You can't mint this many.");
        _;
    }



  function mint(uint256 quantity) mintCompliance(quantity) external payable
    {
        _mint(msg.sender, quantity);
        addressMintedBalance[msg.sender] += quantity;
    }

    function mintPresale(uint256 quantity, bytes32[] calldata proof) mintCompliance(quantity) external payable
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, merkleRoot, leaf), "Invalid Merkle Tree proof supplied");
        _mint(msg.sender, quantity);
        addressMintedBalance[msg.sender] += quantity;    
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function tokenURI(uint tokenId) public view virtual override returns (string memory) {
        string memory currentBaseURI = _baseURI();
        if(revealed == true) {
            return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
            : "";
        } else {
            return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI))
            : "";
        } 
    }

    function setMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        merkleRoot = _newMerkleRoot;
    }

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setPresaleOnly(bool _state) external onlyOwner {
        presaleOnly = _state;
    }

    function reveal(bool _state, string memory baseURI) external onlyOwner {
        revealed = _state;
        _baseTokenURI = baseURI;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

}

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

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory 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.
                // The ASCII index of the '0' character is 48.
                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 3 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

File 4 of 7: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

File 7 of 7: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"string","name":"baseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003f3b60369139600990816200002e919062000724565b506002600a556107d3600b556001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506040518060400160405280600781526020017f4e6f7420546f6d000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e54000000000000000000000000000000000000000000000000000000000000815250816002908162000108919062000724565b5080600390816200011a919062000724565b506200012b6200016c60201b60201c565b600081905550505062000153620001476200017560201b60201c565b6200017d60201b60201c565b620001663360646200024360201b60201c565b6200080b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000820362000284576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200029960008483856200042a60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000328836200030a60008660006200043060201b60201c565b6200031b856200046060201b60201c565b176200047060201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620003cb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200038e565b506000820362000407576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200042560008483856200049b60201b60201c565b505050565b50505050565b60008060e883901c905060e86200044f868684620004a160201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052c57607f821691505b602082108103620005425762000541620004e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056d565b620005b886836200056d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000605620005ff620005f984620005d0565b620005da565b620005d0565b9050919050565b6000819050919050565b6200062183620005e4565b6200063962000630826200060c565b8484546200057a565b825550505050565b600090565b6200065062000641565b6200065d81848462000616565b505050565b5b8181101562000685576200067960008262000646565b60018101905062000663565b5050565b601f821115620006d4576200069e8162000548565b620006a9846200055d565b81016020851015620006b9578190505b620006d1620006c8856200055d565b83018262000662565b50505b505050565b600082821c905092915050565b6000620006f960001984600802620006d9565b1980831691505092915050565b6000620007148383620006e6565b9150826002028217905092915050565b6200072f82620004aa565b67ffffffffffffffff8111156200074b576200074a620004b5565b5b62000757825462000513565b6200076482828562000689565b600060209050601f8311600181146200079c576000841562000787578287015190505b62000793858262000706565b86555062000803565b601f198416620007ac8662000548565b60005b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006e6565b8355505b6001600288020188555050505b505050505050565b613720806200081b6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a101ff6d116100a0578063c87b56dd1161006f578063c87b56dd146106a7578063cfc86f7b146106e4578063d5abeb011461070f578063e985e9c51461073a578063f2fde38b14610777576101ee565b8063a101ff6d14610603578063a22cb4651461062c578063b88d4fde14610655578063bedb86fb1461067e576101ee565b80637cb64759116100dc5780637cb64759146105685780638da5cb5b1461059157806395d89b41146105bc578063a0712d68146105e7576101ee565b80636352211e146104ac578063672a7fe0146104e957806370a0823114610514578063715018a614610551576101ee565b80632eb4a7ab11610185578063453c231011610154578063453c231014610402578063518302271461042d57806355f804b3146104585780635c975abb14610481576101ee565b80632eb4a7ab1461036e57806330a464f5146103995780633ccfd60b146103c257806342842e0e146103d9576101ee565b80630c0a6b5e116101c15780630c0a6b5e146102c157806318160ddd146102dd57806318cae2691461030857806323b872dd14610345576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612408565b6107a0565b6040516102279190612450565b60405180910390f35b34801561023c57600080fd5b50610245610832565b6040516102529190612504565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061255c565b6108c4565b60405161028f91906125ca565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612611565b610943565b005b6102db60048036038101906102d691906126b6565b610a87565b005b3480156102e957600080fd5b506102f2610d51565b6040516102ff9190612725565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612740565b610d68565b60405161033c9190612725565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061276d565b610d80565b005b34801561037a57600080fd5b506103836110a2565b60405161039091906127d9565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612820565b6110a8565b005b3480156103ce57600080fd5b506103d76110cd565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061276d565b61118b565b005b34801561040e57600080fd5b506104176111ab565b6040516104249190612725565b60405180910390f35b34801561043957600080fd5b506104426111b1565b60405161044f9190612450565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061297d565b6111c4565b005b34801561048d57600080fd5b506104966111df565b6040516104a39190612450565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061255c565b6111f2565b6040516104e091906125ca565b60405180910390f35b3480156104f557600080fd5b506104fe611204565b60405161050b9190612450565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612740565b611217565b6040516105489190612725565b60405180910390f35b34801561055d57600080fd5b506105666112cf565b005b34801561057457600080fd5b5061058f600480360381019061058a91906129f2565b6112e3565b005b34801561059d57600080fd5b506105a66112f5565b6040516105b391906125ca565b60405180910390f35b3480156105c857600080fd5b506105d161131f565b6040516105de9190612504565b60405180910390f35b61060160048036038101906105fc919061255c565b6113b1565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612a1f565b6115c0565b005b34801561063857600080fd5b50610653600480360381019061064e9190612a7b565b6115f6565b005b34801561066157600080fd5b5061067c60048036038101906106779190612b5c565b61176d565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612820565b6117e0565b005b3480156106b357600080fd5b506106ce60048036038101906106c9919061255c565b611805565b6040516106db9190612504565b60405180910390f35b3480156106f057600080fd5b506106f96118c7565b6040516107069190612504565b60405180910390f35b34801561071b57600080fd5b50610724611955565b6040516107319190612725565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612bdf565b61195b565b60405161076e9190612450565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612740565b6119ef565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084190612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461086d90612c4e565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611a72565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661096f611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146109d25761099b81610996611ad1565b61195b565b6109d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b8260001515600c60009054906101000a900460ff16151514610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612ccb565b60405180910390fd5b600b5481610aea611ad9565b610af49190612d1a565b1115610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90612dbc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90612e28565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bf19190612d1a565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e94565b60405180910390fd5b600033604051602001610c459190612efc565b604051602081830303815290604052805190602001209050610cab848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611aec565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190612f89565b60405180910390fd5b610cf43386611b03565b84600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d439190612d1a565b925050819055505050505050565b6000610d5b611cbe565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6000610d8b82611cc7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dfe84611d93565b91509150610e148187610e0f611ad1565b611dba565b610e6057610e2986610e24611ad1565b61195b565b610e5f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ec6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed38686866001611dfe565b8015610ede57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fac85610f88888887611e04565b7c020000000000000000000000000000000000000000000000000000000017611e2c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611032576000600185019050600060046000838152602001908152602001600020540361103057600054811461102f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109a8686866001611e57565b505050505050565b600d5481565b6110b0611e5d565b80600c60016101000a81548160ff02191690831515021790555050565b6110d5611e5d565b60006110df6112f5565b73ffffffffffffffffffffffffffffffffffffffff164760405161110290612fda565b60006040518083038185875af1925050503d806000811461113f576040519150601f19603f3d011682016040523d82523d6000602084013e611144565b606091505b5050905080611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613061565b60405180910390fd5b50565b6111a68383836040518060200160405280600081525061176d565b505050565b600a5481565b600c60029054906101000a900460ff1681565b6111cc611e5d565b80600990816111db919061322d565b5050565b600c60009054906101000a900460ff1681565b60006111fd82611cc7565b9050919050565b600c60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d7611e5d565b6112e16000611edb565b565b6112eb611e5d565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461132e90612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90612c4e565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b5050505050905090565b8060001515600c60009054906101000a900460ff16151514611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612ccb565b60405180910390fd5b600b5481611414611ad9565b61141e9190612d1a565b111561145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690612dbc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612e28565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151b9190612d1a565b111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612e94565b60405180910390fd5b6115663383611b03565b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b59190612d1a565b925050819055505050565b6115c8611e5d565b81600c60026101000a81548160ff02191690831515021790555080600990816115f1919061322d565b505050565b6115fe611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611662576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061166f611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171c611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117619190612450565b60405180910390a35050565b611778848484610d80565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484611fa1565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6117e8611e5d565b80600c60006101000a81548160ff02191690831515021790555050565b606060006118116120f1565b905060011515600c60029054906101000a900460ff1615150361187f57600081511161184c5760405180602001604052806000815250611877565b8061185684612183565b604051602001611867929190613387565b6040516020818303038152906040525b9150506118c2565b600081511161189d57604051806020016040528060008152506118be565b806040516020016118ae91906133b6565b6040516020818303038152906040525b9150505b919050565b600980546118d490612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461190090612c4e565b801561194d5780601f106119225761010080835404028352916020019161194d565b820191906000526020600020905b81548152906001019060200180831161193057829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f7611e5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d9061343f565b60405180910390fd5b611a6f81611edb565b50565b600081611a7d611cbe565b11158015611a8c575060005482105b8015611aca575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611ae3611cbe565b60005403905090565b600082611af985846122e3565b1490509392505050565b60008054905060008203611b43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b506000848385611dfe565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bc783611bb86000866000611e04565b611bc185612339565b17611e2c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c6857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c2d565b5060008203611ca3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cb96000848385611e57565b505050565b60006001905090565b60008082905080611cd6611cbe565b11611d5c57600054811015611d5b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d59575b60008103611d4f576004600083600190039350838152602001908152602001600020549050611d25565b8092505050611d8e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1b868684612349565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e65612352565b73ffffffffffffffffffffffffffffffffffffffff16611e836112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906134ab565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc7611ad1565b8786866040518563ffffffff1660e01b8152600401611fe99493929190613520565b6020604051808303816000875af192505050801561202557506040513d601f19601f820116820180604052508101906120229190613581565b60015b61209e573d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b506000815103612096576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461210090612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461212c90612c4e565b80156121795780601f1061214e57610100808354040283529160200191612179565b820191906000526020600020905b81548152906001019060200180831161215c57829003601f168201915b5050505050905090565b6060600082036121ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122de565b600082905060005b600082146121fc5780806121e5906135ae565b915050600a826121f59190613625565b91506121d2565b60008167ffffffffffffffff81111561221857612217612852565b5b6040519080825280601f01601f19166020018201604052801561224a5781602001600182028036833780820191505090505b5090505b600085146122d7576001826122639190613656565b9150600a85612272919061368a565b603061227e9190612d1a565b60f81b818381518110612294576122936136bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d09190613625565b945061224e565b8093505050505b919050565b60008082905060005b845181101561232e576123198286838151811061230c5761230b6136bb565b5b602002602001015161235a565b91508080612326906135ae565b9150506122ec565b508091505092915050565b60006001821460e11b9050919050565b60009392505050565b600033905090565b60008183106123725761236d8284612385565b61237d565b61237c8383612385565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123e5816123b0565b81146123f057600080fd5b50565b600081359050612402816123dc565b92915050565b60006020828403121561241e5761241d6123a6565b5b600061242c848285016123f3565b91505092915050565b60008115159050919050565b61244a81612435565b82525050565b60006020820190506124656000830184612441565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a557808201518184015260208101905061248a565b838111156124b4576000848401525b50505050565b6000601f19601f8301169050919050565b60006124d68261246b565b6124e08185612476565b93506124f0818560208601612487565b6124f9816124ba565b840191505092915050565b6000602082019050818103600083015261251e81846124cb565b905092915050565b6000819050919050565b61253981612526565b811461254457600080fd5b50565b60008135905061255681612530565b92915050565b600060208284031215612572576125716123a6565b5b600061258084828501612547565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125b482612589565b9050919050565b6125c4816125a9565b82525050565b60006020820190506125df60008301846125bb565b92915050565b6125ee816125a9565b81146125f957600080fd5b50565b60008135905061260b816125e5565b92915050565b60008060408385031215612628576126276123a6565b5b6000612636858286016125fc565b925050602061264785828601612547565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261267657612675612651565b5b8235905067ffffffffffffffff81111561269357612692612656565b5b6020830191508360208202830111156126af576126ae61265b565b5b9250929050565b6000806000604084860312156126cf576126ce6123a6565b5b60006126dd86828701612547565b935050602084013567ffffffffffffffff8111156126fe576126fd6123ab565b5b61270a86828701612660565b92509250509250925092565b61271f81612526565b82525050565b600060208201905061273a6000830184612716565b92915050565b600060208284031215612756576127556123a6565b5b6000612764848285016125fc565b91505092915050565b600080600060608486031215612786576127856123a6565b5b6000612794868287016125fc565b93505060206127a5868287016125fc565b92505060406127b686828701612547565b9150509250925092565b6000819050919050565b6127d3816127c0565b82525050565b60006020820190506127ee60008301846127ca565b92915050565b6127fd81612435565b811461280857600080fd5b50565b60008135905061281a816127f4565b92915050565b600060208284031215612836576128356123a6565b5b60006128448482850161280b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61288a826124ba565b810181811067ffffffffffffffff821117156128a9576128a8612852565b5b80604052505050565b60006128bc61239c565b90506128c88282612881565b919050565b600067ffffffffffffffff8211156128e8576128e7612852565b5b6128f1826124ba565b9050602081019050919050565b82818337600083830152505050565b600061292061291b846128cd565b6128b2565b90508281526020810184848401111561293c5761293b61284d565b5b6129478482856128fe565b509392505050565b600082601f83011261296457612963612651565b5b813561297484826020860161290d565b91505092915050565b600060208284031215612993576129926123a6565b5b600082013567ffffffffffffffff8111156129b1576129b06123ab565b5b6129bd8482850161294f565b91505092915050565b6129cf816127c0565b81146129da57600080fd5b50565b6000813590506129ec816129c6565b92915050565b600060208284031215612a0857612a076123a6565b5b6000612a16848285016129dd565b91505092915050565b60008060408385031215612a3657612a356123a6565b5b6000612a448582860161280b565b925050602083013567ffffffffffffffff811115612a6557612a646123ab565b5b612a718582860161294f565b9150509250929050565b60008060408385031215612a9257612a916123a6565b5b6000612aa0858286016125fc565b9250506020612ab18582860161280b565b9150509250929050565b600067ffffffffffffffff821115612ad657612ad5612852565b5b612adf826124ba565b9050602081019050919050565b6000612aff612afa84612abb565b6128b2565b905082815260208101848484011115612b1b57612b1a61284d565b5b612b268482856128fe565b509392505050565b600082601f830112612b4357612b42612651565b5b8135612b53848260208601612aec565b91505092915050565b60008060008060808587031215612b7657612b756123a6565b5b6000612b84878288016125fc565b9450506020612b95878288016125fc565b9350506040612ba687828801612547565b925050606085013567ffffffffffffffff811115612bc757612bc66123ab565b5b612bd387828801612b2e565b91505092959194509250565b60008060408385031215612bf657612bf56123a6565b5b6000612c04858286016125fc565b9250506020612c15858286016125fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6657607f821691505b602082108103612c7957612c78612c1f565b5b50919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000612cb5601283612476565b9150612cc082612c7f565b602082019050919050565b60006020820190508181036000830152612ce481612ca8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2582612526565b9150612d3083612526565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6557612d64612ceb565b5b828201905092915050565b7f436f6c6c656374696f6e206973206361707065642e0000000000000000000000600082015250565b6000612da6601583612476565b9150612db182612d70565b602082019050919050565b60006020820190508181036000830152612dd581612d99565b9050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b6000612e12600d83612476565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f596f752063616e2774206d696e742074686973206d616e792e00000000000000600082015250565b6000612e7e601983612476565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b60008160601b9050919050565b6000612ecc82612eb4565b9050919050565b6000612ede82612ec1565b9050919050565b612ef6612ef1826125a9565b612ed3565b82525050565b6000612f088284612ee5565b60148201915081905092915050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f73602283612476565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b600081905092915050565b50565b6000612fc4600083612fa9565b9150612fcf82612fb4565b600082019050919050565b6000612fe582612fb7565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061304b603a83612476565b915061305682612fef565b604082019050919050565b6000602082019050818103600083015261307a8161303e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130a6565b6130ed86836130a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061312a61312561312084612526565b613105565b612526565b9050919050565b6000819050919050565b6131448361310f565b61315861315082613131565b8484546130b3565b825550505050565b600090565b61316d613160565b61317881848461313b565b505050565b5b8181101561319c57613191600082613165565b60018101905061317e565b5050565b601f8211156131e1576131b281613081565b6131bb84613096565b810160208510156131ca578190505b6131de6131d685613096565b83018261317d565b50505b505050565b600082821c905092915050565b6000613204600019846008026131e6565b1980831691505092915050565b600061321d83836131f3565b9150826002028217905092915050565b6132368261246b565b67ffffffffffffffff81111561324f5761324e612852565b5b6132598254612c4e565b6132648282856131a0565b600060209050601f8311600181146132975760008415613285578287015190505b61328f8582613211565b8655506132f7565b601f1984166132a586613081565b60005b828110156132cd578489015182556001820191506020850194506020810190506132a8565b868310156132ea57848901516132e6601f8916826131f3565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006133158261246b565b61331f81856132ff565b935061332f818560208601612487565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133716005836132ff565b915061337c8261333b565b600582019050919050565b6000613393828561330a565b915061339f828461330a565b91506133aa82613364565b91508190509392505050565b60006133c2828461330a565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613429602683612476565b9150613434826133cd565b604082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613495602083612476565b91506134a08261345f565b602082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f2826134cb565b6134fc81856134d6565b935061350c818560208601612487565b613515816124ba565b840191505092915050565b600060808201905061353560008301876125bb565b61354260208301866125bb565b61354f6040830185612716565b818103606083015261356181846134e7565b905095945050505050565b60008151905061357b816123dc565b92915050565b600060208284031215613597576135966123a6565b5b60006135a58482850161356c565b91505092915050565b60006135b982612526565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135eb576135ea612ceb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061363082612526565b915061363b83612526565b92508261364b5761364a6135f6565b5b828204905092915050565b600061366182612526565b915061366c83612526565b92508282101561367f5761367e612ceb565b5b828203905092915050565b600061369582612526565b91506136a083612526565b9250826136b0576136af6135f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220477a80b8311e2ab180749c84cc8d72f6e98ef72a626ceb5029d58caeb942c92364736f6c634300080f0033697066733a2f2f516d625a6d36504e4e4a4c7a3868346e734743734847734375593871636e50697048476e3731694b4551446e66502f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a101ff6d116100a0578063c87b56dd1161006f578063c87b56dd146106a7578063cfc86f7b146106e4578063d5abeb011461070f578063e985e9c51461073a578063f2fde38b14610777576101ee565b8063a101ff6d14610603578063a22cb4651461062c578063b88d4fde14610655578063bedb86fb1461067e576101ee565b80637cb64759116100dc5780637cb64759146105685780638da5cb5b1461059157806395d89b41146105bc578063a0712d68146105e7576101ee565b80636352211e146104ac578063672a7fe0146104e957806370a0823114610514578063715018a614610551576101ee565b80632eb4a7ab11610185578063453c231011610154578063453c231014610402578063518302271461042d57806355f804b3146104585780635c975abb14610481576101ee565b80632eb4a7ab1461036e57806330a464f5146103995780633ccfd60b146103c257806342842e0e146103d9576101ee565b80630c0a6b5e116101c15780630c0a6b5e146102c157806318160ddd146102dd57806318cae2691461030857806323b872dd14610345576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612408565b6107a0565b6040516102279190612450565b60405180910390f35b34801561023c57600080fd5b50610245610832565b6040516102529190612504565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061255c565b6108c4565b60405161028f91906125ca565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612611565b610943565b005b6102db60048036038101906102d691906126b6565b610a87565b005b3480156102e957600080fd5b506102f2610d51565b6040516102ff9190612725565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612740565b610d68565b60405161033c9190612725565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061276d565b610d80565b005b34801561037a57600080fd5b506103836110a2565b60405161039091906127d9565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612820565b6110a8565b005b3480156103ce57600080fd5b506103d76110cd565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061276d565b61118b565b005b34801561040e57600080fd5b506104176111ab565b6040516104249190612725565b60405180910390f35b34801561043957600080fd5b506104426111b1565b60405161044f9190612450565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061297d565b6111c4565b005b34801561048d57600080fd5b506104966111df565b6040516104a39190612450565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061255c565b6111f2565b6040516104e091906125ca565b60405180910390f35b3480156104f557600080fd5b506104fe611204565b60405161050b9190612450565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612740565b611217565b6040516105489190612725565b60405180910390f35b34801561055d57600080fd5b506105666112cf565b005b34801561057457600080fd5b5061058f600480360381019061058a91906129f2565b6112e3565b005b34801561059d57600080fd5b506105a66112f5565b6040516105b391906125ca565b60405180910390f35b3480156105c857600080fd5b506105d161131f565b6040516105de9190612504565b60405180910390f35b61060160048036038101906105fc919061255c565b6113b1565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612a1f565b6115c0565b005b34801561063857600080fd5b50610653600480360381019061064e9190612a7b565b6115f6565b005b34801561066157600080fd5b5061067c60048036038101906106779190612b5c565b61176d565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612820565b6117e0565b005b3480156106b357600080fd5b506106ce60048036038101906106c9919061255c565b611805565b6040516106db9190612504565b60405180910390f35b3480156106f057600080fd5b506106f96118c7565b6040516107069190612504565b60405180910390f35b34801561071b57600080fd5b50610724611955565b6040516107319190612725565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612bdf565b61195b565b60405161076e9190612450565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612740565b6119ef565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084190612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461086d90612c4e565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611a72565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661096f611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146109d25761099b81610996611ad1565b61195b565b6109d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b8260001515600c60009054906101000a900460ff16151514610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612ccb565b60405180910390fd5b600b5481610aea611ad9565b610af49190612d1a565b1115610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90612dbc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90612e28565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bf19190612d1a565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e94565b60405180910390fd5b600033604051602001610c459190612efc565b604051602081830303815290604052805190602001209050610cab848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611aec565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190612f89565b60405180910390fd5b610cf43386611b03565b84600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d439190612d1a565b925050819055505050505050565b6000610d5b611cbe565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6000610d8b82611cc7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dfe84611d93565b91509150610e148187610e0f611ad1565b611dba565b610e6057610e2986610e24611ad1565b61195b565b610e5f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ec6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed38686866001611dfe565b8015610ede57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fac85610f88888887611e04565b7c020000000000000000000000000000000000000000000000000000000017611e2c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611032576000600185019050600060046000838152602001908152602001600020540361103057600054811461102f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109a8686866001611e57565b505050505050565b600d5481565b6110b0611e5d565b80600c60016101000a81548160ff02191690831515021790555050565b6110d5611e5d565b60006110df6112f5565b73ffffffffffffffffffffffffffffffffffffffff164760405161110290612fda565b60006040518083038185875af1925050503d806000811461113f576040519150601f19603f3d011682016040523d82523d6000602084013e611144565b606091505b5050905080611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613061565b60405180910390fd5b50565b6111a68383836040518060200160405280600081525061176d565b505050565b600a5481565b600c60029054906101000a900460ff1681565b6111cc611e5d565b80600990816111db919061322d565b5050565b600c60009054906101000a900460ff1681565b60006111fd82611cc7565b9050919050565b600c60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d7611e5d565b6112e16000611edb565b565b6112eb611e5d565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461132e90612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90612c4e565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b5050505050905090565b8060001515600c60009054906101000a900460ff16151514611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612ccb565b60405180910390fd5b600b5481611414611ad9565b61141e9190612d1a565b111561145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690612dbc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612e28565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151b9190612d1a565b111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612e94565b60405180910390fd5b6115663383611b03565b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b59190612d1a565b925050819055505050565b6115c8611e5d565b81600c60026101000a81548160ff02191690831515021790555080600990816115f1919061322d565b505050565b6115fe611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611662576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061166f611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171c611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117619190612450565b60405180910390a35050565b611778848484610d80565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484611fa1565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6117e8611e5d565b80600c60006101000a81548160ff02191690831515021790555050565b606060006118116120f1565b905060011515600c60029054906101000a900460ff1615150361187f57600081511161184c5760405180602001604052806000815250611877565b8061185684612183565b604051602001611867929190613387565b6040516020818303038152906040525b9150506118c2565b600081511161189d57604051806020016040528060008152506118be565b806040516020016118ae91906133b6565b6040516020818303038152906040525b9150505b919050565b600980546118d490612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461190090612c4e565b801561194d5780601f106119225761010080835404028352916020019161194d565b820191906000526020600020905b81548152906001019060200180831161193057829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f7611e5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d9061343f565b60405180910390fd5b611a6f81611edb565b50565b600081611a7d611cbe565b11158015611a8c575060005482105b8015611aca575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611ae3611cbe565b60005403905090565b600082611af985846122e3565b1490509392505050565b60008054905060008203611b43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b506000848385611dfe565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bc783611bb86000866000611e04565b611bc185612339565b17611e2c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c6857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c2d565b5060008203611ca3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cb96000848385611e57565b505050565b60006001905090565b60008082905080611cd6611cbe565b11611d5c57600054811015611d5b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d59575b60008103611d4f576004600083600190039350838152602001908152602001600020549050611d25565b8092505050611d8e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1b868684612349565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e65612352565b73ffffffffffffffffffffffffffffffffffffffff16611e836112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906134ab565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc7611ad1565b8786866040518563ffffffff1660e01b8152600401611fe99493929190613520565b6020604051808303816000875af192505050801561202557506040513d601f19601f820116820180604052508101906120229190613581565b60015b61209e573d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b506000815103612096576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461210090612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461212c90612c4e565b80156121795780601f1061214e57610100808354040283529160200191612179565b820191906000526020600020905b81548152906001019060200180831161215c57829003601f168201915b5050505050905090565b6060600082036121ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122de565b600082905060005b600082146121fc5780806121e5906135ae565b915050600a826121f59190613625565b91506121d2565b60008167ffffffffffffffff81111561221857612217612852565b5b6040519080825280601f01601f19166020018201604052801561224a5781602001600182028036833780820191505090505b5090505b600085146122d7576001826122639190613656565b9150600a85612272919061368a565b603061227e9190612d1a565b60f81b818381518110612294576122936136bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d09190613625565b945061224e565b8093505050505b919050565b60008082905060005b845181101561232e576123198286838151811061230c5761230b6136bb565b5b602002602001015161235a565b91508080612326906135ae565b9150506122ec565b508091505092915050565b60006001821460e11b9050919050565b60009392505050565b600033905090565b60008183106123725761236d8284612385565b61237d565b61237c8383612385565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123e5816123b0565b81146123f057600080fd5b50565b600081359050612402816123dc565b92915050565b60006020828403121561241e5761241d6123a6565b5b600061242c848285016123f3565b91505092915050565b60008115159050919050565b61244a81612435565b82525050565b60006020820190506124656000830184612441565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a557808201518184015260208101905061248a565b838111156124b4576000848401525b50505050565b6000601f19601f8301169050919050565b60006124d68261246b565b6124e08185612476565b93506124f0818560208601612487565b6124f9816124ba565b840191505092915050565b6000602082019050818103600083015261251e81846124cb565b905092915050565b6000819050919050565b61253981612526565b811461254457600080fd5b50565b60008135905061255681612530565b92915050565b600060208284031215612572576125716123a6565b5b600061258084828501612547565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125b482612589565b9050919050565b6125c4816125a9565b82525050565b60006020820190506125df60008301846125bb565b92915050565b6125ee816125a9565b81146125f957600080fd5b50565b60008135905061260b816125e5565b92915050565b60008060408385031215612628576126276123a6565b5b6000612636858286016125fc565b925050602061264785828601612547565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261267657612675612651565b5b8235905067ffffffffffffffff81111561269357612692612656565b5b6020830191508360208202830111156126af576126ae61265b565b5b9250929050565b6000806000604084860312156126cf576126ce6123a6565b5b60006126dd86828701612547565b935050602084013567ffffffffffffffff8111156126fe576126fd6123ab565b5b61270a86828701612660565b92509250509250925092565b61271f81612526565b82525050565b600060208201905061273a6000830184612716565b92915050565b600060208284031215612756576127556123a6565b5b6000612764848285016125fc565b91505092915050565b600080600060608486031215612786576127856123a6565b5b6000612794868287016125fc565b93505060206127a5868287016125fc565b92505060406127b686828701612547565b9150509250925092565b6000819050919050565b6127d3816127c0565b82525050565b60006020820190506127ee60008301846127ca565b92915050565b6127fd81612435565b811461280857600080fd5b50565b60008135905061281a816127f4565b92915050565b600060208284031215612836576128356123a6565b5b60006128448482850161280b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61288a826124ba565b810181811067ffffffffffffffff821117156128a9576128a8612852565b5b80604052505050565b60006128bc61239c565b90506128c88282612881565b919050565b600067ffffffffffffffff8211156128e8576128e7612852565b5b6128f1826124ba565b9050602081019050919050565b82818337600083830152505050565b600061292061291b846128cd565b6128b2565b90508281526020810184848401111561293c5761293b61284d565b5b6129478482856128fe565b509392505050565b600082601f83011261296457612963612651565b5b813561297484826020860161290d565b91505092915050565b600060208284031215612993576129926123a6565b5b600082013567ffffffffffffffff8111156129b1576129b06123ab565b5b6129bd8482850161294f565b91505092915050565b6129cf816127c0565b81146129da57600080fd5b50565b6000813590506129ec816129c6565b92915050565b600060208284031215612a0857612a076123a6565b5b6000612a16848285016129dd565b91505092915050565b60008060408385031215612a3657612a356123a6565b5b6000612a448582860161280b565b925050602083013567ffffffffffffffff811115612a6557612a646123ab565b5b612a718582860161294f565b9150509250929050565b60008060408385031215612a9257612a916123a6565b5b6000612aa0858286016125fc565b9250506020612ab18582860161280b565b9150509250929050565b600067ffffffffffffffff821115612ad657612ad5612852565b5b612adf826124ba565b9050602081019050919050565b6000612aff612afa84612abb565b6128b2565b905082815260208101848484011115612b1b57612b1a61284d565b5b612b268482856128fe565b509392505050565b600082601f830112612b4357612b42612651565b5b8135612b53848260208601612aec565b91505092915050565b60008060008060808587031215612b7657612b756123a6565b5b6000612b84878288016125fc565b9450506020612b95878288016125fc565b9350506040612ba687828801612547565b925050606085013567ffffffffffffffff811115612bc757612bc66123ab565b5b612bd387828801612b2e565b91505092959194509250565b60008060408385031215612bf657612bf56123a6565b5b6000612c04858286016125fc565b9250506020612c15858286016125fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6657607f821691505b602082108103612c7957612c78612c1f565b5b50919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000612cb5601283612476565b9150612cc082612c7f565b602082019050919050565b60006020820190508181036000830152612ce481612ca8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2582612526565b9150612d3083612526565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6557612d64612ceb565b5b828201905092915050565b7f436f6c6c656374696f6e206973206361707065642e0000000000000000000000600082015250565b6000612da6601583612476565b9150612db182612d70565b602082019050919050565b60006020820190508181036000830152612dd581612d99565b9050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b6000612e12600d83612476565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f596f752063616e2774206d696e742074686973206d616e792e00000000000000600082015250565b6000612e7e601983612476565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b60008160601b9050919050565b6000612ecc82612eb4565b9050919050565b6000612ede82612ec1565b9050919050565b612ef6612ef1826125a9565b612ed3565b82525050565b6000612f088284612ee5565b60148201915081905092915050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f73602283612476565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b600081905092915050565b50565b6000612fc4600083612fa9565b9150612fcf82612fb4565b600082019050919050565b6000612fe582612fb7565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061304b603a83612476565b915061305682612fef565b604082019050919050565b6000602082019050818103600083015261307a8161303e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130a6565b6130ed86836130a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061312a61312561312084612526565b613105565b612526565b9050919050565b6000819050919050565b6131448361310f565b61315861315082613131565b8484546130b3565b825550505050565b600090565b61316d613160565b61317881848461313b565b505050565b5b8181101561319c57613191600082613165565b60018101905061317e565b5050565b601f8211156131e1576131b281613081565b6131bb84613096565b810160208510156131ca578190505b6131de6131d685613096565b83018261317d565b50505b505050565b600082821c905092915050565b6000613204600019846008026131e6565b1980831691505092915050565b600061321d83836131f3565b9150826002028217905092915050565b6132368261246b565b67ffffffffffffffff81111561324f5761324e612852565b5b6132598254612c4e565b6132648282856131a0565b600060209050601f8311600181146132975760008415613285578287015190505b61328f8582613211565b8655506132f7565b601f1984166132a586613081565b60005b828110156132cd578489015182556001820191506020850194506020810190506132a8565b868310156132ea57848901516132e6601f8916826131f3565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006133158261246b565b61331f81856132ff565b935061332f818560208601612487565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133716005836132ff565b915061337c8261333b565b600582019050919050565b6000613393828561330a565b915061339f828461330a565b91506133aa82613364565b91508190509392505050565b60006133c2828461330a565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613429602683612476565b9150613434826133cd565b604082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613495602083612476565b91506134a08261345f565b602082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f2826134cb565b6134fc81856134d6565b935061350c818560208601612487565b613515816124ba565b840191505092915050565b600060808201905061353560008301876125bb565b61354260208301866125bb565b61354f6040830185612716565b818103606083015261356181846134e7565b905095945050505050565b60008151905061357b816123dc565b92915050565b600060208284031215613597576135966123a6565b5b60006135a58482850161356c565b91505092915050565b60006135b982612526565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135eb576135ea612ceb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061363082612526565b915061363b83612526565b92508261364b5761364a6135f6565b5b828204905092915050565b600061366182612526565b915061366c83612526565b92508282101561367f5761367e612ceb565b5b828203905092915050565b600061369582612526565b91506136a083612526565b9250826136b0576136af6135f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220477a80b8311e2ab180749c84cc8d72f6e98ef72a626ceb5029d58caeb942c92364736f6c634300080f0033

Deployed Bytecode Sourcemap

170:3029:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10269:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16752:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1280:383:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;547:52:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20459:2817:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;513:25:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2621:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2873:212;;;;;;;;;;;;;:::i;:::-;;23372:185:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;339:28:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;478;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1671:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;409:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11662:152:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;441:30:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:5;;;;;;;;;;;;;:::i;:::-;;2409:112:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1092:180:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2724:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17310:308:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24155:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2529:84:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1909:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;246:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;374:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17775:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9367:639:1;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;10269:100::-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;16752:218::-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;1280:383:4:-;1360:8;783:5;773:15;;:6;;;;;;;;;;;:15;;;765:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;859:9;;847:8;830:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;822:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;926:10;913:23;;:9;:23;;;905:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1020:12;;1008:8;973:20;:32;994:10;973:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:59;;965:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;1403:12:::1;1445:10;1428:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1418:39;;;;;;1403:54;;1476:43;1495:5;;1476:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1502:10;;1514:4;1476:18;:43::i;:::-;1468:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;1569:27;1575:10;1587:8;1569:5;:27::i;:::-;1643:8;1607:20;:32;1628:10;1607:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;1392:271;1280:383:::0;;;;:::o;6020:323:1:-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;547:52:4:-;;;;;;;;;;;;;;;;;:::o;20459:2817:1:-;20593:27;20623;20642:7;20623:18;:27::i;:::-;20593:57;;20708:4;20667:45;;20683:19;20667:45;;;20663:86;;20721:28;;;;;;;;;;;;;;20663:86;20763:27;20792:23;20819:35;20846:7;20819:26;:35::i;:::-;20762:92;;;;20954:68;20979:15;20996:4;21002:19;:17;:19::i;:::-;20954:24;:68::i;:::-;20949:180;;21042:43;21059:4;21065:19;:17;:19::i;:::-;21042:16;:43::i;:::-;21037:92;;21094:35;;;;;;;;;;;;;;21037:92;20949:180;21160:1;21146:16;;:2;:16;;;21142:52;;21171:23;;;;;;;;;;;;;;21142:52;21207:43;21229:4;21235:2;21239:7;21248:1;21207:21;:43::i;:::-;21343:15;21340:160;;;21483:1;21462:19;21455:30;21340:160;21880:18;:24;21899:4;21880:24;;;;;;;;;;;;;;;;21878:26;;;;;;;;;;;;21949:18;:22;21968:2;21949:22;;;;;;;;;;;;;;;;21947:24;;;;;;;;;;;22271:146;22308:2;22357:45;22372:4;22378:2;22382:19;22357:14;:45::i;:::-;2419:8;22329:73;22271:18;:146::i;:::-;22242:17;:26;22260:7;22242:26;;;;;;;;;;;:175;;;;22588:1;2419:8;22537:19;:47;:52;22533:627;;22610:19;22642:1;22632:7;:11;22610:33;;22799:1;22765:17;:30;22783:11;22765:30;;;;;;;;;;;;:35;22761:384;;22903:13;;22888:11;:28;22884:242;;23083:19;23050:17;:30;23068:11;23050:30;;;;;;;;;;;:52;;;;22884:242;22761:384;22591:569;22533:627;23207:7;23203:2;23188:27;;23197:4;23188:27;;;;;;;;;;;;23226:42;23247:4;23253:2;23257:7;23266:1;23226:20;:42::i;:::-;20582:2694;;;20459:2817;;;:::o;513:25:4:-;;;;:::o;2621:95::-;1122:13:5;:11;:13::i;:::-;2702:6:4::1;2688:11;;:20;;;;;;;;;;;;;;;;;;2621:95:::0;:::o;2873:212::-;1122:13:5;:11;:13::i;:::-;2924:12:4::1;2942:7;:5;:7::i;:::-;:12;;2962:21;2942:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2923:65;;;3007:7;2999:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2912:173;2873:212::o:0;23372:185:1:-;23510:39;23527:4;23533:2;23537:7;23510:39;;;;;;;;;;;;:16;:39::i;:::-;23372:185;;;:::o;339:28:4:-;;;;:::o;478:::-;;;;;;;;;;;;;:::o;1671:104::-;1122:13:5;:11;:13::i;:::-;1760:7:4::1;1744:13;:23;;;;;;:::i;:::-;;1671:104:::0;:::o;409:25::-;;;;;;;;;;;;;:::o;11662:152:1:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;441:30:4:-;;;;;;;;;;;;;:::o;7204:233:1:-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;1884:103:5:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;2409:112:4:-;1122:13:5;:11;:13::i;:::-;2499:14:4::1;2486:10;:27;;;;2409:112:::0;:::o;1236:87:5:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:1:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;1092:180:4:-;1139:8;783:5;773:15;;:6;;;;;;;;;;;:15;;;765:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;859:9;;847:8;830:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;822:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;926:10;913:23;;:9;:23;;;905:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1020:12;;1008:8;973:20;:32;994:10;973:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:59;;965:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;1182:27:::1;1188:10;1200:8;1182:5;:27::i;:::-;1256:8;1220:20;:32;1241:10;1220:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;1092:180:::0;;:::o;2724:141::-;1122:13:5;:11;:13::i;:::-;2817:6:4::1;2806:8;;:17;;;;;;;;;;;;;;;;;;2850:7;2834:13;:23;;;;;;:::i;:::-;;2724:141:::0;;:::o;17310:308:1:-;17421:19;:17;:19::i;:::-;17409:31;;:8;:31;;;17405:61;;17449:17;;;;;;;;;;;;;;17405:61;17531:8;17479:18;:39;17498:19;:17;:19::i;:::-;17479:39;;;;;;;;;;;;;;;:49;17519:8;17479:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17591:8;17555:55;;17570:19;:17;:19::i;:::-;17555:55;;;17601:8;17555:55;;;;;;:::i;:::-;;;;;;;;17310:308;;:::o;24155:399::-;24322:31;24335:4;24341:2;24345:7;24322:12;:31::i;:::-;24386:1;24368:2;:14;;;:19;24364:183;;24407:56;24438:4;24444:2;24448:7;24457:5;24407:30;:56::i;:::-;24402:145;;24491:40;;;;;;;;;;;;;;24402:145;24364:183;24155:399;;;;:::o;2529:84:4:-;1122:13:5;:11;:13::i;:::-;2599:6:4::1;2590;;:15;;;;;;;;;;;;;;;;;;2529:84:::0;:::o;1909:492::-;1979:13;2005:28;2036:10;:8;:10::i;:::-;2005:41;;2072:4;2060:16;;:8;;;;;;;;;;;:16;;;2057:336;;2131:1;2106:14;2100:28;:32;:135;;;;;;;;;;;;;;;;;2172:14;2188:18;:7;:16;:18::i;:::-;2155:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2100:135;2093:142;;;;;2057:336;2306:1;2281:14;2275:28;:32;:106;;;;;;;;;;;;;;;;;2347:14;2330:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;2275:106;2268:113;;;1909:492;;;;:::o;246:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;374:28::-;;;;:::o;17775:164:1:-;17872:4;17896:18;:25;17915:5;17896:25;;;;;;;;;;;;;;;:35;17922:8;17896:35;;;;;;;;;;;;;;;;;;;;;;;;;17889:42;;17775:164;;;;:::o;2142:201:5:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;18197:282:1:-;18262:4;18318:7;18299:15;:13;:15::i;:::-;:26;;:66;;;;;18352:13;;18342:7;:23;18299:66;:153;;;;;18451:1;2139:8;18403:17;:26;18421:7;18403:26;;;;;;;;;;;;:44;:49;18299:153;18279:173;;18197:282;;;:::o;39963:105::-;40023:7;40050:10;40043:17;;39963:105;:::o;6441:296::-;6496:7;6703:15;:13;:15::i;:::-;6687:13;;:31;6680:38;;6441:296;:::o;1179:190:3:-;1304:4;1357;1328:25;1341:5;1348:4;1328:12;:25::i;:::-;:33;1321:40;;1179:190;;;;;:::o;27816:2454:1:-;27889:20;27912:13;;27889:36;;27952:1;27940:8;:13;27936:44;;27962:18;;;;;;;;;;;;;;27936:44;27993:61;28023:1;28027:2;28031:12;28045:8;27993:21;:61::i;:::-;28537:1;1501:2;28507:1;:26;;28506:32;28494:8;:45;28468:18;:22;28487:2;28468:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28816:139;28853:2;28907:33;28930:1;28934:2;28938:1;28907:14;:33::i;:::-;28874:30;28895:8;28874:20;:30::i;:::-;:66;28816:18;:139::i;:::-;28782:17;:31;28800:12;28782:31;;;;;;;;;;;:173;;;;28972:16;29003:11;29032:8;29017:12;:23;29003:37;;29287:16;29283:2;29279:25;29267:37;;29659:12;29619:8;29578:1;29516:25;29457:1;29396;29369:335;29784:1;29770:12;29766:20;29724:346;29825:3;29816:7;29813:16;29724:346;;30043:7;30033:8;30030:1;30003:25;30000:1;29997;29992:59;29878:1;29869:7;29865:15;29854:26;;29724:346;;;29728:77;30115:1;30103:8;:13;30099:45;;30125:19;;;;;;;;;;;;;;30099:45;30177:3;30161:13;:19;;;;28242:1950;;30202:60;30231:1;30235:2;30239:12;30253:8;30202:20;:60::i;:::-;27878:2392;27816:2454;;:::o;3093:101:4:-;3158:7;3185:1;3178:8;;3093:101;:::o;12817:1275:1:-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;13830:113;13847:1;13837:6;:11;13830:113;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19360:479::-;19462:27;19491:23;19532:38;19573:15;:24;19589:7;19573:24;;;;;;;;;;;19532:65;;19744:18;19721:41;;19801:19;19795:26;19776:45;;19706:126;19360:479;;;:::o;18588:659::-;18737:11;18902:16;18895:5;18891:28;18882:37;;19062:16;19051:9;19047:32;19034:45;;19212:15;19201:9;19198:30;19190:5;19179:9;19176:20;19173:56;19163:66;;18588:659;;;;;:::o;25216:159::-;;;;;:::o;39272:311::-;39407:7;39427:16;2543:3;39453:19;:41;;39427:68;;2543:3;39521:31;39532:4;39538:2;39542:9;39521:10;:31::i;:::-;39513:40;;:62;;39506:69;;;39272:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;26040:158::-;;;;;:::o;1401:132:5:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2503:191::-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;26638:716:1:-;26801:4;26847:2;26822:45;;;26868:19;:17;:19::i;:::-;26889:4;26895:7;26904:5;26822:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26818:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27122:1;27105:6;:13;:18;27101:235;;27151:40;;;;;;;;;;;;;;27101:235;27294:6;27288:13;27279:6;27275:2;27271:15;27264:38;26818:529;26991:54;;;26981:64;;;:6;:64;;;;26974:71;;;26638:716;;;;;;:::o;1783:114:4:-;1843:13;1876;1869:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1783:114;:::o;407:723:6:-;463:13;693:1;684:5;:10;680:53;;711:10;;;;;;;;;;;;;;;;;;;;;680:53;743:12;758:5;743:20;;774:14;799:78;814:1;806:4;:9;799:78;;832:8;;;;;:::i;:::-;;;;863:2;855:10;;;;;:::i;:::-;;;799:78;;;887:19;919:6;909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887:39;;937:154;953:1;944:5;:10;937:154;;981:1;971:11;;;;;:::i;:::-;;;1048:2;1040:5;:10;;;;:::i;:::-;1027:2;:24;;;;:::i;:::-;1014:39;;997:6;1004;997:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1077:2;1068:11;;;;;:::i;:::-;;;937:154;;;1115:6;1101:21;;;;;407:723;;;;:::o;2046:296:3:-;2129:7;2149:20;2172:4;2149:27;;2192:9;2187:118;2211:5;:12;2207:1;:16;2187:118;;;2260:33;2270:12;2284:5;2290:1;2284:8;;;;;;;;:::i;:::-;;;;;;;;2260:9;:33::i;:::-;2245:48;;2225:3;;;;;:::i;:::-;;;;2187:118;;;;2322:12;2315:19;;;2046:296;;;;:::o;15192:324:1:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::o;38973:147::-;39110:6;38973:147;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;8253:149:3:-;8316:7;8347:1;8343;:5;:51;;8374:20;8389:1;8392;8374:14;:20::i;:::-;8343:51;;;8351:20;8366:1;8369;8351:14;:20::i;:::-;8343:51;8336:58;;8253:149;;;;:::o;8410:268::-;8478:13;8585:1;8579:4;8572:15;8614:1;8608:4;8601:15;8655:4;8649;8639:21;8630:30;;8410:268;;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:117;5293:1;5290;5283:12;5324:568;5397:8;5407:6;5457:3;5450:4;5442:6;5438:17;5434:27;5424:122;;5465:79;;:::i;:::-;5424:122;5578:6;5565:20;5555:30;;5608:18;5600:6;5597:30;5594:117;;;5630:79;;:::i;:::-;5594:117;5744:4;5736:6;5732:17;5720:29;;5798:3;5790:4;5782:6;5778:17;5768:8;5764:32;5761:41;5758:128;;;5805:79;;:::i;:::-;5758:128;5324:568;;;;;:::o;5898:704::-;5993:6;6001;6009;6058:2;6046:9;6037:7;6033:23;6029:32;6026:119;;;6064:79;;:::i;:::-;6026:119;6184:1;6209:53;6254:7;6245:6;6234:9;6230:22;6209:53;:::i;:::-;6199:63;;6155:117;6339:2;6328:9;6324:18;6311:32;6370:18;6362:6;6359:30;6356:117;;;6392:79;;:::i;:::-;6356:117;6505:80;6577:7;6568:6;6557:9;6553:22;6505:80;:::i;:::-;6487:98;;;;6282:313;5898:704;;;;;:::o;6608:118::-;6695:24;6713:5;6695:24;:::i;:::-;6690:3;6683:37;6608:118;;:::o;6732:222::-;6825:4;6863:2;6852:9;6848:18;6840:26;;6876:71;6944:1;6933:9;6929:17;6920:6;6876:71;:::i;:::-;6732:222;;;;:::o;6960:329::-;7019:6;7068:2;7056:9;7047:7;7043:23;7039:32;7036:119;;;7074:79;;:::i;:::-;7036:119;7194:1;7219:53;7264:7;7255:6;7244:9;7240:22;7219:53;:::i;:::-;7209:63;;7165:117;6960:329;;;;:::o;7295:619::-;7372:6;7380;7388;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7690:2;7716:53;7761:7;7752:6;7741:9;7737:22;7716:53;:::i;:::-;7706:63;;7661:118;7818:2;7844:53;7889:7;7880:6;7869:9;7865:22;7844:53;:::i;:::-;7834:63;;7789:118;7295:619;;;;;:::o;7920:77::-;7957:7;7986:5;7975:16;;7920:77;;;:::o;8003:118::-;8090:24;8108:5;8090:24;:::i;:::-;8085:3;8078:37;8003:118;;:::o;8127:222::-;8220:4;8258:2;8247:9;8243:18;8235:26;;8271:71;8339:1;8328:9;8324:17;8315:6;8271:71;:::i;:::-;8127:222;;;;:::o;8355:116::-;8425:21;8440:5;8425:21;:::i;:::-;8418:5;8415:32;8405:60;;8461:1;8458;8451:12;8405:60;8355:116;:::o;8477:133::-;8520:5;8558:6;8545:20;8536:29;;8574:30;8598:5;8574:30;:::i;:::-;8477:133;;;;:::o;8616:323::-;8672:6;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8847:1;8872:50;8914:7;8905:6;8894:9;8890:22;8872:50;:::i;:::-;8862:60;;8818:114;8616:323;;;;:::o;8945:117::-;9054:1;9051;9044:12;9068:180;9116:77;9113:1;9106:88;9213:4;9210:1;9203:15;9237:4;9234:1;9227:15;9254:281;9337:27;9359:4;9337:27;:::i;:::-;9329:6;9325:40;9467:6;9455:10;9452:22;9431:18;9419:10;9416:34;9413:62;9410:88;;;9478:18;;:::i;:::-;9410:88;9518:10;9514:2;9507:22;9297:238;9254:281;;:::o;9541:129::-;9575:6;9602:20;;:::i;:::-;9592:30;;9631:33;9659:4;9651:6;9631:33;:::i;:::-;9541:129;;;:::o;9676:308::-;9738:4;9828:18;9820:6;9817:30;9814:56;;;9850:18;;:::i;:::-;9814:56;9888:29;9910:6;9888:29;:::i;:::-;9880:37;;9972:4;9966;9962:15;9954:23;;9676:308;;;:::o;9990:154::-;10074:6;10069:3;10064;10051:30;10136:1;10127:6;10122:3;10118:16;10111:27;9990:154;;;:::o;10150:412::-;10228:5;10253:66;10269:49;10311:6;10269:49;:::i;:::-;10253:66;:::i;:::-;10244:75;;10342:6;10335:5;10328:21;10380:4;10373:5;10369:16;10418:3;10409:6;10404:3;10400:16;10397:25;10394:112;;;10425:79;;:::i;:::-;10394:112;10515:41;10549:6;10544:3;10539;10515:41;:::i;:::-;10234:328;10150:412;;;;;:::o;10582:340::-;10638:5;10687:3;10680:4;10672:6;10668:17;10664:27;10654:122;;10695:79;;:::i;:::-;10654:122;10812:6;10799:20;10837:79;10912:3;10904:6;10897:4;10889:6;10885:17;10837:79;:::i;:::-;10828:88;;10644:278;10582:340;;;;:::o;10928:509::-;10997:6;11046:2;11034:9;11025:7;11021:23;11017:32;11014:119;;;11052:79;;:::i;:::-;11014:119;11200:1;11189:9;11185:17;11172:31;11230:18;11222:6;11219:30;11216:117;;;11252:79;;:::i;:::-;11216:117;11357:63;11412:7;11403:6;11392:9;11388:22;11357:63;:::i;:::-;11347:73;;11143:287;10928:509;;;;:::o;11443:122::-;11516:24;11534:5;11516:24;:::i;:::-;11509:5;11506:35;11496:63;;11555:1;11552;11545:12;11496:63;11443:122;:::o;11571:139::-;11617:5;11655:6;11642:20;11633:29;;11671:33;11698:5;11671:33;:::i;:::-;11571:139;;;;:::o;11716:329::-;11775:6;11824:2;11812:9;11803:7;11799:23;11795:32;11792:119;;;11830:79;;:::i;:::-;11792:119;11950:1;11975:53;12020:7;12011:6;12000:9;11996:22;11975:53;:::i;:::-;11965:63;;11921:117;11716:329;;;;:::o;12051:648::-;12126:6;12134;12183:2;12171:9;12162:7;12158:23;12154:32;12151:119;;;12189:79;;:::i;:::-;12151:119;12309:1;12334:50;12376:7;12367:6;12356:9;12352:22;12334:50;:::i;:::-;12324:60;;12280:114;12461:2;12450:9;12446:18;12433:32;12492:18;12484:6;12481:30;12478:117;;;12514:79;;:::i;:::-;12478:117;12619:63;12674:7;12665:6;12654:9;12650:22;12619:63;:::i;:::-;12609:73;;12404:288;12051:648;;;;;:::o;12705:468::-;12770:6;12778;12827:2;12815:9;12806:7;12802:23;12798:32;12795:119;;;12833:79;;:::i;:::-;12795:119;12953:1;12978:53;13023:7;13014:6;13003:9;12999:22;12978:53;:::i;:::-;12968:63;;12924:117;13080:2;13106:50;13148:7;13139:6;13128:9;13124:22;13106:50;:::i;:::-;13096:60;;13051:115;12705:468;;;;;:::o;13179:307::-;13240:4;13330:18;13322:6;13319:30;13316:56;;;13352:18;;:::i;:::-;13316:56;13390:29;13412:6;13390:29;:::i;:::-;13382:37;;13474:4;13468;13464:15;13456:23;;13179:307;;;:::o;13492:410::-;13569:5;13594:65;13610:48;13651:6;13610:48;:::i;:::-;13594:65;:::i;:::-;13585:74;;13682:6;13675:5;13668:21;13720:4;13713:5;13709:16;13758:3;13749:6;13744:3;13740:16;13737:25;13734:112;;;13765:79;;:::i;:::-;13734:112;13855:41;13889:6;13884:3;13879;13855:41;:::i;:::-;13575:327;13492:410;;;;;:::o;13921:338::-;13976:5;14025:3;14018:4;14010:6;14006:17;14002:27;13992:122;;14033:79;;:::i;:::-;13992:122;14150:6;14137:20;14175:78;14249:3;14241:6;14234:4;14226:6;14222:17;14175:78;:::i;:::-;14166:87;;13982:277;13921:338;;;;:::o;14265:943::-;14360:6;14368;14376;14384;14433:3;14421:9;14412:7;14408:23;14404:33;14401:120;;;14440:79;;:::i;:::-;14401:120;14560:1;14585:53;14630:7;14621:6;14610:9;14606:22;14585:53;:::i;:::-;14575:63;;14531:117;14687:2;14713:53;14758:7;14749:6;14738:9;14734:22;14713:53;:::i;:::-;14703:63;;14658:118;14815:2;14841:53;14886:7;14877:6;14866:9;14862:22;14841:53;:::i;:::-;14831:63;;14786:118;14971:2;14960:9;14956:18;14943:32;15002:18;14994:6;14991:30;14988:117;;;15024:79;;:::i;:::-;14988:117;15129:62;15183:7;15174:6;15163:9;15159:22;15129:62;:::i;:::-;15119:72;;14914:287;14265:943;;;;;;;:::o;15214:474::-;15282:6;15290;15339:2;15327:9;15318:7;15314:23;15310:32;15307:119;;;15345:79;;:::i;:::-;15307:119;15465:1;15490:53;15535:7;15526:6;15515:9;15511:22;15490:53;:::i;:::-;15480:63;;15436:117;15592:2;15618:53;15663:7;15654:6;15643:9;15639:22;15618:53;:::i;:::-;15608:63;;15563:118;15214:474;;;;;:::o;15694:180::-;15742:77;15739:1;15732:88;15839:4;15836:1;15829:15;15863:4;15860:1;15853:15;15880:320;15924:6;15961:1;15955:4;15951:12;15941:22;;16008:1;16002:4;15998:12;16029:18;16019:81;;16085:4;16077:6;16073:17;16063:27;;16019:81;16147:2;16139:6;16136:14;16116:18;16113:38;16110:84;;16166:18;;:::i;:::-;16110:84;15931:269;15880:320;;;:::o;16206:168::-;16346:20;16342:1;16334:6;16330:14;16323:44;16206:168;:::o;16380:366::-;16522:3;16543:67;16607:2;16602:3;16543:67;:::i;:::-;16536:74;;16619:93;16708:3;16619:93;:::i;:::-;16737:2;16732:3;16728:12;16721:19;;16380:366;;;:::o;16752:419::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:180::-;17225:77;17222:1;17215:88;17322:4;17319:1;17312:15;17346:4;17343:1;17336:15;17363:305;17403:3;17422:20;17440:1;17422:20;:::i;:::-;17417:25;;17456:20;17474:1;17456:20;:::i;:::-;17451:25;;17610:1;17542:66;17538:74;17535:1;17532:81;17529:107;;;17616:18;;:::i;:::-;17529:107;17660:1;17657;17653:9;17646:16;;17363:305;;;;:::o;17674:171::-;17814:23;17810:1;17802:6;17798:14;17791:47;17674:171;:::o;17851:366::-;17993:3;18014:67;18078:2;18073:3;18014:67;:::i;:::-;18007:74;;18090:93;18179:3;18090:93;:::i;:::-;18208:2;18203:3;18199:12;18192:19;;17851:366;;;:::o;18223:419::-;18389:4;18427:2;18416:9;18412:18;18404:26;;18476:9;18470:4;18466:20;18462:1;18451:9;18447:17;18440:47;18504:131;18630:4;18504:131;:::i;:::-;18496:139;;18223:419;;;:::o;18648:163::-;18788:15;18784:1;18776:6;18772:14;18765:39;18648:163;:::o;18817:366::-;18959:3;18980:67;19044:2;19039:3;18980:67;:::i;:::-;18973:74;;19056:93;19145:3;19056:93;:::i;:::-;19174:2;19169:3;19165:12;19158:19;;18817:366;;;:::o;19189:419::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:175::-;19754:27;19750:1;19742:6;19738:14;19731:51;19614:175;:::o;19795:366::-;19937:3;19958:67;20022:2;20017:3;19958:67;:::i;:::-;19951:74;;20034:93;20123:3;20034:93;:::i;:::-;20152:2;20147:3;20143:12;20136:19;;19795:366;;;:::o;20167:419::-;20333:4;20371:2;20360:9;20356:18;20348:26;;20420:9;20414:4;20410:20;20406:1;20395:9;20391:17;20384:47;20448:131;20574:4;20448:131;:::i;:::-;20440:139;;20167:419;;;:::o;20592:94::-;20625:8;20673:5;20669:2;20665:14;20644:35;;20592:94;;;:::o;20692:::-;20731:7;20760:20;20774:5;20760:20;:::i;:::-;20749:31;;20692:94;;;:::o;20792:100::-;20831:7;20860:26;20880:5;20860:26;:::i;:::-;20849:37;;20792:100;;;:::o;20898:157::-;21003:45;21023:24;21041:5;21023:24;:::i;:::-;21003:45;:::i;:::-;20998:3;20991:58;20898:157;;:::o;21061:256::-;21173:3;21188:75;21259:3;21250:6;21188:75;:::i;:::-;21288:2;21283:3;21279:12;21272:19;;21308:3;21301:10;;21061:256;;;;:::o;21323:221::-;21463:34;21459:1;21451:6;21447:14;21440:58;21532:4;21527:2;21519:6;21515:15;21508:29;21323:221;:::o;21550:366::-;21692:3;21713:67;21777:2;21772:3;21713:67;:::i;:::-;21706:74;;21789:93;21878:3;21789:93;:::i;:::-;21907:2;21902:3;21898:12;21891:19;;21550:366;;;:::o;21922:419::-;22088:4;22126:2;22115:9;22111:18;22103:26;;22175:9;22169:4;22165:20;22161:1;22150:9;22146:17;22139:47;22203:131;22329:4;22203:131;:::i;:::-;22195:139;;21922:419;;;:::o;22347:147::-;22448:11;22485:3;22470:18;;22347:147;;;;:::o;22500:114::-;;:::o;22620:398::-;22779:3;22800:83;22881:1;22876:3;22800:83;:::i;:::-;22793:90;;22892:93;22981:3;22892:93;:::i;:::-;23010:1;23005:3;23001:11;22994:18;;22620:398;;;:::o;23024:379::-;23208:3;23230:147;23373:3;23230:147;:::i;:::-;23223:154;;23394:3;23387:10;;23024:379;;;:::o;23409:245::-;23549:34;23545:1;23537:6;23533:14;23526:58;23618:28;23613:2;23605:6;23601:15;23594:53;23409:245;:::o;23660:366::-;23802:3;23823:67;23887:2;23882:3;23823:67;:::i;:::-;23816:74;;23899:93;23988:3;23899:93;:::i;:::-;24017:2;24012:3;24008:12;24001:19;;23660:366;;;:::o;24032:419::-;24198:4;24236:2;24225:9;24221:18;24213:26;;24285:9;24279:4;24275:20;24271:1;24260:9;24256:17;24249:47;24313:131;24439:4;24313:131;:::i;:::-;24305:139;;24032:419;;;:::o;24457:141::-;24506:4;24529:3;24521:11;;24552:3;24549:1;24542:14;24586:4;24583:1;24573:18;24565:26;;24457:141;;;:::o;24604:93::-;24641:6;24688:2;24683;24676:5;24672:14;24668:23;24658:33;;24604:93;;;:::o;24703:107::-;24747:8;24797:5;24791:4;24787:16;24766:37;;24703:107;;;;:::o;24816:393::-;24885:6;24935:1;24923:10;24919:18;24958:97;24988:66;24977:9;24958:97;:::i;:::-;25076:39;25106:8;25095:9;25076:39;:::i;:::-;25064:51;;25148:4;25144:9;25137:5;25133:21;25124:30;;25197:4;25187:8;25183:19;25176:5;25173:30;25163:40;;24892:317;;24816:393;;;;;:::o;25215:60::-;25243:3;25264:5;25257:12;;25215:60;;;:::o;25281:142::-;25331:9;25364:53;25382:34;25391:24;25409:5;25391:24;:::i;:::-;25382:34;:::i;:::-;25364:53;:::i;:::-;25351:66;;25281:142;;;:::o;25429:75::-;25472:3;25493:5;25486:12;;25429:75;;;:::o;25510:269::-;25620:39;25651:7;25620:39;:::i;:::-;25681:91;25730:41;25754:16;25730:41;:::i;:::-;25722:6;25715:4;25709:11;25681:91;:::i;:::-;25675:4;25668:105;25586:193;25510:269;;;:::o;25785:73::-;25830:3;25785:73;:::o;25864:189::-;25941:32;;:::i;:::-;25982:65;26040:6;26032;26026:4;25982:65;:::i;:::-;25917:136;25864:189;;:::o;26059:186::-;26119:120;26136:3;26129:5;26126:14;26119:120;;;26190:39;26227:1;26220:5;26190:39;:::i;:::-;26163:1;26156:5;26152:13;26143:22;;26119:120;;;26059:186;;:::o;26251:543::-;26352:2;26347:3;26344:11;26341:446;;;26386:38;26418:5;26386:38;:::i;:::-;26470:29;26488:10;26470:29;:::i;:::-;26460:8;26456:44;26653:2;26641:10;26638:18;26635:49;;;26674:8;26659:23;;26635:49;26697:80;26753:22;26771:3;26753:22;:::i;:::-;26743:8;26739:37;26726:11;26697:80;:::i;:::-;26356:431;;26341:446;26251:543;;;:::o;26800:117::-;26854:8;26904:5;26898:4;26894:16;26873:37;;26800:117;;;;:::o;26923:169::-;26967:6;27000:51;27048:1;27044:6;27036:5;27033:1;27029:13;27000:51;:::i;:::-;26996:56;27081:4;27075;27071:15;27061:25;;26974:118;26923:169;;;;:::o;27097:295::-;27173:4;27319:29;27344:3;27338:4;27319:29;:::i;:::-;27311:37;;27381:3;27378:1;27374:11;27368:4;27365:21;27357:29;;27097:295;;;;:::o;27397:1395::-;27514:37;27547:3;27514:37;:::i;:::-;27616:18;27608:6;27605:30;27602:56;;;27638:18;;:::i;:::-;27602:56;27682:38;27714:4;27708:11;27682:38;:::i;:::-;27767:67;27827:6;27819;27813:4;27767:67;:::i;:::-;27861:1;27885:4;27872:17;;27917:2;27909:6;27906:14;27934:1;27929:618;;;;28591:1;28608:6;28605:77;;;28657:9;28652:3;28648:19;28642:26;28633:35;;28605:77;28708:67;28768:6;28761:5;28708:67;:::i;:::-;28702:4;28695:81;28564:222;27899:887;;27929:618;27981:4;27977:9;27969:6;27965:22;28015:37;28047:4;28015:37;:::i;:::-;28074:1;28088:208;28102:7;28099:1;28096:14;28088:208;;;28181:9;28176:3;28172:19;28166:26;28158:6;28151:42;28232:1;28224:6;28220:14;28210:24;;28279:2;28268:9;28264:18;28251:31;;28125:4;28122:1;28118:12;28113:17;;28088:208;;;28324:6;28315:7;28312:19;28309:179;;;28382:9;28377:3;28373:19;28367:26;28425:48;28467:4;28459:6;28455:17;28444:9;28425:48;:::i;:::-;28417:6;28410:64;28332:156;28309:179;28534:1;28530;28522:6;28518:14;28514:22;28508:4;28501:36;27936:611;;;27899:887;;27489:1303;;;27397:1395;;:::o;28798:148::-;28900:11;28937:3;28922:18;;28798:148;;;;:::o;28952:377::-;29058:3;29086:39;29119:5;29086:39;:::i;:::-;29141:89;29223:6;29218:3;29141:89;:::i;:::-;29134:96;;29239:52;29284:6;29279:3;29272:4;29265:5;29261:16;29239:52;:::i;:::-;29316:6;29311:3;29307:16;29300:23;;29062:267;28952:377;;;;:::o;29335:155::-;29475:7;29471:1;29463:6;29459:14;29452:31;29335:155;:::o;29496:400::-;29656:3;29677:84;29759:1;29754:3;29677:84;:::i;:::-;29670:91;;29770:93;29859:3;29770:93;:::i;:::-;29888:1;29883:3;29879:11;29872:18;;29496:400;;;:::o;29902:701::-;30183:3;30205:95;30296:3;30287:6;30205:95;:::i;:::-;30198:102;;30317:95;30408:3;30399:6;30317:95;:::i;:::-;30310:102;;30429:148;30573:3;30429:148;:::i;:::-;30422:155;;30594:3;30587:10;;29902:701;;;;;:::o;30609:275::-;30741:3;30763:95;30854:3;30845:6;30763:95;:::i;:::-;30756:102;;30875:3;30868:10;;30609:275;;;;:::o;30890:225::-;31030:34;31026:1;31018:6;31014:14;31007:58;31099:8;31094:2;31086:6;31082:15;31075:33;30890:225;:::o;31121:366::-;31263:3;31284:67;31348:2;31343:3;31284:67;:::i;:::-;31277:74;;31360:93;31449:3;31360:93;:::i;:::-;31478:2;31473:3;31469:12;31462:19;;31121:366;;;:::o;31493:419::-;31659:4;31697:2;31686:9;31682:18;31674:26;;31746:9;31740:4;31736:20;31732:1;31721:9;31717:17;31710:47;31774:131;31900:4;31774:131;:::i;:::-;31766:139;;31493:419;;;:::o;31918:182::-;32058:34;32054:1;32046:6;32042:14;32035:58;31918:182;:::o;32106:366::-;32248:3;32269:67;32333:2;32328:3;32269:67;:::i;:::-;32262:74;;32345:93;32434:3;32345:93;:::i;:::-;32463:2;32458:3;32454:12;32447:19;;32106:366;;;:::o;32478:419::-;32644:4;32682:2;32671:9;32667:18;32659:26;;32731:9;32725:4;32721:20;32717:1;32706:9;32702:17;32695:47;32759:131;32885:4;32759:131;:::i;:::-;32751:139;;32478:419;;;:::o;32903:98::-;32954:6;32988:5;32982:12;32972:22;;32903:98;;;:::o;33007:168::-;33090:11;33124:6;33119:3;33112:19;33164:4;33159:3;33155:14;33140:29;;33007:168;;;;:::o;33181:360::-;33267:3;33295:38;33327:5;33295:38;:::i;:::-;33349:70;33412:6;33407:3;33349:70;:::i;:::-;33342:77;;33428:52;33473:6;33468:3;33461:4;33454:5;33450:16;33428:52;:::i;:::-;33505:29;33527:6;33505:29;:::i;:::-;33500:3;33496:39;33489:46;;33271:270;33181:360;;;;:::o;33547:640::-;33742:4;33780:3;33769:9;33765:19;33757:27;;33794:71;33862:1;33851:9;33847:17;33838:6;33794:71;:::i;:::-;33875:72;33943:2;33932:9;33928:18;33919:6;33875:72;:::i;:::-;33957;34025:2;34014:9;34010:18;34001:6;33957:72;:::i;:::-;34076:9;34070:4;34066:20;34061:2;34050:9;34046:18;34039:48;34104:76;34175:4;34166:6;34104:76;:::i;:::-;34096:84;;33547:640;;;;;;;:::o;34193:141::-;34249:5;34280:6;34274:13;34265:22;;34296:32;34322:5;34296:32;:::i;:::-;34193:141;;;;:::o;34340:349::-;34409:6;34458:2;34446:9;34437:7;34433:23;34429:32;34426:119;;;34464:79;;:::i;:::-;34426:119;34584:1;34609:63;34664:7;34655:6;34644:9;34640:22;34609:63;:::i;:::-;34599:73;;34555:127;34340:349;;;;:::o;34695:233::-;34734:3;34757:24;34775:5;34757:24;:::i;:::-;34748:33;;34803:66;34796:5;34793:77;34790:103;;34873:18;;:::i;:::-;34790:103;34920:1;34913:5;34909:13;34902:20;;34695:233;;;:::o;34934:180::-;34982:77;34979:1;34972:88;35079:4;35076:1;35069:15;35103:4;35100:1;35093:15;35120:185;35160:1;35177:20;35195:1;35177:20;:::i;:::-;35172:25;;35211:20;35229:1;35211:20;:::i;:::-;35206:25;;35250:1;35240:35;;35255:18;;:::i;:::-;35240:35;35297:1;35294;35290:9;35285:14;;35120:185;;;;:::o;35311:191::-;35351:4;35371:20;35389:1;35371:20;:::i;:::-;35366:25;;35405:20;35423:1;35405:20;:::i;:::-;35400:25;;35444:1;35441;35438:8;35435:34;;;35449:18;;:::i;:::-;35435:34;35494:1;35491;35487:9;35479:17;;35311:191;;;;:::o;35508:176::-;35540:1;35557:20;35575:1;35557:20;:::i;:::-;35552:25;;35591:20;35609:1;35591:20;:::i;:::-;35586:25;;35630:1;35620:35;;35635:18;;:::i;:::-;35620:35;35676:1;35673;35669:9;35664:14;;35508:176;;;;:::o;35690:180::-;35738:77;35735:1;35728:88;35835:4;35832:1;35825:15;35859:4;35856:1;35849:15

Swarm Source

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