ETH Price: $3,100.37 (+0.61%)
Gas: 3 Gwei

Token

Christmas Vibes By Tukka (Christmas Vibes By Tukka)
 

Overview

Max Total Supply

999 Christmas Vibes By Tukka

Holders

949

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Christmas Vibes By Tukka
0x1008d3fbd618d32583e05371dbfc939ac4073956
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:
ChristmasVibesByTukka

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-26
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/tukka.sol



pragma solidity ^0.8.14;





contract ChristmasVibesByTukka is ERC721A, Ownable {
    enum SaleStatus{ PAUSED, PRESALE, PUBLIC }

    uint public constant maxSupply = 999;
    uint public constant FIRSTXFREE = 1;
    uint public constant TOKENS_PER_TRAN_LIMIT = 25;
    uint public constant TOKENS_PER_PERSON_PUB_LIMIT = 50;
    
    
    uint public MINT_PRICE = 0.002 ether;
    SaleStatus public saleStatus = SaleStatus.PAUSED;
    
    string private _baseURL = "ipfs://bafybeigeuvxsvtqw4v22jla2qooxc636lbvcdq6hg2j6nfp7i6kwt3wq64";
    
    mapping(address => uint) private _mintedCount;
    

    constructor() ERC721A("Christmas Vibes By Tukka", "Christmas Vibes By Tukka"){}
    
    
    
    
    
    
    /// @notice Set base metadata URL
    function setBaseURL(string calldata url) external onlyOwner {
        _baseURL = url;
    }

    /// @dev override base uri. It will be combined with token ID
    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

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

    /// @notice Update current sale stage
    function setSaleStatus(SaleStatus status) external onlyOwner {
        saleStatus = status;
    }

    /// @notice Update public mint price
    function setPublicMintPrice(uint price) external onlyOwner {
        MINT_PRICE = price;
    }

    /// @notice Withdraw contract balance
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No balance");
        payable(owner()).transfer(balance);
    }

    /// @notice Allows owner to mint tokens to a specified address
    function airdrop(address to, uint count) external onlyOwner {
        require(_totalMinted() + count <= maxSupply, "Request exceeds collection supply");
        _safeMint(to, count);
    }

    /// @notice Get token URI. In case of delayed reveal we give user the json of the placeholer metadata.
    /// @param tokenId token ID
    function tokenURI(uint tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = _baseURI();

        return bytes(baseURI).length > 0 
            ? string(abi.encodePacked(baseURI, "/", _toString(tokenId), ".json")) 
            : "";
    }
    
    function calcTotal(uint count) public view returns(uint) {
        require(saleStatus != SaleStatus.PAUSED, "contract: Sales are off");

        
        require(msg.sender != address(0));
        uint totalMintedCount = _mintedCount[msg.sender];

        if(FIRSTXFREE > totalMintedCount) {
            uint freeLeft = FIRSTXFREE - totalMintedCount;
            if(count > freeLeft) {
                // just pay the difference
                count -= freeLeft;
            }
            else {
                count = 0;
            }
        }

        
        uint price = MINT_PRICE;

        return count * price;
    }
    
    
    
    /// @notice Mints specified amount of tokens
    /// @param count How many tokens to mint
    function mint(uint count) external payable {
        require(saleStatus != SaleStatus.PAUSED, "contract: Sales are off");
        require(_totalMinted() + count <= maxSupply, "contract: Number of requested tokens will exceed collection supply");
        require(count <= TOKENS_PER_TRAN_LIMIT, "contract: Number of requested tokens exceeds allowance (100)");
        require(_mintedCount[msg.sender] + count <= TOKENS_PER_PERSON_PUB_LIMIT, "contract: Number of requested tokens exceeds allowance (500)");
        require(msg.value >= calcTotal(count), "contract: Ether value sent is not sufficient");
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FIRSTXFREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_PERSON_PUB_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_TRAN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"calcTotal","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"enum ChristmasVibesByTukka.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ChristmasVibesByTukka.SaleStatus","name":"status","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266071afd498d00006009556000600a60006101000a81548160ff02191690836002811115620000385762000037620002e0565b5b0217905550604051806080016040528060428152602001620033cd60429139600b90805190602001906200006e92919062000230565b503480156200007c57600080fd5b506040518060400160405280601881526020017f4368726973746d61732056696265732042792054756b6b6100000000000000008152506040518060400160405280601881526020017f4368726973746d61732056696265732042792054756b6b61000000000000000081525081600290805190602001906200010192919062000230565b5080600390805190602001906200011a92919062000230565b506200012b6200015960201b60201c565b600081905550505062000153620001476200016260201b60201c565b6200016a60201b60201c565b62000373565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023e906200033e565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035757607f821691505b6020821081036200036d576200036c6200030f565b5b50919050565b61304a80620003836000396000f3fe6080604052600436106101cd5760003560e01c80638ba4cc3c116100f7578063b3f8d3cb11610095578063d5abeb0111610064578063d5abeb011461061f578063e985e9c51461064a578063f2fde38b14610687578063f9020e33146106b0576101cd565b8063b3f8d3cb14610570578063b88d4fde1461059b578063c002d23d146105b7578063c87b56dd146105e2576101cd565b806395d89b41116100d157806395d89b41146104c3578063a0712d68146104ee578063a22cb4651461050a578063af6128c214610533576101cd565b80638ba4cc3c146104445780638da5cb5b1461046d57806395c7077814610498576101cd565b80633ccfd60b1161016f5780635d82cf6e1161013e5780635d82cf6e1461038a5780636352211e146103b357806370a08231146103f0578063715018a61461042d576101cd565b80633ccfd60b1461030557806342842e0e1461031c5780634891ad881461033857806349f2553a14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633661edfa146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612060565b6106db565b60405161020691906120a8565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b604051610231919061215c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906121b4565b6107ff565b60405161026e9190612222565b60405180910390f35b610291600480360381019061028c9190612269565b61087e565b005b34801561029f57600080fd5b506102a86109c2565b6040516102b591906122b8565b60405180910390f35b6102d860048036038101906102d391906122d3565b6109d9565b005b3480156102e657600080fd5b506102ef610cfb565b6040516102fc91906122b8565b60405180910390f35b34801561031157600080fd5b5061031a610d00565b005b610336600480360381019061033191906122d3565b610da1565b005b34801561034457600080fd5b5061035f600480360381019061035a919061234b565b610dc1565b005b34801561036d57600080fd5b50610388600480360381019061038391906123dd565b610df6565b005b34801561039657600080fd5b506103b160048036038101906103ac91906121b4565b610e14565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906121b4565b610e26565b6040516103e79190612222565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061242a565b610e38565b60405161042491906122b8565b60405180910390f35b34801561043957600080fd5b50610442610ef0565b005b34801561045057600080fd5b5061046b60048036038101906104669190612269565b610f04565b005b34801561047957600080fd5b50610482610f71565b60405161048f9190612222565b60405180910390f35b3480156104a457600080fd5b506104ad610f9b565b6040516104ba91906122b8565b60405180910390f35b3480156104cf57600080fd5b506104d8610fa0565b6040516104e5919061215c565b60405180910390f35b610508600480360381019061050391906121b4565b611032565b005b34801561051657600080fd5b50610531600480360381019061052c9190612483565b61127f565b005b34801561053f57600080fd5b5061055a600480360381019061055591906121b4565b61138a565b60405161056791906122b8565b60405180910390f35b34801561057c57600080fd5b506105856114d6565b60405161059291906122b8565b60405180910390f35b6105b560048036038101906105b091906125f3565b6114db565b005b3480156105c357600080fd5b506105cc61154e565b6040516105d991906122b8565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906121b4565b611554565b604051610616919061215c565b60405180910390f35b34801561062b57600080fd5b506106346115fb565b60405161064191906122b8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612676565b611601565b60405161067e91906120a8565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061242a565b611695565b005b3480156106bc57600080fd5b506106c5611718565b6040516106d2919061272d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c90612777565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890612777565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261172b565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982610e26565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa61178a565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d161178a565b611601565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cc611792565b6001546000540303905090565b60006109e48261179b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5784611867565b91509150610a6d8187610a6861178a565b61188e565b610ab957610a8286610a7d61178a565b611601565b610ab8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c86868660016118d2565b8015610b3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0585610be18888876118d8565b7c020000000000000000000000000000000000000000000000000000000017611900565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c8b5760006001850190506000600460008381526020019081526020016000205403610c89576000548114610c88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf3868686600161192b565b505050505050565b603281565b610d08611931565b600047905060008111610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906127f4565b60405180910390fd5b610d58610f71565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9d573d6000803e3d6000fd5b5050565b610dbc838383604051806020016040528060008152506114db565b505050565b610dc9611931565b80600a60006101000a81548160ff02191690836002811115610dee57610ded6126b6565b5b021790555050565b610dfe611931565b8181600b9190610e0f929190611f51565b505050565b610e1c611931565b8060098190555050565b6000610e318261179b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef8611931565b610f0260006119af565b565b610f0c611931565b6103e781610f18611a75565b610f229190612843565b1115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a9061290b565b60405180910390fd5b610f6d8282611a88565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601981565b606060038054610faf90612777565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb90612777565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b5050505050905090565b60006002811115611046576110456126b6565b5b600a60009054906101000a900460ff166002811115611068576110676126b6565b5b036110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612977565b60405180910390fd5b6103e7816110b4611a75565b6110be9190612843565b11156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612a2f565b60405180910390fd5b6019811115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612ac1565b60405180910390fd5b603281600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190612843565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612b53565b60405180910390fd5b6111da8161138a565b34101561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390612be5565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126b9190612843565b9250508190555061127c3382611a88565b50565b806007600061128c61178a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133961178a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137e91906120a8565b60405180910390a35050565b600080600281111561139f5761139e6126b6565b5b600a60009054906101000a900460ff1660028111156113c1576113c06126b6565b5b03611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612977565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361143a57600080fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600111156114ba5760008160016114969190612c05565b9050808411156114b35780846114ac9190612c05565b93506114b8565b600093505b505b6000600954905080846114cd9190612c39565b92505050919050565b600181565b6114e68484846109d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115485761151184848484611aa6565b611547576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061155f8261172b565b61159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612d05565b60405180910390fd5b60006115a8611bf6565b905060008151116115c857604051806020016040528060008152506115f3565b806115d284611c88565b6040516020016115e3929190612df9565b6040516020818303038152906040525b915050919050565b6103e781565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169d611931565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390612ea5565b60405180910390fd5b611715816119af565b50565b600a60009054906101000a900460ff1681565b600081611736611792565b11158015611745575060005482105b8015611783575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117aa611792565b116118305760005481101561182f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361182d575b600081036118235760046000836001900393508381526020019081526020016000205490506117f9565b8092505050611862565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ef868684611cd8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611939611ce1565b73ffffffffffffffffffffffffffffffffffffffff16611957610f71565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490612f11565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a7f611792565b60005403905090565b611aa2828260405180602001604052806000815250611ce9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc61178a565b8786866040518563ffffffff1660e01b8152600401611aee9493929190612f86565b6020604051808303816000875af1925050508015611b2a57506040513d601f19601f82011682018060405250810190611b279190612fe7565b60015b611ba3573d8060008114611b5a576040519150601f19603f3d011682016040523d82523d6000602084013e611b5f565b606091505b506000815103611b9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c0590612777565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3190612777565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cc357600184039350600a81066030018453600a8104905080611ca1575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611cf38383611d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8157600080549050600083820390505b611d336000868380600101945086611aa6565b611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d20578160005414611d7e57600080fd5b50505b505050565b60008054905060008203611dc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd360008483856118d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4a83611e3b60008660006118d8565b611e4485611f41565b17611900565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eeb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb0565b5060008203611f26576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3c600084838561192b565b505050565b60006001821460e11b9050919050565b828054611f5d90612777565b90600052602060002090601f016020900481019282611f7f5760008555611fc6565b82601f10611f9857803560ff1916838001178555611fc6565b82800160010185558215611fc6579182015b82811115611fc5578235825591602001919060010190611faa565b5b509050611fd39190611fd7565b5090565b5b80821115611ff0576000816000905550600101611fd8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61203d81612008565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611ffe565b5b60006120848482850161204b565b91505092915050565b60008115159050919050565b6120a28161208d565b82525050565b60006020820190506120bd6000830184612099565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120fd5780820151818401526020810190506120e2565b8381111561210c576000848401525b50505050565b6000601f19601f8301169050919050565b600061212e826120c3565b61213881856120ce565b93506121488185602086016120df565b61215181612112565b840191505092915050565b600060208201905081810360008301526121768184612123565b905092915050565b6000819050919050565b6121918161217e565b811461219c57600080fd5b50565b6000813590506121ae81612188565b92915050565b6000602082840312156121ca576121c9611ffe565b5b60006121d88482850161219f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061220c826121e1565b9050919050565b61221c81612201565b82525050565b60006020820190506122376000830184612213565b92915050565b61224681612201565b811461225157600080fd5b50565b6000813590506122638161223d565b92915050565b600080604083850312156122805761227f611ffe565b5b600061228e85828601612254565b925050602061229f8582860161219f565b9150509250929050565b6122b28161217e565b82525050565b60006020820190506122cd60008301846122a9565b92915050565b6000806000606084860312156122ec576122eb611ffe565b5b60006122fa86828701612254565b935050602061230b86828701612254565b925050604061231c8682870161219f565b9150509250925092565b6003811061233357600080fd5b50565b60008135905061234581612326565b92915050565b60006020828403121561236157612360611ffe565b5b600061236f84828501612336565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261239d5761239c612378565b5b8235905067ffffffffffffffff8111156123ba576123b961237d565b5b6020830191508360018202830111156123d6576123d5612382565b5b9250929050565b600080602083850312156123f4576123f3611ffe565b5b600083013567ffffffffffffffff81111561241257612411612003565b5b61241e85828601612387565b92509250509250929050565b6000602082840312156124405761243f611ffe565b5b600061244e84828501612254565b91505092915050565b6124608161208d565b811461246b57600080fd5b50565b60008135905061247d81612457565b92915050565b6000806040838503121561249a57612499611ffe565b5b60006124a885828601612254565b92505060206124b98582860161246e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61250082612112565b810181811067ffffffffffffffff8211171561251f5761251e6124c8565b5b80604052505050565b6000612532611ff4565b905061253e82826124f7565b919050565b600067ffffffffffffffff82111561255e5761255d6124c8565b5b61256782612112565b9050602081019050919050565b82818337600083830152505050565b600061259661259184612543565b612528565b9050828152602081018484840111156125b2576125b16124c3565b5b6125bd848285612574565b509392505050565b600082601f8301126125da576125d9612378565b5b81356125ea848260208601612583565b91505092915050565b6000806000806080858703121561260d5761260c611ffe565b5b600061261b87828801612254565b945050602061262c87828801612254565b935050604061263d8782880161219f565b925050606085013567ffffffffffffffff81111561265e5761265d612003565b5b61266a878288016125c5565b91505092959194509250565b6000806040838503121561268d5761268c611ffe565b5b600061269b85828601612254565b92505060206126ac85828601612254565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106126f6576126f56126b6565b5b50565b6000819050612707826126e5565b919050565b6000612717826126f9565b9050919050565b6127278161270c565b82525050565b6000602082019050612742600083018461271e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278f57607f821691505b6020821081036127a2576127a1612748565b5b50919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b60006127de600a836120ce565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061284e8261217e565b91506128598361217e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288e5761288d612814565b5b828201905092915050565b7f52657175657374206578636565647320636f6c6c656374696f6e20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f56021836120ce565b915061290082612899565b604082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f636f6e74726163743a2053616c657320617265206f6666000000000000000000600082015250565b60006129616017836120ce565b915061296c8261292b565b602082019050919050565b6000602082019050818103600083015261299081612954565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e732077696c6c2065786365656420636f6c6c656374696f6e207375707060208201527f6c79000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a196042836120ce565b9150612a2482612997565b606082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e73206578636565647320616c6c6f77616e636520283130302900000000602082015250565b6000612aab603c836120ce565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e73206578636565647320616c6c6f77616e636520283530302900000000602082015250565b6000612b3d603c836120ce565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f636f6e74726163743a2045746865722076616c75652073656e74206973206e6f60008201527f742073756666696369656e740000000000000000000000000000000000000000602082015250565b6000612bcf602c836120ce565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b6000612c108261217e565b9150612c1b8361217e565b925082821015612c2e57612c2d612814565b5b828203905092915050565b6000612c448261217e565b9150612c4f8361217e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8857612c87612814565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cef602f836120ce565b9150612cfa82612c93565b604082019050919050565b60006020820190508181036000830152612d1e81612ce2565b9050919050565b600081905092915050565b6000612d3b826120c3565b612d458185612d25565b9350612d558185602086016120df565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d97600183612d25565b9150612da282612d61565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612de3600583612d25565b9150612dee82612dad565b600582019050919050565b6000612e058285612d30565b9150612e1082612d8a565b9150612e1c8284612d30565b9150612e2782612dd6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e8f6026836120ce565b9150612e9a82612e33565b604082019050919050565b60006020820190508181036000830152612ebe81612e82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612efb6020836120ce565b9150612f0682612ec5565b602082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f5882612f31565b612f628185612f3c565b9350612f728185602086016120df565b612f7b81612112565b840191505092915050565b6000608082019050612f9b6000830187612213565b612fa86020830186612213565b612fb560408301856122a9565b8181036060830152612fc78184612f4d565b905095945050505050565b600081519050612fe181612034565b92915050565b600060208284031215612ffd57612ffc611ffe565b5b600061300b84828501612fd2565b9150509291505056fea2646970667358221220302652dd8d2dfdcbd9354c7ec2677eb053fe7f738816aaf6b629200e8f8912d264736f6c634300080e0033697066733a2f2f6261667962656967657576787376747177347632326a6c6132716f6f78633633366c6276636471366867326a366e66703769366b77743377713634

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638ba4cc3c116100f7578063b3f8d3cb11610095578063d5abeb0111610064578063d5abeb011461061f578063e985e9c51461064a578063f2fde38b14610687578063f9020e33146106b0576101cd565b8063b3f8d3cb14610570578063b88d4fde1461059b578063c002d23d146105b7578063c87b56dd146105e2576101cd565b806395d89b41116100d157806395d89b41146104c3578063a0712d68146104ee578063a22cb4651461050a578063af6128c214610533576101cd565b80638ba4cc3c146104445780638da5cb5b1461046d57806395c7077814610498576101cd565b80633ccfd60b1161016f5780635d82cf6e1161013e5780635d82cf6e1461038a5780636352211e146103b357806370a08231146103f0578063715018a61461042d576101cd565b80633ccfd60b1461030557806342842e0e1461031c5780634891ad881461033857806349f2553a14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633661edfa146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612060565b6106db565b60405161020691906120a8565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b604051610231919061215c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906121b4565b6107ff565b60405161026e9190612222565b60405180910390f35b610291600480360381019061028c9190612269565b61087e565b005b34801561029f57600080fd5b506102a86109c2565b6040516102b591906122b8565b60405180910390f35b6102d860048036038101906102d391906122d3565b6109d9565b005b3480156102e657600080fd5b506102ef610cfb565b6040516102fc91906122b8565b60405180910390f35b34801561031157600080fd5b5061031a610d00565b005b610336600480360381019061033191906122d3565b610da1565b005b34801561034457600080fd5b5061035f600480360381019061035a919061234b565b610dc1565b005b34801561036d57600080fd5b50610388600480360381019061038391906123dd565b610df6565b005b34801561039657600080fd5b506103b160048036038101906103ac91906121b4565b610e14565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906121b4565b610e26565b6040516103e79190612222565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061242a565b610e38565b60405161042491906122b8565b60405180910390f35b34801561043957600080fd5b50610442610ef0565b005b34801561045057600080fd5b5061046b60048036038101906104669190612269565b610f04565b005b34801561047957600080fd5b50610482610f71565b60405161048f9190612222565b60405180910390f35b3480156104a457600080fd5b506104ad610f9b565b6040516104ba91906122b8565b60405180910390f35b3480156104cf57600080fd5b506104d8610fa0565b6040516104e5919061215c565b60405180910390f35b610508600480360381019061050391906121b4565b611032565b005b34801561051657600080fd5b50610531600480360381019061052c9190612483565b61127f565b005b34801561053f57600080fd5b5061055a600480360381019061055591906121b4565b61138a565b60405161056791906122b8565b60405180910390f35b34801561057c57600080fd5b506105856114d6565b60405161059291906122b8565b60405180910390f35b6105b560048036038101906105b091906125f3565b6114db565b005b3480156105c357600080fd5b506105cc61154e565b6040516105d991906122b8565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906121b4565b611554565b604051610616919061215c565b60405180910390f35b34801561062b57600080fd5b506106346115fb565b60405161064191906122b8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612676565b611601565b60405161067e91906120a8565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061242a565b611695565b005b3480156106bc57600080fd5b506106c5611718565b6040516106d2919061272d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c90612777565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890612777565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261172b565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982610e26565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa61178a565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d161178a565b611601565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cc611792565b6001546000540303905090565b60006109e48261179b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5784611867565b91509150610a6d8187610a6861178a565b61188e565b610ab957610a8286610a7d61178a565b611601565b610ab8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c86868660016118d2565b8015610b3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0585610be18888876118d8565b7c020000000000000000000000000000000000000000000000000000000017611900565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c8b5760006001850190506000600460008381526020019081526020016000205403610c89576000548114610c88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf3868686600161192b565b505050505050565b603281565b610d08611931565b600047905060008111610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906127f4565b60405180910390fd5b610d58610f71565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9d573d6000803e3d6000fd5b5050565b610dbc838383604051806020016040528060008152506114db565b505050565b610dc9611931565b80600a60006101000a81548160ff02191690836002811115610dee57610ded6126b6565b5b021790555050565b610dfe611931565b8181600b9190610e0f929190611f51565b505050565b610e1c611931565b8060098190555050565b6000610e318261179b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef8611931565b610f0260006119af565b565b610f0c611931565b6103e781610f18611a75565b610f229190612843565b1115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a9061290b565b60405180910390fd5b610f6d8282611a88565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601981565b606060038054610faf90612777565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb90612777565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b5050505050905090565b60006002811115611046576110456126b6565b5b600a60009054906101000a900460ff166002811115611068576110676126b6565b5b036110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612977565b60405180910390fd5b6103e7816110b4611a75565b6110be9190612843565b11156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612a2f565b60405180910390fd5b6019811115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612ac1565b60405180910390fd5b603281600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190612843565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612b53565b60405180910390fd5b6111da8161138a565b34101561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390612be5565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126b9190612843565b9250508190555061127c3382611a88565b50565b806007600061128c61178a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133961178a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137e91906120a8565b60405180910390a35050565b600080600281111561139f5761139e6126b6565b5b600a60009054906101000a900460ff1660028111156113c1576113c06126b6565b5b03611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612977565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361143a57600080fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600111156114ba5760008160016114969190612c05565b9050808411156114b35780846114ac9190612c05565b93506114b8565b600093505b505b6000600954905080846114cd9190612c39565b92505050919050565b600181565b6114e68484846109d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115485761151184848484611aa6565b611547576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061155f8261172b565b61159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612d05565b60405180910390fd5b60006115a8611bf6565b905060008151116115c857604051806020016040528060008152506115f3565b806115d284611c88565b6040516020016115e3929190612df9565b6040516020818303038152906040525b915050919050565b6103e781565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169d611931565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390612ea5565b60405180910390fd5b611715816119af565b50565b600a60009054906101000a900460ff1681565b600081611736611792565b11158015611745575060005482105b8015611783575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117aa611792565b116118305760005481101561182f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361182d575b600081036118235760046000836001900393508381526020019081526020016000205490506117f9565b8092505050611862565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ef868684611cd8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611939611ce1565b73ffffffffffffffffffffffffffffffffffffffff16611957610f71565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490612f11565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a7f611792565b60005403905090565b611aa2828260405180602001604052806000815250611ce9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc61178a565b8786866040518563ffffffff1660e01b8152600401611aee9493929190612f86565b6020604051808303816000875af1925050508015611b2a57506040513d601f19601f82011682018060405250810190611b279190612fe7565b60015b611ba3573d8060008114611b5a576040519150601f19603f3d011682016040523d82523d6000602084013e611b5f565b606091505b506000815103611b9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c0590612777565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3190612777565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cc357600184039350600a81066030018453600a8104905080611ca1575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611cf38383611d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8157600080549050600083820390505b611d336000868380600101945086611aa6565b611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d20578160005414611d7e57600080fd5b50505b505050565b60008054905060008203611dc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd360008483856118d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4a83611e3b60008660006118d8565b611e4485611f41565b17611900565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eeb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb0565b5060008203611f26576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3c600084838561192b565b505050565b60006001821460e11b9050919050565b828054611f5d90612777565b90600052602060002090601f016020900481019282611f7f5760008555611fc6565b82601f10611f9857803560ff1916838001178555611fc6565b82800160010185558215611fc6579182015b82811115611fc5578235825591602001919060010190611faa565b5b509050611fd39190611fd7565b5090565b5b80821115611ff0576000816000905550600101611fd8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61203d81612008565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611ffe565b5b60006120848482850161204b565b91505092915050565b60008115159050919050565b6120a28161208d565b82525050565b60006020820190506120bd6000830184612099565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120fd5780820151818401526020810190506120e2565b8381111561210c576000848401525b50505050565b6000601f19601f8301169050919050565b600061212e826120c3565b61213881856120ce565b93506121488185602086016120df565b61215181612112565b840191505092915050565b600060208201905081810360008301526121768184612123565b905092915050565b6000819050919050565b6121918161217e565b811461219c57600080fd5b50565b6000813590506121ae81612188565b92915050565b6000602082840312156121ca576121c9611ffe565b5b60006121d88482850161219f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061220c826121e1565b9050919050565b61221c81612201565b82525050565b60006020820190506122376000830184612213565b92915050565b61224681612201565b811461225157600080fd5b50565b6000813590506122638161223d565b92915050565b600080604083850312156122805761227f611ffe565b5b600061228e85828601612254565b925050602061229f8582860161219f565b9150509250929050565b6122b28161217e565b82525050565b60006020820190506122cd60008301846122a9565b92915050565b6000806000606084860312156122ec576122eb611ffe565b5b60006122fa86828701612254565b935050602061230b86828701612254565b925050604061231c8682870161219f565b9150509250925092565b6003811061233357600080fd5b50565b60008135905061234581612326565b92915050565b60006020828403121561236157612360611ffe565b5b600061236f84828501612336565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261239d5761239c612378565b5b8235905067ffffffffffffffff8111156123ba576123b961237d565b5b6020830191508360018202830111156123d6576123d5612382565b5b9250929050565b600080602083850312156123f4576123f3611ffe565b5b600083013567ffffffffffffffff81111561241257612411612003565b5b61241e85828601612387565b92509250509250929050565b6000602082840312156124405761243f611ffe565b5b600061244e84828501612254565b91505092915050565b6124608161208d565b811461246b57600080fd5b50565b60008135905061247d81612457565b92915050565b6000806040838503121561249a57612499611ffe565b5b60006124a885828601612254565b92505060206124b98582860161246e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61250082612112565b810181811067ffffffffffffffff8211171561251f5761251e6124c8565b5b80604052505050565b6000612532611ff4565b905061253e82826124f7565b919050565b600067ffffffffffffffff82111561255e5761255d6124c8565b5b61256782612112565b9050602081019050919050565b82818337600083830152505050565b600061259661259184612543565b612528565b9050828152602081018484840111156125b2576125b16124c3565b5b6125bd848285612574565b509392505050565b600082601f8301126125da576125d9612378565b5b81356125ea848260208601612583565b91505092915050565b6000806000806080858703121561260d5761260c611ffe565b5b600061261b87828801612254565b945050602061262c87828801612254565b935050604061263d8782880161219f565b925050606085013567ffffffffffffffff81111561265e5761265d612003565b5b61266a878288016125c5565b91505092959194509250565b6000806040838503121561268d5761268c611ffe565b5b600061269b85828601612254565b92505060206126ac85828601612254565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106126f6576126f56126b6565b5b50565b6000819050612707826126e5565b919050565b6000612717826126f9565b9050919050565b6127278161270c565b82525050565b6000602082019050612742600083018461271e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278f57607f821691505b6020821081036127a2576127a1612748565b5b50919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b60006127de600a836120ce565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061284e8261217e565b91506128598361217e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288e5761288d612814565b5b828201905092915050565b7f52657175657374206578636565647320636f6c6c656374696f6e20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f56021836120ce565b915061290082612899565b604082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f636f6e74726163743a2053616c657320617265206f6666000000000000000000600082015250565b60006129616017836120ce565b915061296c8261292b565b602082019050919050565b6000602082019050818103600083015261299081612954565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e732077696c6c2065786365656420636f6c6c656374696f6e207375707060208201527f6c79000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a196042836120ce565b9150612a2482612997565b606082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e73206578636565647320616c6c6f77616e636520283130302900000000602082015250565b6000612aab603c836120ce565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f636f6e74726163743a204e756d626572206f662072657175657374656420746f60008201527f6b656e73206578636565647320616c6c6f77616e636520283530302900000000602082015250565b6000612b3d603c836120ce565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f636f6e74726163743a2045746865722076616c75652073656e74206973206e6f60008201527f742073756666696369656e740000000000000000000000000000000000000000602082015250565b6000612bcf602c836120ce565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b6000612c108261217e565b9150612c1b8361217e565b925082821015612c2e57612c2d612814565b5b828203905092915050565b6000612c448261217e565b9150612c4f8361217e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8857612c87612814565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cef602f836120ce565b9150612cfa82612c93565b604082019050919050565b60006020820190508181036000830152612d1e81612ce2565b9050919050565b600081905092915050565b6000612d3b826120c3565b612d458185612d25565b9350612d558185602086016120df565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d97600183612d25565b9150612da282612d61565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612de3600583612d25565b9150612dee82612dad565b600582019050919050565b6000612e058285612d30565b9150612e1082612d8a565b9150612e1c8284612d30565b9150612e2782612dd6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e8f6026836120ce565b9150612e9a82612e33565b604082019050919050565b60006020820190508181036000830152612ebe81612e82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612efb6020836120ce565b9150612f0682612ec5565b602082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f5882612f31565b612f628185612f3c565b9350612f728185602086016120df565b612f7b81612112565b840191505092915050565b6000608082019050612f9b6000830187612213565b612fa86020830186612213565b612fb560408301856122a9565b8181036060830152612fc78184612f4d565b905095945050505050565b600081519050612fe181612034565b92915050565b600060208284031215612ffd57612ffc611ffe565b5b600061300b84828501612fd2565b9150509291505056fea2646970667358221220302652dd8d2dfdcbd9354c7ec2677eb053fe7f738816aaf6b629200e8f8912d264736f6c634300080e0033

Deployed Bytecode Sourcemap

58750:3911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58997:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60217:184;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59921:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59500:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60070:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57861:103;;;;;;;;;;;;;:::i;:::-;;60477:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57213:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58943:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61963:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61194:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58901:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59069:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60817:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58858:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58119:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59112:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;58997:53::-;59048:2;58997:53;:::o;60217:184::-;57099:13;:11;:13::i;:::-;60267:12:::1;60282:21;60267:36;;60332:1;60322:7;:11;60314:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;60367:7;:5;:7::i;:::-;60359:25;;:34;60385:7;60359:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60256:145;60217:184::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;59921:99::-;57099:13;:11;:13::i;:::-;60006:6:::1;59993:10;;:19;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;59921:99:::0;:::o;59500:93::-;57099:13;:11;:13::i;:::-;59582:3:::1;;59571:8;:14;;;;;;;:::i;:::-;;59500:93:::0;;:::o;60070:96::-;57099:13;:11;:13::i;:::-;60153:5:::1;60140:10;:18;;;;60070:96:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;57861:103::-;57099:13;:11;:13::i;:::-;57926:30:::1;57953:1;57926:18;:30::i;:::-;57861:103::o:0;60477:191::-;57099:13;:11;:13::i;:::-;58891:3:::1;60573:5;60556:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;60548:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60640:20;60650:2;60654:5;60640:9;:20::i;:::-;60477:191:::0;;:::o;57213:87::-;57259:7;57286:6;;;;;;;;;;;57279:13;;57213:87;:::o;58943:47::-;58988:2;58943:47;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;61963:695::-;62039:17;62025:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;62017:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58891:3;62120:5;62103:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;62095:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;58988:2;62228:5;:30;;62220:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;59048:2;62369:5;62342:12;:24;62355:10;62342:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:63;;62334:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;62502:16;62512:5;62502:9;:16::i;:::-;62489:9;:29;;62481:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;62606:5;62578:12;:24;62591:10;62578:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;62622:28;62632:10;62644:5;62622:9;:28::i;:::-;61963:695;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;61194:649::-;61245:4;61284:17;61270:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;61262:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;61382:1;61360:24;;:10;:24;;;61352:33;;;;;;61396:21;61420:12;:24;61433:10;61420:24;;;;;;;;;;;;;;;;61396:48;;61473:16;58935:1;61460:29;61457:300;;;61506:13;61535:16;58935:1;61522:29;;;;:::i;:::-;61506:45;;61577:8;61569:5;:16;61566:180;;;61659:8;61650:17;;;;;:::i;:::-;;;61566:180;;;61729:1;61721:9;;61566:180;61491:266;61457:300;61779:10;61792;;61779:23;;61830:5;61822;:13;;;;:::i;:::-;61815:20;;;;61194:649;;;:::o;58901:35::-;58935:1;58901:35;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;59069:36::-;;;;:::o;60817:365::-;60879:13;60913:16;60921:7;60913;:16::i;:::-;60905:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;60992:21;61016:10;:8;:10::i;:::-;60992:34;;61070:1;61052:7;61046:21;:25;:128;;;;;;;;;;;;;;;;;61112:7;61126:18;61136:7;61126:9;:18::i;:::-;61095:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61046:128;61039:135;;;60817:365;;;:::o;58858:36::-;58891:3;58858:36;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;58119:201::-;57099:13;:11;:13::i;:::-;58228:1:::1;58208:22;;:8;:22;;::::0;58200:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58284:28;58303:8;58284:18;:28::i;:::-;58119:201:::0;:::o;59112:48::-;;;;;;;;;;;;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;59777:93::-;59834:7;59861:1;59854:8;;59777:93;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;57378:132::-;57453:12;:10;:12::i;:::-;57442:23;;:7;:5;:7::i;:::-;:23;;;57434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57378:132::o;58480:191::-;58554:16;58573:6;;;;;;;;;;;58554:25;;58599:8;58590:6;;:17;;;;;;;;;;;;;;;;;;58654:8;58623:40;;58644:8;58623:40;;;;;;;;;;;;58543:128;58480:191;:::o;15478:296::-;15533:7;15740:15;:13;:15::i;:::-;15724:13;;:31;15717:38;;15478:296;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;59668:101::-;59720:13;59753:8;59746:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59668:101;:::o;49683:1745::-;49748:17;50182:4;50175;50169:11;50165:22;50274:1;50268:4;50261:15;50349:4;50346:1;50342:12;50335:19;;50431:1;50426:3;50419:14;50535:3;50774:5;50756:428;50782:1;50756:428;;;50822:1;50817:3;50813:11;50806:18;;50993:2;50987:4;50983:13;50979:2;50975:22;50970:3;50962:36;51087:2;51081:4;51077:13;51069:21;;51154:4;50756:428;51144:25;50756:428;50760:21;51223:3;51218;51214:13;51338:4;51333:3;51329:14;51322:21;;51403:6;51398:3;51391:19;49787:1634;;;49683:1745;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;55764:98::-;55817:7;55844:10;55837:17;;55764:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798: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:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:114::-;6003:1;5996:5;5993:12;5983:40;;6019:1;6016;6009:12;5983:40;5915:114;:::o;6035:169::-;6096:5;6134:6;6121:20;6112:29;;6150:48;6192:5;6150:48;:::i;:::-;6035:169;;;;:::o;6210:359::-;6284:6;6333:2;6321:9;6312:7;6308:23;6304:32;6301:119;;;6339:79;;:::i;:::-;6301:119;6459:1;6484:68;6544:7;6535:6;6524:9;6520:22;6484:68;:::i;:::-;6474:78;;6430:132;6210:359;;;;:::o;6575:117::-;6684:1;6681;6674:12;6698:117;6807:1;6804;6797:12;6821:117;6930:1;6927;6920:12;6958:553;7016:8;7026:6;7076:3;7069:4;7061:6;7057:17;7053:27;7043:122;;7084:79;;:::i;:::-;7043:122;7197:6;7184:20;7174:30;;7227:18;7219:6;7216:30;7213:117;;;7249:79;;:::i;:::-;7213:117;7363:4;7355:6;7351:17;7339:29;;7417:3;7409:4;7401:6;7397:17;7387:8;7383:32;7380:41;7377:128;;;7424:79;;:::i;:::-;7377:128;6958:553;;;;;:::o;7517:529::-;7588:6;7596;7645:2;7633:9;7624:7;7620:23;7616:32;7613:119;;;7651:79;;:::i;:::-;7613:119;7799:1;7788:9;7784:17;7771:31;7829:18;7821:6;7818:30;7815:117;;;7851:79;;:::i;:::-;7815:117;7964:65;8021:7;8012:6;8001:9;7997:22;7964:65;:::i;:::-;7946:83;;;;7742:297;7517:529;;;;;:::o;8052:329::-;8111:6;8160:2;8148:9;8139:7;8135:23;8131:32;8128:119;;;8166:79;;:::i;:::-;8128:119;8286:1;8311:53;8356:7;8347:6;8336:9;8332:22;8311:53;:::i;:::-;8301:63;;8257:117;8052:329;;;;:::o;8387:116::-;8457:21;8472:5;8457:21;:::i;:::-;8450:5;8447:32;8437:60;;8493:1;8490;8483:12;8437:60;8387:116;:::o;8509:133::-;8552:5;8590:6;8577:20;8568:29;;8606:30;8630:5;8606:30;:::i;:::-;8509:133;;;;:::o;8648:468::-;8713:6;8721;8770:2;8758:9;8749:7;8745:23;8741:32;8738:119;;;8776:79;;:::i;:::-;8738:119;8896:1;8921:53;8966:7;8957:6;8946:9;8942:22;8921:53;:::i;:::-;8911:63;;8867:117;9023:2;9049:50;9091:7;9082:6;9071:9;9067:22;9049:50;:::i;:::-;9039:60;;8994:115;8648:468;;;;;:::o;9122:117::-;9231:1;9228;9221:12;9245:180;9293:77;9290:1;9283:88;9390:4;9387:1;9380:15;9414:4;9411:1;9404:15;9431:281;9514:27;9536:4;9514:27;:::i;:::-;9506:6;9502:40;9644:6;9632:10;9629:22;9608:18;9596:10;9593:34;9590:62;9587:88;;;9655:18;;:::i;:::-;9587:88;9695:10;9691:2;9684:22;9474:238;9431:281;;:::o;9718:129::-;9752:6;9779:20;;:::i;:::-;9769:30;;9808:33;9836:4;9828:6;9808:33;:::i;:::-;9718:129;;;:::o;9853:307::-;9914:4;10004:18;9996:6;9993:30;9990:56;;;10026:18;;:::i;:::-;9990:56;10064:29;10086:6;10064:29;:::i;:::-;10056:37;;10148:4;10142;10138:15;10130:23;;9853:307;;;:::o;10166:154::-;10250:6;10245:3;10240;10227:30;10312:1;10303:6;10298:3;10294:16;10287:27;10166:154;;;:::o;10326:410::-;10403:5;10428:65;10444:48;10485:6;10444:48;:::i;:::-;10428:65;:::i;:::-;10419:74;;10516:6;10509:5;10502:21;10554:4;10547:5;10543:16;10592:3;10583:6;10578:3;10574:16;10571:25;10568:112;;;10599:79;;:::i;:::-;10568:112;10689:41;10723:6;10718:3;10713;10689:41;:::i;:::-;10409:327;10326:410;;;;;:::o;10755:338::-;10810:5;10859:3;10852:4;10844:6;10840:17;10836:27;10826:122;;10867:79;;:::i;:::-;10826:122;10984:6;10971:20;11009:78;11083:3;11075:6;11068:4;11060:6;11056:17;11009:78;:::i;:::-;11000:87;;10816:277;10755:338;;;;:::o;11099:943::-;11194:6;11202;11210;11218;11267:3;11255:9;11246:7;11242:23;11238:33;11235:120;;;11274:79;;:::i;:::-;11235:120;11394:1;11419:53;11464:7;11455:6;11444:9;11440:22;11419:53;:::i;:::-;11409:63;;11365:117;11521:2;11547:53;11592:7;11583:6;11572:9;11568:22;11547:53;:::i;:::-;11537:63;;11492:118;11649:2;11675:53;11720:7;11711:6;11700:9;11696:22;11675:53;:::i;:::-;11665:63;;11620:118;11805:2;11794:9;11790:18;11777:32;11836:18;11828:6;11825:30;11822:117;;;11858:79;;:::i;:::-;11822:117;11963:62;12017:7;12008:6;11997:9;11993:22;11963:62;:::i;:::-;11953:72;;11748:287;11099:943;;;;;;;:::o;12048:474::-;12116:6;12124;12173:2;12161:9;12152:7;12148:23;12144:32;12141:119;;;12179:79;;:::i;:::-;12141:119;12299:1;12324:53;12369:7;12360:6;12349:9;12345:22;12324:53;:::i;:::-;12314:63;;12270:117;12426:2;12452:53;12497:7;12488:6;12477:9;12473:22;12452:53;:::i;:::-;12442:63;;12397:118;12048:474;;;;;:::o;12528:180::-;12576:77;12573:1;12566:88;12673:4;12670:1;12663:15;12697:4;12694:1;12687:15;12714:120;12802:1;12795:5;12792:12;12782:46;;12808:18;;:::i;:::-;12782:46;12714:120;:::o;12840:141::-;12892:7;12921:5;12910:16;;12927:48;12969:5;12927:48;:::i;:::-;12840:141;;;:::o;12987:::-;13050:9;13083:39;13116:5;13083:39;:::i;:::-;13070:52;;12987:141;;;:::o;13134:157::-;13234:50;13278:5;13234:50;:::i;:::-;13229:3;13222:63;13134:157;;:::o;13297:248::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13454:84;13535:1;13524:9;13520:17;13511:6;13454:84;:::i;:::-;13297:248;;;;:::o;13551:180::-;13599:77;13596:1;13589:88;13696:4;13693:1;13686:15;13720:4;13717:1;13710:15;13737:320;13781:6;13818:1;13812:4;13808:12;13798:22;;13865:1;13859:4;13855:12;13886:18;13876:81;;13942:4;13934:6;13930:17;13920:27;;13876:81;14004:2;13996:6;13993:14;13973:18;13970:38;13967:84;;14023:18;;:::i;:::-;13967:84;13788:269;13737:320;;;:::o;14063:160::-;14203:12;14199:1;14191:6;14187:14;14180:36;14063:160;:::o;14229:366::-;14371:3;14392:67;14456:2;14451:3;14392:67;:::i;:::-;14385:74;;14468:93;14557:3;14468:93;:::i;:::-;14586:2;14581:3;14577:12;14570:19;;14229:366;;;:::o;14601:419::-;14767:4;14805:2;14794:9;14790:18;14782:26;;14854:9;14848:4;14844:20;14840:1;14829:9;14825:17;14818:47;14882:131;15008:4;14882:131;:::i;:::-;14874:139;;14601:419;;;:::o;15026:180::-;15074:77;15071:1;15064:88;15171:4;15168:1;15161:15;15195:4;15192:1;15185:15;15212:305;15252:3;15271:20;15289:1;15271:20;:::i;:::-;15266:25;;15305:20;15323:1;15305:20;:::i;:::-;15300:25;;15459:1;15391:66;15387:74;15384:1;15381:81;15378:107;;;15465:18;;:::i;:::-;15378:107;15509:1;15506;15502:9;15495:16;;15212:305;;;;:::o;15523:220::-;15663:34;15659:1;15651:6;15647:14;15640:58;15732:3;15727:2;15719:6;15715:15;15708:28;15523:220;:::o;15749:366::-;15891:3;15912:67;15976:2;15971:3;15912:67;:::i;:::-;15905:74;;15988:93;16077:3;15988:93;:::i;:::-;16106:2;16101:3;16097:12;16090:19;;15749:366;;;:::o;16121:419::-;16287:4;16325:2;16314:9;16310:18;16302:26;;16374:9;16368:4;16364:20;16360:1;16349:9;16345:17;16338:47;16402:131;16528:4;16402:131;:::i;:::-;16394:139;;16121:419;;;:::o;16546:173::-;16686:25;16682:1;16674:6;16670:14;16663:49;16546:173;:::o;16725:366::-;16867:3;16888:67;16952:2;16947:3;16888:67;:::i;:::-;16881:74;;16964:93;17053:3;16964:93;:::i;:::-;17082:2;17077:3;17073:12;17066:19;;16725:366;;;:::o;17097:419::-;17263:4;17301:2;17290:9;17286:18;17278:26;;17350:9;17344:4;17340:20;17336:1;17325:9;17321:17;17314:47;17378:131;17504:4;17378:131;:::i;:::-;17370:139;;17097:419;;;:::o;17522:290::-;17662:34;17658:1;17650:6;17646:14;17639:58;17731:34;17726:2;17718:6;17714:15;17707:59;17800:4;17795:2;17787:6;17783:15;17776:29;17522:290;:::o;17818:366::-;17960:3;17981:67;18045:2;18040:3;17981:67;:::i;:::-;17974:74;;18057:93;18146:3;18057:93;:::i;:::-;18175:2;18170:3;18166:12;18159:19;;17818:366;;;:::o;18190:419::-;18356:4;18394:2;18383:9;18379:18;18371:26;;18443:9;18437:4;18433:20;18429:1;18418:9;18414:17;18407:47;18471:131;18597:4;18471:131;:::i;:::-;18463:139;;18190:419;;;:::o;18615:247::-;18755:34;18751:1;18743:6;18739:14;18732:58;18824:30;18819:2;18811:6;18807:15;18800:55;18615:247;:::o;18868:366::-;19010:3;19031:67;19095:2;19090:3;19031:67;:::i;:::-;19024:74;;19107:93;19196:3;19107:93;:::i;:::-;19225:2;19220:3;19216:12;19209:19;;18868:366;;;:::o;19240:419::-;19406:4;19444:2;19433:9;19429:18;19421:26;;19493:9;19487:4;19483:20;19479:1;19468:9;19464:17;19457:47;19521:131;19647:4;19521:131;:::i;:::-;19513:139;;19240:419;;;:::o;19665:247::-;19805:34;19801:1;19793:6;19789:14;19782:58;19874:30;19869:2;19861:6;19857:15;19850:55;19665:247;:::o;19918:366::-;20060:3;20081:67;20145:2;20140:3;20081:67;:::i;:::-;20074:74;;20157:93;20246:3;20157:93;:::i;:::-;20275:2;20270:3;20266:12;20259:19;;19918:366;;;:::o;20290:419::-;20456:4;20494:2;20483:9;20479:18;20471:26;;20543:9;20537:4;20533:20;20529:1;20518:9;20514:17;20507:47;20571:131;20697:4;20571:131;:::i;:::-;20563:139;;20290:419;;;:::o;20715:231::-;20855:34;20851:1;20843:6;20839:14;20832:58;20924:14;20919:2;20911:6;20907:15;20900:39;20715:231;:::o;20952:366::-;21094:3;21115:67;21179:2;21174:3;21115:67;:::i;:::-;21108:74;;21191:93;21280:3;21191:93;:::i;:::-;21309:2;21304:3;21300:12;21293:19;;20952:366;;;:::o;21324:419::-;21490:4;21528:2;21517:9;21513:18;21505:26;;21577:9;21571:4;21567:20;21563:1;21552:9;21548:17;21541:47;21605:131;21731:4;21605:131;:::i;:::-;21597:139;;21324:419;;;:::o;21749:191::-;21789:4;21809:20;21827:1;21809:20;:::i;:::-;21804:25;;21843:20;21861:1;21843:20;:::i;:::-;21838:25;;21882:1;21879;21876:8;21873:34;;;21887:18;;:::i;:::-;21873:34;21932:1;21929;21925:9;21917:17;;21749:191;;;;:::o;21946:348::-;21986:7;22009:20;22027:1;22009:20;:::i;:::-;22004:25;;22043:20;22061:1;22043:20;:::i;:::-;22038:25;;22231:1;22163:66;22159:74;22156:1;22153:81;22148:1;22141:9;22134:17;22130:105;22127:131;;;22238:18;;:::i;:::-;22127:131;22286:1;22283;22279:9;22268:20;;21946:348;;;;:::o;22300:234::-;22440:34;22436:1;22428:6;22424:14;22417:58;22509:17;22504:2;22496:6;22492:15;22485:42;22300:234;:::o;22540:366::-;22682:3;22703:67;22767:2;22762:3;22703:67;:::i;:::-;22696:74;;22779:93;22868:3;22779:93;:::i;:::-;22897:2;22892:3;22888:12;22881:19;;22540:366;;;:::o;22912:419::-;23078:4;23116:2;23105:9;23101:18;23093:26;;23165:9;23159:4;23155:20;23151:1;23140:9;23136:17;23129:47;23193:131;23319:4;23193:131;:::i;:::-;23185:139;;22912:419;;;:::o;23337:148::-;23439:11;23476:3;23461:18;;23337:148;;;;:::o;23491:377::-;23597:3;23625:39;23658:5;23625:39;:::i;:::-;23680:89;23762:6;23757:3;23680:89;:::i;:::-;23673:96;;23778:52;23823:6;23818:3;23811:4;23804:5;23800:16;23778:52;:::i;:::-;23855:6;23850:3;23846:16;23839:23;;23601:267;23491:377;;;;:::o;23874:151::-;24014:3;24010:1;24002:6;23998:14;23991:27;23874:151;:::o;24031:400::-;24191:3;24212:84;24294:1;24289:3;24212:84;:::i;:::-;24205:91;;24305:93;24394:3;24305:93;:::i;:::-;24423:1;24418:3;24414:11;24407:18;;24031:400;;;:::o;24437:155::-;24577:7;24573:1;24565:6;24561:14;24554:31;24437:155;:::o;24598:400::-;24758:3;24779:84;24861:1;24856:3;24779:84;:::i;:::-;24772:91;;24872:93;24961:3;24872:93;:::i;:::-;24990:1;24985:3;24981:11;24974:18;;24598:400;;;:::o;25004:967::-;25386:3;25408:95;25499:3;25490:6;25408:95;:::i;:::-;25401:102;;25520:148;25664:3;25520:148;:::i;:::-;25513:155;;25685:95;25776:3;25767:6;25685:95;:::i;:::-;25678:102;;25797:148;25941:3;25797:148;:::i;:::-;25790:155;;25962:3;25955:10;;25004:967;;;;;:::o;25977:225::-;26117:34;26113:1;26105:6;26101:14;26094:58;26186:8;26181:2;26173:6;26169:15;26162:33;25977:225;:::o;26208:366::-;26350:3;26371:67;26435:2;26430:3;26371:67;:::i;:::-;26364:74;;26447:93;26536:3;26447:93;:::i;:::-;26565:2;26560:3;26556:12;26549:19;;26208:366;;;:::o;26580:419::-;26746:4;26784:2;26773:9;26769:18;26761:26;;26833:9;26827:4;26823:20;26819:1;26808:9;26804:17;26797:47;26861:131;26987:4;26861:131;:::i;:::-;26853:139;;26580:419;;;:::o;27005:182::-;27145:34;27141:1;27133:6;27129:14;27122:58;27005:182;:::o;27193:366::-;27335:3;27356:67;27420:2;27415:3;27356:67;:::i;:::-;27349:74;;27432:93;27521:3;27432:93;:::i;:::-;27550:2;27545:3;27541:12;27534:19;;27193:366;;;:::o;27565:419::-;27731:4;27769:2;27758:9;27754:18;27746:26;;27818:9;27812:4;27808:20;27804:1;27793:9;27789:17;27782:47;27846:131;27972:4;27846:131;:::i;:::-;27838:139;;27565:419;;;:::o;27990:98::-;28041:6;28075:5;28069:12;28059:22;;27990:98;;;:::o;28094:168::-;28177:11;28211:6;28206:3;28199:19;28251:4;28246:3;28242:14;28227:29;;28094:168;;;;:::o;28268:360::-;28354:3;28382:38;28414:5;28382:38;:::i;:::-;28436:70;28499:6;28494:3;28436:70;:::i;:::-;28429:77;;28515:52;28560:6;28555:3;28548:4;28541:5;28537:16;28515:52;:::i;:::-;28592:29;28614:6;28592:29;:::i;:::-;28587:3;28583:39;28576:46;;28358:270;28268:360;;;;:::o;28634:640::-;28829:4;28867:3;28856:9;28852:19;28844:27;;28881:71;28949:1;28938:9;28934:17;28925:6;28881:71;:::i;:::-;28962:72;29030:2;29019:9;29015:18;29006:6;28962:72;:::i;:::-;29044;29112:2;29101:9;29097:18;29088:6;29044:72;:::i;:::-;29163:9;29157:4;29153:20;29148:2;29137:9;29133:18;29126:48;29191:76;29262:4;29253:6;29191:76;:::i;:::-;29183:84;;28634:640;;;;;;;:::o;29280:141::-;29336:5;29367:6;29361:13;29352:22;;29383:32;29409:5;29383:32;:::i;:::-;29280:141;;;;:::o;29427:349::-;29496:6;29545:2;29533:9;29524:7;29520:23;29516:32;29513:119;;;29551:79;;:::i;:::-;29513:119;29671:1;29696:63;29751:7;29742:6;29731:9;29727:22;29696:63;:::i;:::-;29686:73;;29642:127;29427:349;;;;:::o

Swarm Source

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