ETH Price: $3,086.20 (-0.08%)
Gas: 5 Gwei

Token

EDBOY (EDBOY)
 

Overview

Max Total Supply

10,000 EDBOY

Holders

2,010

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 EDBOY
0x87980b7babff91f5c5c4e7b50756c5ffa0710443
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:
EDBOY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-04
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// 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: 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: contracts/freemint.sol

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




contract EDBOY is Ownable, ERC721A {
    uint256 constant public maxSupply = 10000;
    // max mint limit
    uint256 MAX_MINT = 5;
    string public revealedURI = "ipfs:// ----IFPS---/";
    bool public paused = true;
    mapping(address => uint256) public mintedWallets;

    bool private _isRevealed = true;
    string private _baseTokenUri;
    string public notRevealedURI;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _revealedURI
    ) ERC721A(_name, _symbol) {
        revealedURI = _revealedURI;
        _safeMint(msg.sender, 10);
    }

    function smint(uint256 quantity) external payable onlyOwner {
         _safeMint(msg.sender, quantity);
    }

    function doAirdrop(address[] memory dests, uint256[] memory values) external onlyOwner {
        for (uint256 i = 0; i < dests.length; i++) {
            safeTransferFrom(msg.sender, dests[i], values[i]);
        }
    }

    function freemint(uint256 quantity) external payable mintCompliance(quantity) {
        require(maxSupply > totalSupply(), "sold out");
        uint256 currMints = mintedWallets[msg.sender];
        require(currMints + quantity <= MAX_MINT, "u wanna mint too many");
        
        // freemint
        uint256 price = 0;
        require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more");
        refundIfOver(price*quantity);
        mintedWallets[msg.sender] = (currMints + quantity);
        _safeMint(msg.sender, quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function checkPrice(uint256 _price, uint _count) public pure returns (uint256) {
        return _price * _count;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function revealCollection() public onlyOwner{
      _isRevealed = true;
    }

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

    function setBaseUri(string memory _baseUri) external onlyOwner {
        _baseTokenUri = _baseUri;
    }

    function contractURI() public view returns (string memory) {
        return revealedURI;
    }

    function setMaxMint(uint256 _max) public onlyOwner {
        MAX_MINT = _max;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        revealedURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        // require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (_isRevealed == true){
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        } else {
            return string(abi.encodePacked(notRevealedURI, Strings.toString(1), ".json"));
        }
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }
    
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    // Withdraw
    function withdrawMoney() external onlyOwner  {
        require(address(this).balance > 0, "No ether left to withdraw");
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= maxSupply, "you cant become ugly anymore");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_revealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"dests","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"doAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","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":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"smint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260056009556040518060400160405280601481526020017f697066733a2f2f202d2d2d2d494650532d2d2d2f000000000000000000000000815250600a908051906020019062000056929190620006ee565b506001600b60006101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b50604051620046d7380380620046d78339818101604052810190620000c0919062000865565b8282620000e2620000d66200016160201b60201c565b6200016960201b60201c565b8160039080519060200190620000fa929190620006ee565b50806004908051906020019062000113929190620006ee565b50620001246200022d60201b60201c565b600181905550505080600a908051906020019062000144929190620006ee565b506200015833600a6200023260201b60201c565b50505062000bf9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002548282604051806020016040528060008152506200025860201b60201c565b5050565b6200026a83836200030a60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620003055760006001549050600083820390505b620002b46000868380600101945086620004f460201b60201c565b620002eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002995781600154146200030257600080fd5b50505b505050565b6000600154905060008214156200034d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200036260008483856200066660201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003f183620003d360008660006200066c60201b60201c565b620003e4856200069c60201b60201c565b17620006ac60201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200049457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000457565b506000821415620004d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050620004ef6000848385620006d760201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000522620006dd60201b60201c565b8786866040518563ffffffff1660e01b815260040162000546949392919062000981565b602060405180830381600087803b1580156200056157600080fd5b505af19250505080156200059557506040513d601f19601f8201168201806040525081019062000592919062000833565b60015b62000613573d8060008114620005c8576040519150601f19603f3d011682016040523d82523d6000602084013e620005cd565b606091505b506000815114156200060b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200068b868684620006e560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006fc9062000af0565b90600052602060002090601f0160209004810192826200072057600085556200076c565b82601f106200073b57805160ff19168380011785556200076c565b828001600101855582156200076c579182015b828111156200076b5782518255916020019190600101906200074e565b5b5090506200077b91906200077f565b5090565b5b808211156200079a57600081600090555060010162000780565b5090565b6000620007b5620007af84620009fe565b620009d5565b905082815260208101848484011115620007d457620007d362000bbf565b5b620007e184828562000aba565b509392505050565b600081519050620007fa8162000bdf565b92915050565b600082601f83011262000818576200081762000bba565b5b81516200082a8482602086016200079e565b91505092915050565b6000602082840312156200084c576200084b62000bc9565b5b60006200085c84828501620007e9565b91505092915050565b60008060006060848603121562000881576200088062000bc9565b5b600084015167ffffffffffffffff811115620008a257620008a162000bc4565b5b620008b08682870162000800565b935050602084015167ffffffffffffffff811115620008d457620008d362000bc4565b5b620008e28682870162000800565b925050604084015167ffffffffffffffff81111562000906576200090562000bc4565b5b620009148682870162000800565b9150509250925092565b620009298162000a50565b82525050565b60006200093c8262000a34565b62000948818562000a3f565b93506200095a81856020860162000aba565b620009658162000bce565b840191505092915050565b6200097b8162000ab0565b82525050565b60006080820190506200099860008301876200091e565b620009a760208301866200091e565b620009b6604083018562000970565b8181036060830152620009ca81846200092f565b905095945050505050565b6000620009e1620009f4565b9050620009ef828262000b26565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a1c5762000a1b62000b8b565b5b62000a278262000bce565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a5d8262000a90565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ada57808201518184015260208101905062000abd565b8381111562000aea576000848401525b50505050565b6000600282049050600182168062000b0957607f821691505b6020821081141562000b205762000b1f62000b5c565b5b50919050565b62000b318262000bce565b810181811067ffffffffffffffff8211171562000b535762000b5262000b8b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000bea8162000a64565b811462000bf657600080fd5b50565b613ace8062000c096000396000f3fe60806040526004361061021a5760003560e01c80637225038011610123578063b4769e96116100ab578063e8a3d4851161006f578063e8a3d48514610769578063e985e9c514610794578063f2c4ce1e146107d1578063f2fde38b146107fa578063f7e8d6ea146108235761021a565b8063b4769e96146106a0578063b88d4fde146106bc578063c0116c3c146106d8578063c87b56dd14610701578063d5abeb011461073e5761021a565b806395d89b41116100f257806395d89b41146105cf578063a0bcfc7f146105fa578063a22cb46514610623578063ac4460021461064c578063ada7c4ed146106635761021a565b806372250380146105275780638da5cb5b146105525780639007bd721461057d578063938e3d7b146105a65761021a565b806340d0b4a9116101a657806355f804b31161017557806355f804b3146104425780635c975abb1461046b5780636352211e1461049657806370a08231146104d3578063715018a6146105105761021a565b806340d0b4a9146103a957806342842e0e146103c0578063438b6300146103dc578063547520fe146104195761021a565b80630fbe4fe2116101ed5780630fbe4fe2146102e057806316c38b3c146102fc57806318160ddd1461032557806323b872dd1461035057806332536eb41461036c5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612b59565b61084e565b6040516102539190613111565b60405180910390f35b34801561026857600080fd5b506102716108e0565b60405161027e919061312c565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612bfc565b610972565b6040516102bb9190613088565b60405180910390f35b6102de60048036038101906102d99190612a74565b6109f1565b005b6102fa60048036038101906102f59190612bfc565b610b35565b005b34801561030857600080fd5b50610323600480360381019061031e9190612b2c565b610deb565b005b34801561033157600080fd5b5061033a610e10565b60405161034791906132ae565b60405180910390f35b61036a6004803603810190610365919061295e565b610e27565b005b34801561037857600080fd5b50610393600480360381019061038e9190612c69565b61114c565b6040516103a091906132ae565b60405180910390f35b3480156103b557600080fd5b506103be611162565b005b6103da60048036038101906103d5919061295e565b611187565b005b3480156103e857600080fd5b5061040360048036038101906103fe91906128f1565b6111a7565b60405161041091906130ef565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612bfc565b6112b2565b005b34801561044e57600080fd5b5061046960048036038101906104649190612bb3565b6112c4565b005b34801561047757600080fd5b506104806112e6565b60405161048d9190613111565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612bfc565b6112f9565b6040516104ca9190613088565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906128f1565b61130b565b60405161050791906132ae565b60405180910390f35b34801561051c57600080fd5b506105256113c4565b005b34801561053357600080fd5b5061053c6113d8565b604051610549919061312c565b60405180910390f35b34801561055e57600080fd5b50610567611466565b6040516105749190613088565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c29565b61148f565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612bb3565b6115bc565b005b3480156105db57600080fd5b506105e46115de565b6040516105f1919061312c565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612bb3565b611670565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612a34565b611692565b005b34801561065857600080fd5b5061066161179d565b005b34801561066f57600080fd5b5061068a600480360381019061068591906128f1565b611897565b60405161069791906132ae565b60405180910390f35b6106ba60048036038101906106b59190612bfc565b6118af565b005b6106d660048036038101906106d191906129b1565b6118c4565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612ab4565b611937565b005b34801561070d57600080fd5b5061072860048036038101906107239190612bfc565b6119a2565b604051610735919061312c565b60405180910390f35b34801561074a57600080fd5b50610753611a26565b60405161076091906132ae565b60405180910390f35b34801561077557600080fd5b5061077e611a2c565b60405161078b919061312c565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b6919061291e565b611abe565b6040516107c89190613111565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612bb3565b611b52565b005b34801561080657600080fd5b50610821600480360381019061081c91906128f1565b611b74565b005b34801561082f57600080fd5b50610838611bf8565b604051610845919061312c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108ef9061360f565b80601f016020809104026020016040519081016040528092919081815260200182805461091b9061360f565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b600061097d82611c86565b6109b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fc826112f9565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1d611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8057610a4981610a44611ce5565b611abe565b610a7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b80600b60009054906101000a900460ff1615610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061328e565b60405180910390fd5b61271081610b92610e10565b610b9c9190613444565b1115610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061314e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906131ae565b60405180910390fd5b610c53610e10565b61271011610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d906131ce565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506009548382610ce99190613444565b1115610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906131ee565b60405180910390fd5b6000610d36818561114c565b341015610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f9061318e565b60405180910390fd5b610d8c8482610d8791906134cb565b611ced565b8382610d989190613444565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de53385611d8e565b50505050565b610df3611dac565b80600b60006101000a81548160ff02191690831515021790555050565b6000610e1a611e2a565b6002546001540303905090565b6000610e3282611e2f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e99576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ea584611efd565b91509150610ebb8187610eb6611ce5565b611f24565b610f0757610ed086610ecb611ce5565b611abe565b610f06576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f7b8686866001611f68565b8015610f8657600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061105485611030888887611f6e565b7c020000000000000000000000000000000000000000000000000000000017611f96565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110dc5760006001850190506000600560008381526020019081526020016000205414156110da5760015481146110d9578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111448686866001611fc1565b505050505050565b6000818361115a91906134cb565b905092915050565b61116a611dac565b6001600d60006101000a81548160ff021916908315150217905550565b6111a2838383604051806020016040528060008152506118c4565b505050565b606060006111b48361130b565b905060008167ffffffffffffffff8111156111d2576111d16137a8565b5b6040519080825280602002602001820160405280156112005781602001602082028036833780820191505090505b50905060006001905060005b838110801561121d57506127108211155b156112a657600061122d836112f9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611292578284838151811061127757611276613779565b5b602002602001018181525050818061128e90613672565b9250505b828061129d90613672565b9350505061120c565b82945050505050919050565b6112ba611dac565b8060098190555050565b6112cc611dac565b80600a90805190602001906112e29291906125c9565b5050565b600b60009054906101000a900460ff1681565b600061130482611e2f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611373576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113cc611dac565b6113d66000611fc7565b565b600f80546113e59061360f565b80601f01602080910402602001604051908101604052809291908181526020018280546114119061360f565b801561145e5780601f106114335761010080835404028352916020019161145e565b820191906000526020600020905b81548152906001019060200180831161144157829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611497611dac565b81600b60009054906101000a900460ff16156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061328e565b60405180910390fd5b612710816114f4610e10565b6114fe9190613444565b111561153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061314e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906131ae565b60405180910390fd5b6115b78284611d8e565b505050565b6115c4611dac565b80600a90805190602001906115da9291906125c9565b5050565b6060600480546115ed9061360f565b80601f01602080910402602001604051908101604052809291908181526020018280546116199061360f565b80156116665780601f1061163b57610100808354040283529160200191611666565b820191906000526020600020905b81548152906001019060200180831161164957829003601f168201915b5050505050905090565b611678611dac565b80600e908051906020019061168e9291906125c9565b5050565b806008600061169f611ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174c611ce5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117919190613111565b60405180910390a35050565b6117a5611dac565b600047116117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df9061320e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161180e90613073565b60006040518083038185875af1925050503d806000811461184b576040519150601f19603f3d011682016040523d82523d6000602084013e611850565b606091505b5050905080611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061324e565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b6118b7611dac565b6118c13382611d8e565b50565b6118cf848484610e27565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611931576118fa8484848461208b565b611930576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61193f611dac565b60005b825181101561199d5761198a3384838151811061196257611961613779565b5b602002602001015184848151811061197d5761197c613779565b5b6020026020010151611187565b808061199590613672565b915050611942565b505050565b606060011515600d60009054906101000a900460ff16151514156119f257600a6119cb836121eb565b6040516020016119dc929190613044565b6040516020818303038152906040529050611a21565b600f6119fe60016121eb565b604051602001611a0f929190613044565b60405160208183030381529060405290505b919050565b61271081565b6060600a8054611a3b9061360f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a679061360f565b8015611ab45780601f10611a8957610100808354040283529160200191611ab4565b820191906000526020600020905b815481529060010190602001808311611a9757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b5a611dac565b80600f9080519060200190611b709291906125c9565b5050565b611b7c611dac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be39061316e565b60405180910390fd5b611bf581611fc7565b50565b600a8054611c059061360f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c319061360f565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b505050505081565b600081611c91611e2a565b11158015611ca0575060015482105b8015611cde575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b80341015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061326e565b60405180910390fd5b80341115611d8b573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611d5e9190613525565b9081150290604051600060405180830381858888f19350505050158015611d89573d6000803e3d6000fd5b505b50565b611da882826040518060200160405280600081525061234c565b5050565b611db46123ea565b73ffffffffffffffffffffffffffffffffffffffff16611dd2611466565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f9061322e565b60405180910390fd5b565b600090565b60008082905080611e3e611e2a565b11611ec657600154811015611ec55760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ec3575b6000811415611eb9576005600083600190039350838152602001908152602001600020549050611e8e565b8092505050611ef8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f858686846123f2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b1611ce5565b8786866040518563ffffffff1660e01b81526004016120d394939291906130a3565b602060405180830381600087803b1580156120ed57600080fd5b505af192505050801561211e57506040513d601f19601f8201168201806040525081019061211b9190612b86565b60015b612198573d806000811461214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b50600081511415612190576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612233576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612347565b600082905060005b6000821461226557808061224e90613672565b915050600a8261225e919061349a565b915061223b565b60008167ffffffffffffffff811115612281576122806137a8565b5b6040519080825280601f01601f1916602001820160405280156122b35781602001600182028036833780820191505090505b5090505b60008514612340576001826122cc9190613525565b9150600a856122db91906136bb565b60306122e79190613444565b60f81b8183815181106122fd576122fc613779565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612339919061349a565b94506122b7565b8093505050505b919050565b61235683836123fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123e55760006001549050600083820390505b612397600086838060010194508661208b565b6123cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123845781600154146123e257600080fd5b50505b505050565b600033905090565b60009392505050565b60006001549050600082141561243d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61244a6000848385611f68565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124c1836124b26000866000611f6e565b6124bb856125b9565b17611f96565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461256257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612527565b50600082141561259e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506125b46000848385611fc1565b505050565b60006001821460e11b9050919050565b8280546125d59061360f565b90600052602060002090601f0160209004810192826125f7576000855561263e565b82601f1061261057805160ff191683800117855561263e565b8280016001018555821561263e579182015b8281111561263d578251825591602001919060010190612622565b5b50905061264b919061264f565b5090565b5b80821115612668576000816000905550600101612650565b5090565b600061267f61267a846132ee565b6132c9565b905080838252602082019050828560208602820111156126a2576126a16137dc565b5b60005b858110156126d257816126b888826127d0565b8452602084019350602083019250506001810190506126a5565b5050509392505050565b60006126ef6126ea8461331a565b6132c9565b90508083825260208201905082856020860282011115612712576127116137dc565b5b60005b85811015612742578161272888826128dc565b845260208401935060208301925050600181019050612715565b5050509392505050565b600061275f61275a84613346565b6132c9565b90508281526020810184848401111561277b5761277a6137e1565b5b6127868482856135cd565b509392505050565b60006127a161279c84613377565b6132c9565b9050828152602081018484840111156127bd576127bc6137e1565b5b6127c88482856135cd565b509392505050565b6000813590506127df81613a3c565b92915050565b600082601f8301126127fa576127f96137d7565b5b813561280a84826020860161266c565b91505092915050565b600082601f830112612828576128276137d7565b5b81356128388482602086016126dc565b91505092915050565b60008135905061285081613a53565b92915050565b60008135905061286581613a6a565b92915050565b60008151905061287a81613a6a565b92915050565b600082601f830112612895576128946137d7565b5b81356128a584826020860161274c565b91505092915050565b600082601f8301126128c3576128c26137d7565b5b81356128d384826020860161278e565b91505092915050565b6000813590506128eb81613a81565b92915050565b600060208284031215612907576129066137eb565b5b6000612915848285016127d0565b91505092915050565b60008060408385031215612935576129346137eb565b5b6000612943858286016127d0565b9250506020612954858286016127d0565b9150509250929050565b600080600060608486031215612977576129766137eb565b5b6000612985868287016127d0565b9350506020612996868287016127d0565b92505060406129a7868287016128dc565b9150509250925092565b600080600080608085870312156129cb576129ca6137eb565b5b60006129d9878288016127d0565b94505060206129ea878288016127d0565b93505060406129fb878288016128dc565b925050606085013567ffffffffffffffff811115612a1c57612a1b6137e6565b5b612a2887828801612880565b91505092959194509250565b60008060408385031215612a4b57612a4a6137eb565b5b6000612a59858286016127d0565b9250506020612a6a85828601612841565b9150509250929050565b60008060408385031215612a8b57612a8a6137eb565b5b6000612a99858286016127d0565b9250506020612aaa858286016128dc565b9150509250929050565b60008060408385031215612acb57612aca6137eb565b5b600083013567ffffffffffffffff811115612ae957612ae86137e6565b5b612af5858286016127e5565b925050602083013567ffffffffffffffff811115612b1657612b156137e6565b5b612b2285828601612813565b9150509250929050565b600060208284031215612b4257612b416137eb565b5b6000612b5084828501612841565b91505092915050565b600060208284031215612b6f57612b6e6137eb565b5b6000612b7d84828501612856565b91505092915050565b600060208284031215612b9c57612b9b6137eb565b5b6000612baa8482850161286b565b91505092915050565b600060208284031215612bc957612bc86137eb565b5b600082013567ffffffffffffffff811115612be757612be66137e6565b5b612bf3848285016128ae565b91505092915050565b600060208284031215612c1257612c116137eb565b5b6000612c20848285016128dc565b91505092915050565b60008060408385031215612c4057612c3f6137eb565b5b6000612c4e858286016128dc565b9250506020612c5f858286016127d0565b9150509250929050565b60008060408385031215612c8057612c7f6137eb565b5b6000612c8e858286016128dc565b9250506020612c9f858286016128dc565b9150509250929050565b6000612cb58383613026565b60208301905092915050565b612cca81613559565b82525050565b6000612cdb826133cd565b612ce581856133fb565b9350612cf0836133a8565b8060005b83811015612d21578151612d088882612ca9565b9750612d13836133ee565b925050600181019050612cf4565b5085935050505092915050565b612d378161356b565b82525050565b6000612d48826133d8565b612d52818561340c565b9350612d628185602086016135dc565b612d6b816137f0565b840191505092915050565b6000612d81826133e3565b612d8b8185613428565b9350612d9b8185602086016135dc565b612da4816137f0565b840191505092915050565b6000612dba826133e3565b612dc48185613439565b9350612dd48185602086016135dc565b80840191505092915050565b60008154612ded8161360f565b612df78186613439565b94506001821660008114612e125760018114612e2357612e56565b60ff19831686528186019350612e56565b612e2c856133b8565b60005b83811015612e4e57815481890152600182019150602081019050612e2f565b838801955050505b50505092915050565b6000612e6c601c83613428565b9150612e7782613801565b602082019050919050565b6000612e8f602683613428565b9150612e9a8261382a565b604082019050919050565b6000612eb2602383613428565b9150612ebd82613879565b604082019050919050565b6000612ed5601383613428565b9150612ee0826138c8565b602082019050919050565b6000612ef8600883613428565b9150612f03826138f1565b602082019050919050565b6000612f1b601583613428565b9150612f268261391a565b602082019050919050565b6000612f3e601983613428565b9150612f4982613943565b602082019050919050565b6000612f61600583613439565b9150612f6c8261396c565b600582019050919050565b6000612f84602083613428565b9150612f8f82613995565b602082019050919050565b6000612fa760008361341d565b9150612fb2826139be565b600082019050919050565b6000612fca601083613428565b9150612fd5826139c1565b602082019050919050565b6000612fed601683613428565b9150612ff8826139ea565b602082019050919050565b6000613010601283613428565b915061301b82613a13565b602082019050919050565b61302f816135c3565b82525050565b61303e816135c3565b82525050565b60006130508285612de0565b915061305c8284612daf565b915061306782612f54565b91508190509392505050565b600061307e82612f9a565b9150819050919050565b600060208201905061309d6000830184612cc1565b92915050565b60006080820190506130b86000830187612cc1565b6130c56020830186612cc1565b6130d26040830185613035565b81810360608301526130e48184612d3d565b905095945050505050565b600060208201905081810360008301526131098184612cd0565b905092915050565b60006020820190506131266000830184612d2e565b92915050565b600060208201905081810360008301526131468184612d76565b905092915050565b6000602082019050818103600083015261316781612e5f565b9050919050565b6000602082019050818103600083015261318781612e82565b9050919050565b600060208201905081810360008301526131a781612ea5565b9050919050565b600060208201905081810360008301526131c781612ec8565b9050919050565b600060208201905081810360008301526131e781612eeb565b9050919050565b6000602082019050818103600083015261320781612f0e565b9050919050565b6000602082019050818103600083015261322781612f31565b9050919050565b6000602082019050818103600083015261324781612f77565b9050919050565b6000602082019050818103600083015261326781612fbd565b9050919050565b6000602082019050818103600083015261328781612fe0565b9050919050565b600060208201905081810360008301526132a781613003565b9050919050565b60006020820190506132c36000830184613035565b92915050565b60006132d36132e4565b90506132df8282613641565b919050565b6000604051905090565b600067ffffffffffffffff821115613309576133086137a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613335576133346137a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613361576133606137a8565b5b61336a826137f0565b9050602081019050919050565b600067ffffffffffffffff821115613392576133916137a8565b5b61339b826137f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061344f826135c3565b915061345a836135c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561348f5761348e6136ec565b5b828201905092915050565b60006134a5826135c3565b91506134b0836135c3565b9250826134c0576134bf61371b565b5b828204905092915050565b60006134d6826135c3565b91506134e1836135c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351a576135196136ec565b5b828202905092915050565b6000613530826135c3565b915061353b836135c3565b92508282101561354e5761354d6136ec565b5b828203905092915050565b6000613564826135a3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135fa5780820151818401526020810190506135df565b83811115613609576000848401525b50505050565b6000600282049050600182168061362757607f821691505b6020821081141561363b5761363a61374a565b5b50919050565b61364a826137f0565b810181811067ffffffffffffffff82111715613669576136686137a8565b5b80604052505050565b600061367d826135c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b0576136af6136ec565b5b600182019050919050565b60006136c6826135c3565b91506136d1836135c3565b9250826136e1576136e061371b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613a4581613559565b8114613a5057600080fd5b50565b613a5c8161356b565b8114613a6757600080fd5b50565b613a7381613577565b8114613a7e57600080fd5b50565b613a8a816135c3565b8114613a9557600080fd5b5056fea26469706673582212204e595042c3c1919c06b9fd708bfb2261b75cab76ef66f5024e679bad16fb021264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000054544424f5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054544424f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6564626f792e6f73732d636e2d686f6e676b6f6e672e616c6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637225038011610123578063b4769e96116100ab578063e8a3d4851161006f578063e8a3d48514610769578063e985e9c514610794578063f2c4ce1e146107d1578063f2fde38b146107fa578063f7e8d6ea146108235761021a565b8063b4769e96146106a0578063b88d4fde146106bc578063c0116c3c146106d8578063c87b56dd14610701578063d5abeb011461073e5761021a565b806395d89b41116100f257806395d89b41146105cf578063a0bcfc7f146105fa578063a22cb46514610623578063ac4460021461064c578063ada7c4ed146106635761021a565b806372250380146105275780638da5cb5b146105525780639007bd721461057d578063938e3d7b146105a65761021a565b806340d0b4a9116101a657806355f804b31161017557806355f804b3146104425780635c975abb1461046b5780636352211e1461049657806370a08231146104d3578063715018a6146105105761021a565b806340d0b4a9146103a957806342842e0e146103c0578063438b6300146103dc578063547520fe146104195761021a565b80630fbe4fe2116101ed5780630fbe4fe2146102e057806316c38b3c146102fc57806318160ddd1461032557806323b872dd1461035057806332536eb41461036c5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612b59565b61084e565b6040516102539190613111565b60405180910390f35b34801561026857600080fd5b506102716108e0565b60405161027e919061312c565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612bfc565b610972565b6040516102bb9190613088565b60405180910390f35b6102de60048036038101906102d99190612a74565b6109f1565b005b6102fa60048036038101906102f59190612bfc565b610b35565b005b34801561030857600080fd5b50610323600480360381019061031e9190612b2c565b610deb565b005b34801561033157600080fd5b5061033a610e10565b60405161034791906132ae565b60405180910390f35b61036a6004803603810190610365919061295e565b610e27565b005b34801561037857600080fd5b50610393600480360381019061038e9190612c69565b61114c565b6040516103a091906132ae565b60405180910390f35b3480156103b557600080fd5b506103be611162565b005b6103da60048036038101906103d5919061295e565b611187565b005b3480156103e857600080fd5b5061040360048036038101906103fe91906128f1565b6111a7565b60405161041091906130ef565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612bfc565b6112b2565b005b34801561044e57600080fd5b5061046960048036038101906104649190612bb3565b6112c4565b005b34801561047757600080fd5b506104806112e6565b60405161048d9190613111565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612bfc565b6112f9565b6040516104ca9190613088565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906128f1565b61130b565b60405161050791906132ae565b60405180910390f35b34801561051c57600080fd5b506105256113c4565b005b34801561053357600080fd5b5061053c6113d8565b604051610549919061312c565b60405180910390f35b34801561055e57600080fd5b50610567611466565b6040516105749190613088565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c29565b61148f565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612bb3565b6115bc565b005b3480156105db57600080fd5b506105e46115de565b6040516105f1919061312c565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612bb3565b611670565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612a34565b611692565b005b34801561065857600080fd5b5061066161179d565b005b34801561066f57600080fd5b5061068a600480360381019061068591906128f1565b611897565b60405161069791906132ae565b60405180910390f35b6106ba60048036038101906106b59190612bfc565b6118af565b005b6106d660048036038101906106d191906129b1565b6118c4565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612ab4565b611937565b005b34801561070d57600080fd5b5061072860048036038101906107239190612bfc565b6119a2565b604051610735919061312c565b60405180910390f35b34801561074a57600080fd5b50610753611a26565b60405161076091906132ae565b60405180910390f35b34801561077557600080fd5b5061077e611a2c565b60405161078b919061312c565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b6919061291e565b611abe565b6040516107c89190613111565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612bb3565b611b52565b005b34801561080657600080fd5b50610821600480360381019061081c91906128f1565b611b74565b005b34801561082f57600080fd5b50610838611bf8565b604051610845919061312c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108ef9061360f565b80601f016020809104026020016040519081016040528092919081815260200182805461091b9061360f565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b600061097d82611c86565b6109b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fc826112f9565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1d611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8057610a4981610a44611ce5565b611abe565b610a7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b80600b60009054906101000a900460ff1615610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061328e565b60405180910390fd5b61271081610b92610e10565b610b9c9190613444565b1115610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061314e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906131ae565b60405180910390fd5b610c53610e10565b61271011610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d906131ce565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506009548382610ce99190613444565b1115610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906131ee565b60405180910390fd5b6000610d36818561114c565b341015610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f9061318e565b60405180910390fd5b610d8c8482610d8791906134cb565b611ced565b8382610d989190613444565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de53385611d8e565b50505050565b610df3611dac565b80600b60006101000a81548160ff02191690831515021790555050565b6000610e1a611e2a565b6002546001540303905090565b6000610e3282611e2f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e99576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ea584611efd565b91509150610ebb8187610eb6611ce5565b611f24565b610f0757610ed086610ecb611ce5565b611abe565b610f06576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f7b8686866001611f68565b8015610f8657600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061105485611030888887611f6e565b7c020000000000000000000000000000000000000000000000000000000017611f96565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110dc5760006001850190506000600560008381526020019081526020016000205414156110da5760015481146110d9578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111448686866001611fc1565b505050505050565b6000818361115a91906134cb565b905092915050565b61116a611dac565b6001600d60006101000a81548160ff021916908315150217905550565b6111a2838383604051806020016040528060008152506118c4565b505050565b606060006111b48361130b565b905060008167ffffffffffffffff8111156111d2576111d16137a8565b5b6040519080825280602002602001820160405280156112005781602001602082028036833780820191505090505b50905060006001905060005b838110801561121d57506127108211155b156112a657600061122d836112f9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611292578284838151811061127757611276613779565b5b602002602001018181525050818061128e90613672565b9250505b828061129d90613672565b9350505061120c565b82945050505050919050565b6112ba611dac565b8060098190555050565b6112cc611dac565b80600a90805190602001906112e29291906125c9565b5050565b600b60009054906101000a900460ff1681565b600061130482611e2f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611373576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113cc611dac565b6113d66000611fc7565b565b600f80546113e59061360f565b80601f01602080910402602001604051908101604052809291908181526020018280546114119061360f565b801561145e5780601f106114335761010080835404028352916020019161145e565b820191906000526020600020905b81548152906001019060200180831161144157829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611497611dac565b81600b60009054906101000a900460ff16156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061328e565b60405180910390fd5b612710816114f4610e10565b6114fe9190613444565b111561153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061314e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906131ae565b60405180910390fd5b6115b78284611d8e565b505050565b6115c4611dac565b80600a90805190602001906115da9291906125c9565b5050565b6060600480546115ed9061360f565b80601f01602080910402602001604051908101604052809291908181526020018280546116199061360f565b80156116665780601f1061163b57610100808354040283529160200191611666565b820191906000526020600020905b81548152906001019060200180831161164957829003601f168201915b5050505050905090565b611678611dac565b80600e908051906020019061168e9291906125c9565b5050565b806008600061169f611ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174c611ce5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117919190613111565b60405180910390a35050565b6117a5611dac565b600047116117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df9061320e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161180e90613073565b60006040518083038185875af1925050503d806000811461184b576040519150601f19603f3d011682016040523d82523d6000602084013e611850565b606091505b5050905080611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061324e565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b6118b7611dac565b6118c13382611d8e565b50565b6118cf848484610e27565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611931576118fa8484848461208b565b611930576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61193f611dac565b60005b825181101561199d5761198a3384838151811061196257611961613779565b5b602002602001015184848151811061197d5761197c613779565b5b6020026020010151611187565b808061199590613672565b915050611942565b505050565b606060011515600d60009054906101000a900460ff16151514156119f257600a6119cb836121eb565b6040516020016119dc929190613044565b6040516020818303038152906040529050611a21565b600f6119fe60016121eb565b604051602001611a0f929190613044565b60405160208183030381529060405290505b919050565b61271081565b6060600a8054611a3b9061360f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a679061360f565b8015611ab45780601f10611a8957610100808354040283529160200191611ab4565b820191906000526020600020905b815481529060010190602001808311611a9757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b5a611dac565b80600f9080519060200190611b709291906125c9565b5050565b611b7c611dac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be39061316e565b60405180910390fd5b611bf581611fc7565b50565b600a8054611c059061360f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c319061360f565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b505050505081565b600081611c91611e2a565b11158015611ca0575060015482105b8015611cde575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b80341015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061326e565b60405180910390fd5b80341115611d8b573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611d5e9190613525565b9081150290604051600060405180830381858888f19350505050158015611d89573d6000803e3d6000fd5b505b50565b611da882826040518060200160405280600081525061234c565b5050565b611db46123ea565b73ffffffffffffffffffffffffffffffffffffffff16611dd2611466565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f9061322e565b60405180910390fd5b565b600090565b60008082905080611e3e611e2a565b11611ec657600154811015611ec55760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ec3575b6000811415611eb9576005600083600190039350838152602001908152602001600020549050611e8e565b8092505050611ef8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f858686846123f2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b1611ce5565b8786866040518563ffffffff1660e01b81526004016120d394939291906130a3565b602060405180830381600087803b1580156120ed57600080fd5b505af192505050801561211e57506040513d601f19601f8201168201806040525081019061211b9190612b86565b60015b612198573d806000811461214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b50600081511415612190576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612233576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612347565b600082905060005b6000821461226557808061224e90613672565b915050600a8261225e919061349a565b915061223b565b60008167ffffffffffffffff811115612281576122806137a8565b5b6040519080825280601f01601f1916602001820160405280156122b35781602001600182028036833780820191505090505b5090505b60008514612340576001826122cc9190613525565b9150600a856122db91906136bb565b60306122e79190613444565b60f81b8183815181106122fd576122fc613779565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612339919061349a565b94506122b7565b8093505050505b919050565b61235683836123fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123e55760006001549050600083820390505b612397600086838060010194508661208b565b6123cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123845781600154146123e257600080fd5b50505b505050565b600033905090565b60009392505050565b60006001549050600082141561243d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61244a6000848385611f68565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124c1836124b26000866000611f6e565b6124bb856125b9565b17611f96565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461256257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612527565b50600082141561259e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506125b46000848385611fc1565b505050565b60006001821460e11b9050919050565b8280546125d59061360f565b90600052602060002090601f0160209004810192826125f7576000855561263e565b82601f1061261057805160ff191683800117855561263e565b8280016001018555821561263e579182015b8281111561263d578251825591602001919060010190612622565b5b50905061264b919061264f565b5090565b5b80821115612668576000816000905550600101612650565b5090565b600061267f61267a846132ee565b6132c9565b905080838252602082019050828560208602820111156126a2576126a16137dc565b5b60005b858110156126d257816126b888826127d0565b8452602084019350602083019250506001810190506126a5565b5050509392505050565b60006126ef6126ea8461331a565b6132c9565b90508083825260208201905082856020860282011115612712576127116137dc565b5b60005b85811015612742578161272888826128dc565b845260208401935060208301925050600181019050612715565b5050509392505050565b600061275f61275a84613346565b6132c9565b90508281526020810184848401111561277b5761277a6137e1565b5b6127868482856135cd565b509392505050565b60006127a161279c84613377565b6132c9565b9050828152602081018484840111156127bd576127bc6137e1565b5b6127c88482856135cd565b509392505050565b6000813590506127df81613a3c565b92915050565b600082601f8301126127fa576127f96137d7565b5b813561280a84826020860161266c565b91505092915050565b600082601f830112612828576128276137d7565b5b81356128388482602086016126dc565b91505092915050565b60008135905061285081613a53565b92915050565b60008135905061286581613a6a565b92915050565b60008151905061287a81613a6a565b92915050565b600082601f830112612895576128946137d7565b5b81356128a584826020860161274c565b91505092915050565b600082601f8301126128c3576128c26137d7565b5b81356128d384826020860161278e565b91505092915050565b6000813590506128eb81613a81565b92915050565b600060208284031215612907576129066137eb565b5b6000612915848285016127d0565b91505092915050565b60008060408385031215612935576129346137eb565b5b6000612943858286016127d0565b9250506020612954858286016127d0565b9150509250929050565b600080600060608486031215612977576129766137eb565b5b6000612985868287016127d0565b9350506020612996868287016127d0565b92505060406129a7868287016128dc565b9150509250925092565b600080600080608085870312156129cb576129ca6137eb565b5b60006129d9878288016127d0565b94505060206129ea878288016127d0565b93505060406129fb878288016128dc565b925050606085013567ffffffffffffffff811115612a1c57612a1b6137e6565b5b612a2887828801612880565b91505092959194509250565b60008060408385031215612a4b57612a4a6137eb565b5b6000612a59858286016127d0565b9250506020612a6a85828601612841565b9150509250929050565b60008060408385031215612a8b57612a8a6137eb565b5b6000612a99858286016127d0565b9250506020612aaa858286016128dc565b9150509250929050565b60008060408385031215612acb57612aca6137eb565b5b600083013567ffffffffffffffff811115612ae957612ae86137e6565b5b612af5858286016127e5565b925050602083013567ffffffffffffffff811115612b1657612b156137e6565b5b612b2285828601612813565b9150509250929050565b600060208284031215612b4257612b416137eb565b5b6000612b5084828501612841565b91505092915050565b600060208284031215612b6f57612b6e6137eb565b5b6000612b7d84828501612856565b91505092915050565b600060208284031215612b9c57612b9b6137eb565b5b6000612baa8482850161286b565b91505092915050565b600060208284031215612bc957612bc86137eb565b5b600082013567ffffffffffffffff811115612be757612be66137e6565b5b612bf3848285016128ae565b91505092915050565b600060208284031215612c1257612c116137eb565b5b6000612c20848285016128dc565b91505092915050565b60008060408385031215612c4057612c3f6137eb565b5b6000612c4e858286016128dc565b9250506020612c5f858286016127d0565b9150509250929050565b60008060408385031215612c8057612c7f6137eb565b5b6000612c8e858286016128dc565b9250506020612c9f858286016128dc565b9150509250929050565b6000612cb58383613026565b60208301905092915050565b612cca81613559565b82525050565b6000612cdb826133cd565b612ce581856133fb565b9350612cf0836133a8565b8060005b83811015612d21578151612d088882612ca9565b9750612d13836133ee565b925050600181019050612cf4565b5085935050505092915050565b612d378161356b565b82525050565b6000612d48826133d8565b612d52818561340c565b9350612d628185602086016135dc565b612d6b816137f0565b840191505092915050565b6000612d81826133e3565b612d8b8185613428565b9350612d9b8185602086016135dc565b612da4816137f0565b840191505092915050565b6000612dba826133e3565b612dc48185613439565b9350612dd48185602086016135dc565b80840191505092915050565b60008154612ded8161360f565b612df78186613439565b94506001821660008114612e125760018114612e2357612e56565b60ff19831686528186019350612e56565b612e2c856133b8565b60005b83811015612e4e57815481890152600182019150602081019050612e2f565b838801955050505b50505092915050565b6000612e6c601c83613428565b9150612e7782613801565b602082019050919050565b6000612e8f602683613428565b9150612e9a8261382a565b604082019050919050565b6000612eb2602383613428565b9150612ebd82613879565b604082019050919050565b6000612ed5601383613428565b9150612ee0826138c8565b602082019050919050565b6000612ef8600883613428565b9150612f03826138f1565b602082019050919050565b6000612f1b601583613428565b9150612f268261391a565b602082019050919050565b6000612f3e601983613428565b9150612f4982613943565b602082019050919050565b6000612f61600583613439565b9150612f6c8261396c565b600582019050919050565b6000612f84602083613428565b9150612f8f82613995565b602082019050919050565b6000612fa760008361341d565b9150612fb2826139be565b600082019050919050565b6000612fca601083613428565b9150612fd5826139c1565b602082019050919050565b6000612fed601683613428565b9150612ff8826139ea565b602082019050919050565b6000613010601283613428565b915061301b82613a13565b602082019050919050565b61302f816135c3565b82525050565b61303e816135c3565b82525050565b60006130508285612de0565b915061305c8284612daf565b915061306782612f54565b91508190509392505050565b600061307e82612f9a565b9150819050919050565b600060208201905061309d6000830184612cc1565b92915050565b60006080820190506130b86000830187612cc1565b6130c56020830186612cc1565b6130d26040830185613035565b81810360608301526130e48184612d3d565b905095945050505050565b600060208201905081810360008301526131098184612cd0565b905092915050565b60006020820190506131266000830184612d2e565b92915050565b600060208201905081810360008301526131468184612d76565b905092915050565b6000602082019050818103600083015261316781612e5f565b9050919050565b6000602082019050818103600083015261318781612e82565b9050919050565b600060208201905081810360008301526131a781612ea5565b9050919050565b600060208201905081810360008301526131c781612ec8565b9050919050565b600060208201905081810360008301526131e781612eeb565b9050919050565b6000602082019050818103600083015261320781612f0e565b9050919050565b6000602082019050818103600083015261322781612f31565b9050919050565b6000602082019050818103600083015261324781612f77565b9050919050565b6000602082019050818103600083015261326781612fbd565b9050919050565b6000602082019050818103600083015261328781612fe0565b9050919050565b600060208201905081810360008301526132a781613003565b9050919050565b60006020820190506132c36000830184613035565b92915050565b60006132d36132e4565b90506132df8282613641565b919050565b6000604051905090565b600067ffffffffffffffff821115613309576133086137a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613335576133346137a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613361576133606137a8565b5b61336a826137f0565b9050602081019050919050565b600067ffffffffffffffff821115613392576133916137a8565b5b61339b826137f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061344f826135c3565b915061345a836135c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561348f5761348e6136ec565b5b828201905092915050565b60006134a5826135c3565b91506134b0836135c3565b9250826134c0576134bf61371b565b5b828204905092915050565b60006134d6826135c3565b91506134e1836135c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351a576135196136ec565b5b828202905092915050565b6000613530826135c3565b915061353b836135c3565b92508282101561354e5761354d6136ec565b5b828203905092915050565b6000613564826135a3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135fa5780820151818401526020810190506135df565b83811115613609576000848401525b50505050565b6000600282049050600182168061362757607f821691505b6020821081141561363b5761363a61374a565b5b50919050565b61364a826137f0565b810181811067ffffffffffffffff82111715613669576136686137a8565b5b80604052505050565b600061367d826135c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b0576136af6136ec565b5b600182019050919050565b60006136c6826135c3565b91506136d1836135c3565b9250826136e1576136e061371b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613a4581613559565b8114613a5057600080fd5b50565b613a5c8161356b565b8114613a6757600080fd5b50565b613a7381613577565b8114613a7e57600080fd5b50565b613a8a816135c3565b8114613a9557600080fd5b5056fea26469706673582212204e595042c3c1919c06b9fd708bfb2261b75cab76ef66f5024e679bad16fb021264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000054544424f5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054544424f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6564626f792e6f73732d636e2d686f6e676b6f6e672e616c6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EDBOY
Arg [1] : _symbol (string): EDBOY
Arg [2] : _revealedURI (string): https://edboy.oss-cn-hongkong.aliyuncs.com/json/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4544424f59000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4544424f59000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [8] : 68747470733a2f2f6564626f792e6f73732d636e2d686f6e676b6f6e672e616c
Arg [9] : 6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000000000


Deployed Bytecode Sourcemap

57625:4734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31887:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31320:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58603:576;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61425:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21147:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35526:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59419:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60241:79;;;;;;;;;;;;;:::i;:::-;;38447:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59547:686;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60660:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60753:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57822:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26789:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22331:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;57984:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61658:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60863:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60442:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32445:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61829:253;;;;;;;;;;;;;:::i;:::-;;57854:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58252:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39238:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58371:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60985:432;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57667:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60556:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61520:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57765:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24494:639;24579:4;24918:10;24903:25;;:11;:25;;;;:102;;;;24995:10;24980:25;;:11;:25;;;;24903:102;:179;;;;25072:10;25057:25;;:11;:25;;;;24903:179;24883:199;;24494:639;;;:::o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;31887:218::-;31963:7;31988:16;31996:7;31988;:16::i;:::-;31983:64;;32013:34;;;;;;;;;;;;;;31983:64;32067:15;:24;32083:7;32067:24;;;;;;;;;;;:30;;;;;;;;;;;;32060:37;;31887:218;;;:::o;31320:408::-;31409:13;31425:16;31433:7;31425;:16::i;:::-;31409:32;;31481:5;31458:28;;:19;:17;:19::i;:::-;:28;;;31454:175;;31506:44;31523:5;31530:19;:17;:19::i;:::-;31506:16;:44::i;:::-;31501:128;;31578:35;;;;;;;;;;;;;;31501:128;31454:175;31674:2;31641:15;:24;31657:7;31641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31712:7;31708:2;31692:28;;31701:5;31692:28;;;;;;;;;;;;31398:330;31320:408;;:::o;58603:576::-;58671:8;62152:6;;;;;;;;;;;62151:7;62143:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57703:5;62216:8;62200:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62192:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;62302:10;62289:23;;:9;:23;;;62281:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58712:13:::1;:11;:13::i;:::-;57703:5;58700:25;58692:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58749:17;58769:13;:25;58783:10;58769:25;;;;;;;;;;;;;;;;58749:45;;58837:8;;58825;58813:9;:20;;;;:::i;:::-;:32;;58805:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58913:13;58962:27;58973:5;58980:8;58962:10;:27::i;:::-;58949:9;:40;;58941:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;59040:28;59059:8;59053:5;:14;;;;:::i;:::-;59040:12;:28::i;:::-;59120:8;59108:9;:20;;;;:::i;:::-;59079:13;:25;59093:10;59079:25;;;;;;;;;;;;;;;:50;;;;59140:31;59150:10;59162:8;59140:9;:31::i;:::-;58681:498;;58603:576:::0;;:::o;61425:83::-;4511:13;:11;:13::i;:::-;61494:6:::1;61485;;:15;;;;;;;;;;;;;;;;;;61425:83:::0;:::o;21147:323::-;21208:7;21436:15;:13;:15::i;:::-;21421:12;;21405:13;;:28;:46;21398:53;;21147:323;:::o;35526:2825::-;35668:27;35698;35717:7;35698:18;:27::i;:::-;35668:57;;35783:4;35742:45;;35758:19;35742:45;;;35738:86;;35796:28;;;;;;;;;;;;;;35738:86;35838:27;35867:23;35894:35;35921:7;35894:26;:35::i;:::-;35837:92;;;;36029:68;36054:15;36071:4;36077:19;:17;:19::i;:::-;36029:24;:68::i;:::-;36024:180;;36117:43;36134:4;36140:19;:17;:19::i;:::-;36117:16;:43::i;:::-;36112:92;;36169:35;;;;;;;;;;;;;;36112:92;36024:180;36235:1;36221:16;;:2;:16;;;36217:52;;;36246:23;;;;;;;;;;;;;;36217:52;36282:43;36304:4;36310:2;36314:7;36323:1;36282:21;:43::i;:::-;36418:15;36415:160;;;36558:1;36537:19;36530:30;36415:160;36955:18;:24;36974:4;36955:24;;;;;;;;;;;;;;;;36953:26;;;;;;;;;;;;37024:18;:22;37043:2;37024:22;;;;;;;;;;;;;;;;37022:24;;;;;;;;;;;37346:146;37383:2;37432:45;37447:4;37453:2;37457:19;37432:14;:45::i;:::-;17546:8;37404:73;37346:18;:146::i;:::-;37317:17;:26;37335:7;37317:26;;;;;;;;;;;:175;;;;37663:1;17546:8;37612:19;:47;:52;37608:627;;;37685:19;37717:1;37707:7;:11;37685:33;;37874:1;37840:17;:30;37858:11;37840:30;;;;;;;;;;;;:35;37836:384;;;37978:13;;37963:11;:28;37959:242;;38158:19;38125:17;:30;38143:11;38125:30;;;;;;;;;;;:52;;;;37959:242;37836:384;37666:569;37608:627;38282:7;38278:2;38263:27;;38272:4;38263:27;;;;;;;;;;;;38301:42;38322:4;38328:2;38332:7;38341:1;38301:20;:42::i;:::-;35657:2694;;;35526:2825;;;:::o;59419:120::-;59489:7;59525:6;59516;:15;;;;:::i;:::-;59509:22;;59419:120;;;;:::o;60241:79::-;4511:13;:11;:13::i;:::-;60308:4:::1;60294:11;;:18;;;;;;;;;;;;;;;;;;60241:79::o:0;38447:193::-;38593:39;38610:4;38616:2;38620:7;38593:39;;;;;;;;;;;;:16;:39::i;:::-;38447:193;;;:::o;59547:686::-;59607:16;59641:23;59667:17;59677:6;59667:9;:17::i;:::-;59641:43;;59695:30;59742:15;59728:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59695:63;;59769:22;59794:1;59769:26;;59806:23;59846:347;59871:15;59853;:33;:64;;;;;57703:5;59890:14;:27;;59853:64;59846:347;;;59934:25;59962:23;59970:14;59962:7;:23::i;:::-;59934:51;;60025:6;60004:27;;:17;:27;;;60000:151;;;60085:14;60052:13;60066:15;60052:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;60118:17;;;;;:::i;:::-;;;;60000:151;60165:16;;;;;:::i;:::-;;;;59919:274;59846:347;;;60212:13;60205:20;;;;;;59547:686;;;:::o;60660:85::-;4511:13;:11;:13::i;:::-;60733:4:::1;60722:8;:15;;;;60660:85:::0;:::o;60753:102::-;4511:13;:11;:13::i;:::-;60839:8:::1;60825:11;:22;;;;;;;;;;;;:::i;:::-;;60753:102:::0;:::o;57822:25::-;;;;;;;;;;;;;:::o;26789:152::-;26861:7;26904:27;26923:7;26904:18;:27::i;:::-;26881:52;;26789:152;;;:::o;22331:233::-;22403:7;22444:1;22427:19;;:5;:19;;;22423:60;;;22455:28;;;;;;;;;;;;;;22423:60;16490:13;22501:18;:25;22520:5;22501:25;;;;;;;;;;;;;;;;:55;22494:62;;22331:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;57984:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;61658:146::-;4511:13;:11;:13::i;:::-;61746:8:::1;62152:6;;;;;;;;;;;62151:7;62143:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57703:5;62216:8;62200:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62192:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;62302:10;62289:23;;:9;:23;;;62281:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;61767:29:::2;61777:8;61787;61767:9;:29::i;:::-;4535:1:::1;61658:146:::0;;:::o;60863:114::-;4511:13;:11;:13::i;:::-;60957:12:::1;60943:11;:26;;;;;;;;;;;;:::i;:::-;;60863:114:::0;:::o;25572:104::-;25628:13;25661:7;25654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25572:104;:::o;60442:106::-;4511:13;:11;:13::i;:::-;60532:8:::1;60516:13;:24;;;;;;;;;;;;:::i;:::-;;60442:106:::0;:::o;32445:234::-;32592:8;32540:18;:39;32559:19;:17;:19::i;:::-;32540:39;;;;;;;;;;;;;;;:49;32580:8;32540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32652:8;32616:55;;32631:19;:17;:19::i;:::-;32616:55;;;32662:8;32616:55;;;;;;:::i;:::-;;;;;;;;32445:234;;:::o;61829:253::-;4511:13;:11;:13::i;:::-;61917:1:::1;61893:21;:25;61885:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;61960:12;61978:10;:15;;62001:21;61978:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61959:68;;;62046:7;62038:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61874:208;61829:253::o:0;57854:48::-;;;;;;;;;;;;;;;;;:::o;58252:111::-;4511:13;:11;:13::i;:::-;58324:31:::1;58334:10;58346:8;58324:9;:31::i;:::-;58252:111:::0;:::o;39238:407::-;39413:31;39426:4;39432:2;39436:7;39413:12;:31::i;:::-;39477:1;39459:2;:14;;;:19;39455:183;;39498:56;39529:4;39535:2;39539:7;39548:5;39498:30;:56::i;:::-;39493:145;;39582:40;;;;;;;;;;;;;;39493:145;39455:183;39238:407;;;;:::o;58371:224::-;4511:13;:11;:13::i;:::-;58474:9:::1;58469:119;58493:5;:12;58489:1;:16;58469:119;;;58527:49;58544:10;58556:5;58562:1;58556:8;;;;;;;;:::i;:::-;;;;;;;;58566:6;58573:1;58566:9;;;;;;;;:::i;:::-;;;;;;;;58527:16;:49::i;:::-;58507:3;;;;;:::i;:::-;;;;58469:119;;;;58371:224:::0;;:::o;60985:432::-;61051:13;61187:4;61172:19;;:11;;;;;;;;;;;:19;;;61168:242;;;61238:11;61251:26;61268:8;61251:16;:26::i;:::-;61221:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61207:81;;;;61168:242;61352:14;61368:19;61385:1;61368:16;:19::i;:::-;61335:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61321:77;;60985:432;;;;:::o;57667:41::-;57703:5;57667:41;:::o;60556:96::-;60600:13;60633:11;60626:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60556:96;:::o;32836:164::-;32933:4;32957:18;:25;32976:5;32957:25;;;;;;;;;;;;;;;:35;32983:8;32957:35;;;;;;;;;;;;;;;;;;;;;;;;;32950:42;;32836:164;;;;:::o;61520:126::-;4511:13;:11;:13::i;:::-;61623:15:::1;61606:14;:32;;;;;;;;;;;;:::i;:::-;;61520:126:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;57765:50::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33258:282::-;33323:4;33379:7;33360:15;:13;:15::i;:::-;:26;;:66;;;;;33413:13;;33403:7;:23;33360:66;:153;;;;;33512:1;17266:8;33464:17;:26;33482:7;33464:26;;;;;;;;;;;;:44;:49;33360:153;33340:173;;33258:282;;;:::o;55566:105::-;55626:7;55653:10;55646:17;;55566:105;:::o;59187:224::-;59264:5;59251:9;:18;;59243:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;59323:5;59311:9;:17;59307:97;;;59353:10;59345:28;;:47;59386:5;59374:9;:17;;;;:::i;:::-;59345:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59307:97;59187:224;:::o;49398:112::-;49475:27;49485:2;49489:8;49475:27;;;;;;;;;;;;:9;:27::i;:::-;49398:112;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;20663:92::-;20719:7;20663:92;:::o;27944:1275::-;28011:7;28031:12;28046:7;28031:22;;28114:4;28095:15;:13;:15::i;:::-;:23;28091:1061;;28148:13;;28141:4;:20;28137:1015;;;28186:14;28203:17;:23;28221:4;28203:23;;;;;;;;;;;;28186:40;;28320:1;17266:8;28292:6;:24;:29;28288:845;;;28957:113;28974:1;28964:6;:11;28957:113;;;29017:17;:25;29035:6;;;;;;;29017:25;;;;;;;;;;;;29008:34;;28957:113;;;29103:6;29096:13;;;;;;28288:845;28163:989;28137:1015;28091:1061;29180:31;;;;;;;;;;;;;;27944:1275;;;;:::o;34421:485::-;34523:27;34552:23;34593:38;34634:15;:24;34650:7;34634:24;;;;;;;;;;;34593:65;;34811:18;34788:41;;34868:19;34862:26;34843:45;;34773:126;34421:485;;;:::o;33649:659::-;33798:11;33963:16;33956:5;33952:28;33943:37;;34123:16;34112:9;34108:32;34095:45;;34273:15;34262:9;34259:30;34251:5;34240:9;34237:20;34234:56;34224:66;;33649:659;;;;;:::o;40307:159::-;;;;;:::o;54875:311::-;55010:7;55030:16;17670:3;55056:19;:41;;55030:68;;17670:3;55124:31;55135:4;55141:2;55145:9;55124:10;:31::i;:::-;55116:40;;:62;;55109:69;;;54875:311;;;;;:::o;29767:450::-;29847:14;30015:16;30008:5;30004:28;29995:37;;30192:5;30178:11;30153:23;30149:41;30146:52;30139:5;30136:63;30126:73;;29767:450;;;;:::o;41131:158::-;;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;41729:716::-;41892:4;41938:2;41913:45;;;41959:19;:17;:19::i;:::-;41980:4;41986:7;41995:5;41913:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42213:1;42196:6;:13;:18;42192:235;;;42242:40;;;;;;;;;;;;;;42192:235;42385:6;42379:13;42370:6;42366:2;42362:15;42355:38;41909:529;42082:54;;;42072:64;;;:6;:64;;;;42065:71;;;41729:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;48625:689::-;48756:19;48762:2;48766:8;48756:5;:19::i;:::-;48835:1;48817:2;:14;;;:19;48813:483;;48857:11;48871:13;;48857:27;;48903:13;48925:8;48919:3;:14;48903:30;;48952:233;48983:62;49022:1;49026:2;49030:7;;;;;;49039:5;48983:30;:62::i;:::-;48978:167;;49081:40;;;;;;;;;;;;;;48978:167;49180:3;49172:5;:11;48952:233;;49267:3;49250:13;;:20;49246:34;;49272:8;;;49246:34;48838:458;;48813:483;48625:689;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;54576:147::-;54713:6;54576:147;;;;;:::o;42907:2966::-;42980:20;43003:13;;42980:36;;43043:1;43031:8;:13;43027:44;;;43053:18;;;;;;;;;;;;;;43027:44;43084:61;43114:1;43118:2;43122:12;43136:8;43084:21;:61::i;:::-;43628:1;16628:2;43598:1;:26;;43597:32;43585:8;:45;43559:18;:22;43578:2;43559:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43907:139;43944:2;43998:33;44021:1;44025:2;44029:1;43998:14;:33::i;:::-;43965:30;43986:8;43965:20;:30::i;:::-;:66;43907:18;:139::i;:::-;43873:17;:31;43891:12;43873:31;;;;;;;;;;;:173;;;;44063:16;44094:11;44123:8;44108:12;:23;44094:37;;44644:16;44640:2;44636:25;44624:37;;45016:12;44976:8;44935:1;44873:25;44814:1;44753;44726:335;45387:1;45373:12;45369:20;45327:346;45428:3;45419:7;45416:16;45327:346;;45646:7;45636:8;45633:1;45606:25;45603:1;45600;45595:59;45481:1;45472:7;45468:15;45457:26;;45327:346;;;45331:77;45718:1;45706:8;:13;45702:45;;;45728:19;;;;;;;;;;;;;;45702:45;45780:3;45764:13;:19;;;;43333:2462;;45805:60;45834:1;45838:2;45842:12;45856:8;45805:20;:60::i;:::-;42969:2904;42907:2966;;:::o;30319:324::-;30389:14;30622:1;30612:8;30609:15;30583:24;30579:46;30569:56;;30319:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:894::-;8014:6;8022;8071:2;8059:9;8050:7;8046:23;8042:32;8039:119;;;8077:79;;:::i;:::-;8039:119;8225:1;8214:9;8210:17;8197:31;8255:18;8247:6;8244:30;8241:117;;;8277:79;;:::i;:::-;8241:117;8382:78;8452:7;8443:6;8432:9;8428:22;8382:78;:::i;:::-;8372:88;;8168:302;8537:2;8526:9;8522:18;8509:32;8568:18;8560:6;8557:30;8554:117;;;8590:79;;:::i;:::-;8554:117;8695:78;8765:7;8756:6;8745:9;8741:22;8695:78;:::i;:::-;8685:88;;8480:303;7896:894;;;;;:::o;8796:323::-;8852:6;8901:2;8889:9;8880:7;8876:23;8872:32;8869:119;;;8907:79;;:::i;:::-;8869:119;9027:1;9052:50;9094:7;9085:6;9074:9;9070:22;9052:50;:::i;:::-;9042:60;;8998:114;8796:323;;;;:::o;9125:327::-;9183:6;9232:2;9220:9;9211:7;9207:23;9203:32;9200:119;;;9238:79;;:::i;:::-;9200:119;9358:1;9383:52;9427:7;9418:6;9407:9;9403:22;9383:52;:::i;:::-;9373:62;;9329:116;9125:327;;;;:::o;9458:349::-;9527:6;9576:2;9564:9;9555:7;9551:23;9547:32;9544:119;;;9582:79;;:::i;:::-;9544:119;9702:1;9727:63;9782:7;9773:6;9762:9;9758:22;9727:63;:::i;:::-;9717:73;;9673:127;9458:349;;;;:::o;9813:509::-;9882:6;9931:2;9919:9;9910:7;9906:23;9902:32;9899:119;;;9937:79;;:::i;:::-;9899:119;10085:1;10074:9;10070:17;10057:31;10115:18;10107:6;10104:30;10101:117;;;10137:79;;:::i;:::-;10101:117;10242:63;10297:7;10288:6;10277:9;10273:22;10242:63;:::i;:::-;10232:73;;10028:287;9813:509;;;;:::o;10328:329::-;10387:6;10436:2;10424:9;10415:7;10411:23;10407:32;10404:119;;;10442:79;;:::i;:::-;10404:119;10562:1;10587:53;10632:7;10623:6;10612:9;10608:22;10587:53;:::i;:::-;10577:63;;10533:117;10328:329;;;;:::o;10663:474::-;10731:6;10739;10788:2;10776:9;10767:7;10763:23;10759:32;10756:119;;;10794:79;;:::i;:::-;10756:119;10914:1;10939:53;10984:7;10975:6;10964:9;10960:22;10939:53;:::i;:::-;10929:63;;10885:117;11041:2;11067:53;11112:7;11103:6;11092:9;11088:22;11067:53;:::i;:::-;11057:63;;11012:118;10663:474;;;;;:::o;11143:::-;11211:6;11219;11268:2;11256:9;11247:7;11243:23;11239:32;11236:119;;;11274:79;;:::i;:::-;11236:119;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;11143:474;;;;;:::o;11623:179::-;11692:10;11713:46;11755:3;11747:6;11713:46;:::i;:::-;11791:4;11786:3;11782:14;11768:28;;11623:179;;;;:::o;11808:118::-;11895:24;11913:5;11895:24;:::i;:::-;11890:3;11883:37;11808:118;;:::o;11962:732::-;12081:3;12110:54;12158:5;12110:54;:::i;:::-;12180:86;12259:6;12254:3;12180:86;:::i;:::-;12173:93;;12290:56;12340:5;12290:56;:::i;:::-;12369:7;12400:1;12385:284;12410:6;12407:1;12404:13;12385:284;;;12486:6;12480:13;12513:63;12572:3;12557:13;12513:63;:::i;:::-;12506:70;;12599:60;12652:6;12599:60;:::i;:::-;12589:70;;12445:224;12432:1;12429;12425:9;12420:14;;12385:284;;;12389:14;12685:3;12678:10;;12086:608;;;11962:732;;;;:::o;12700:109::-;12781:21;12796:5;12781:21;:::i;:::-;12776:3;12769:34;12700:109;;:::o;12815:360::-;12901:3;12929:38;12961:5;12929:38;:::i;:::-;12983:70;13046:6;13041:3;12983:70;:::i;:::-;12976:77;;13062:52;13107:6;13102:3;13095:4;13088:5;13084:16;13062:52;:::i;:::-;13139:29;13161:6;13139:29;:::i;:::-;13134:3;13130:39;13123:46;;12905:270;12815:360;;;;:::o;13181:364::-;13269:3;13297:39;13330:5;13297:39;:::i;:::-;13352:71;13416:6;13411:3;13352:71;:::i;:::-;13345:78;;13432:52;13477:6;13472:3;13465:4;13458:5;13454:16;13432:52;:::i;:::-;13509:29;13531:6;13509:29;:::i;:::-;13504:3;13500:39;13493:46;;13273:272;13181:364;;;;:::o;13551:377::-;13657:3;13685:39;13718:5;13685:39;:::i;:::-;13740:89;13822:6;13817:3;13740:89;:::i;:::-;13733:96;;13838:52;13883:6;13878:3;13871:4;13864:5;13860:16;13838:52;:::i;:::-;13915:6;13910:3;13906:16;13899:23;;13661:267;13551:377;;;;:::o;13958:845::-;14061:3;14098:5;14092:12;14127:36;14153:9;14127:36;:::i;:::-;14179:89;14261:6;14256:3;14179:89;:::i;:::-;14172:96;;14299:1;14288:9;14284:17;14315:1;14310:137;;;;14461:1;14456:341;;;;14277:520;;14310:137;14394:4;14390:9;14379;14375:25;14370:3;14363:38;14430:6;14425:3;14421:16;14414:23;;14310:137;;14456:341;14523:38;14555:5;14523:38;:::i;:::-;14583:1;14597:154;14611:6;14608:1;14605:13;14597:154;;;14685:7;14679:14;14675:1;14670:3;14666:11;14659:35;14735:1;14726:7;14722:15;14711:26;;14633:4;14630:1;14626:12;14621:17;;14597:154;;;14780:6;14775:3;14771:16;14764:23;;14463:334;;14277:520;;14065:738;;13958:845;;;;:::o;14809:366::-;14951:3;14972:67;15036:2;15031:3;14972:67;:::i;:::-;14965:74;;15048:93;15137:3;15048:93;:::i;:::-;15166:2;15161:3;15157:12;15150:19;;14809:366;;;:::o;15181:::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:::-;15695:3;15716:67;15780:2;15775:3;15716:67;:::i;:::-;15709:74;;15792:93;15881:3;15792:93;:::i;:::-;15910:2;15905:3;15901:12;15894:19;;15553:366;;;:::o;15925:::-;16067:3;16088:67;16152:2;16147:3;16088:67;:::i;:::-;16081:74;;16164:93;16253:3;16164:93;:::i;:::-;16282:2;16277:3;16273:12;16266:19;;15925:366;;;:::o;16297:365::-;16439:3;16460:66;16524:1;16519:3;16460:66;:::i;:::-;16453:73;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16297:365;;;:::o;16668:366::-;16810:3;16831:67;16895:2;16890:3;16831:67;:::i;:::-;16824:74;;16907:93;16996:3;16907:93;:::i;:::-;17025:2;17020:3;17016:12;17009:19;;16668:366;;;:::o;17040:::-;17182:3;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17279:93;17368:3;17279:93;:::i;:::-;17397:2;17392:3;17388:12;17381:19;;17040:366;;;:::o;17412:400::-;17572:3;17593:84;17675:1;17670:3;17593:84;:::i;:::-;17586:91;;17686:93;17775:3;17686:93;:::i;:::-;17804:1;17799:3;17795:11;17788:18;;17412:400;;;:::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:398::-;18349:3;18370:83;18451:1;18446:3;18370:83;:::i;:::-;18363:90;;18462:93;18551:3;18462:93;:::i;:::-;18580:1;18575:3;18571:11;18564:18;;18190:398;;;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18594:366;;;:::o;18966:::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;18966:366;;;:::o;19338:::-;19480:3;19501:67;19565:2;19560:3;19501:67;:::i;:::-;19494:74;;19577:93;19666:3;19577:93;:::i;:::-;19695:2;19690:3;19686:12;19679:19;;19338:366;;;:::o;19710:108::-;19787:24;19805:5;19787:24;:::i;:::-;19782:3;19775:37;19710:108;;:::o;19824:118::-;19911:24;19929:5;19911:24;:::i;:::-;19906:3;19899:37;19824:118;;:::o;19948:695::-;20226:3;20248:92;20336:3;20327:6;20248:92;:::i;:::-;20241:99;;20357:95;20448:3;20439:6;20357:95;:::i;:::-;20350:102;;20469:148;20613:3;20469:148;:::i;:::-;20462:155;;20634:3;20627:10;;19948:695;;;;;:::o;20649:379::-;20833:3;20855:147;20998:3;20855:147;:::i;:::-;20848:154;;21019:3;21012:10;;20649:379;;;:::o;21034:222::-;21127:4;21165:2;21154:9;21150:18;21142:26;;21178:71;21246:1;21235:9;21231:17;21222:6;21178:71;:::i;:::-;21034:222;;;;:::o;21262:640::-;21457:4;21495:3;21484:9;21480:19;21472:27;;21509:71;21577:1;21566:9;21562:17;21553:6;21509:71;:::i;:::-;21590:72;21658:2;21647:9;21643:18;21634:6;21590:72;:::i;:::-;21672;21740:2;21729:9;21725:18;21716:6;21672:72;:::i;:::-;21791:9;21785:4;21781:20;21776:2;21765:9;21761:18;21754:48;21819:76;21890:4;21881:6;21819:76;:::i;:::-;21811:84;;21262:640;;;;;;;:::o;21908:373::-;22051:4;22089:2;22078:9;22074:18;22066:26;;22138:9;22132:4;22128:20;22124:1;22113:9;22109:17;22102:47;22166:108;22269:4;22260:6;22166:108;:::i;:::-;22158:116;;21908:373;;;;:::o;22287:210::-;22374:4;22412:2;22401:9;22397:18;22389:26;;22425:65;22487:1;22476:9;22472:17;22463:6;22425:65;:::i;:::-;22287:210;;;;:::o;22503:313::-;22616:4;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:78;22804:4;22795:6;22731:78;:::i;:::-;22723:86;;22503:313;;;;:::o;22822:419::-;22988:4;23026:2;23015:9;23011:18;23003:26;;23075:9;23069:4;23065:20;23061:1;23050:9;23046:17;23039:47;23103:131;23229:4;23103:131;:::i;:::-;23095:139;;22822:419;;;:::o;23247:::-;23413:4;23451:2;23440:9;23436:18;23428:26;;23500:9;23494:4;23490:20;23486:1;23475:9;23471:17;23464:47;23528:131;23654:4;23528:131;:::i;:::-;23520:139;;23247:419;;;:::o;23672:::-;23838:4;23876:2;23865:9;23861:18;23853:26;;23925:9;23919:4;23915:20;23911:1;23900:9;23896:17;23889:47;23953:131;24079:4;23953:131;:::i;:::-;23945:139;;23672:419;;;:::o;24097:::-;24263:4;24301:2;24290:9;24286:18;24278:26;;24350:9;24344:4;24340:20;24336:1;24325:9;24321:17;24314:47;24378:131;24504:4;24378:131;:::i;:::-;24370:139;;24097:419;;;:::o;24522:::-;24688:4;24726:2;24715:9;24711:18;24703:26;;24775:9;24769:4;24765:20;24761:1;24750:9;24746:17;24739:47;24803:131;24929:4;24803:131;:::i;:::-;24795:139;;24522:419;;;:::o;24947:::-;25113:4;25151:2;25140:9;25136:18;25128:26;;25200:9;25194:4;25190:20;25186:1;25175:9;25171:17;25164:47;25228:131;25354:4;25228:131;:::i;:::-;25220:139;;24947:419;;;:::o;25372:::-;25538:4;25576:2;25565:9;25561:18;25553:26;;25625:9;25619:4;25615:20;25611:1;25600:9;25596:17;25589:47;25653:131;25779:4;25653:131;:::i;:::-;25645:139;;25372:419;;;:::o;25797:::-;25963:4;26001:2;25990:9;25986:18;25978:26;;26050:9;26044:4;26040:20;26036:1;26025:9;26021:17;26014:47;26078:131;26204:4;26078:131;:::i;:::-;26070:139;;25797:419;;;:::o;26222:::-;26388:4;26426:2;26415:9;26411:18;26403:26;;26475:9;26469:4;26465:20;26461:1;26450:9;26446:17;26439:47;26503:131;26629:4;26503:131;:::i;:::-;26495:139;;26222:419;;;:::o;26647:::-;26813:4;26851:2;26840:9;26836:18;26828:26;;26900:9;26894:4;26890:20;26886:1;26875:9;26871:17;26864:47;26928:131;27054:4;26928:131;:::i;:::-;26920:139;;26647:419;;;:::o;27072:::-;27238:4;27276:2;27265:9;27261:18;27253:26;;27325:9;27319:4;27315:20;27311:1;27300:9;27296:17;27289:47;27353:131;27479:4;27353:131;:::i;:::-;27345:139;;27072:419;;;:::o;27497:222::-;27590:4;27628:2;27617:9;27613:18;27605:26;;27641:71;27709:1;27698:9;27694:17;27685:6;27641:71;:::i;:::-;27497:222;;;;:::o;27725:129::-;27759:6;27786:20;;:::i;:::-;27776:30;;27815:33;27843:4;27835:6;27815:33;:::i;:::-;27725:129;;;:::o;27860:75::-;27893:6;27926:2;27920:9;27910:19;;27860:75;:::o;27941:311::-;28018:4;28108:18;28100:6;28097:30;28094:56;;;28130:18;;:::i;:::-;28094:56;28180:4;28172:6;28168:17;28160:25;;28240:4;28234;28230:15;28222:23;;27941:311;;;:::o;28258:::-;28335:4;28425:18;28417:6;28414:30;28411:56;;;28447:18;;:::i;:::-;28411:56;28497:4;28489:6;28485:17;28477:25;;28557:4;28551;28547:15;28539:23;;28258:311;;;:::o;28575:307::-;28636:4;28726:18;28718:6;28715:30;28712:56;;;28748:18;;:::i;:::-;28712:56;28786:29;28808:6;28786:29;:::i;:::-;28778:37;;28870:4;28864;28860:15;28852:23;;28575:307;;;:::o;28888:308::-;28950:4;29040:18;29032:6;29029:30;29026:56;;;29062:18;;:::i;:::-;29026:56;29100:29;29122:6;29100:29;:::i;:::-;29092:37;;29184:4;29178;29174:15;29166:23;;28888:308;;;:::o;29202:132::-;29269:4;29292:3;29284:11;;29322:4;29317:3;29313:14;29305:22;;29202:132;;;:::o;29340:141::-;29389:4;29412:3;29404:11;;29435:3;29432:1;29425:14;29469:4;29466:1;29456:18;29448:26;;29340:141;;;:::o;29487:114::-;29554:6;29588:5;29582:12;29572:22;;29487:114;;;:::o;29607:98::-;29658:6;29692:5;29686:12;29676:22;;29607:98;;;:::o;29711:99::-;29763:6;29797:5;29791:12;29781:22;;29711:99;;;:::o;29816:113::-;29886:4;29918;29913:3;29909:14;29901:22;;29816:113;;;:::o;29935:184::-;30034:11;30068:6;30063:3;30056:19;30108:4;30103:3;30099:14;30084:29;;29935:184;;;;:::o;30125:168::-;30208:11;30242:6;30237:3;30230:19;30282:4;30277:3;30273:14;30258:29;;30125:168;;;;:::o;30299:147::-;30400:11;30437:3;30422:18;;30299:147;;;;:::o;30452:169::-;30536:11;30570:6;30565:3;30558:19;30610:4;30605:3;30601:14;30586:29;;30452:169;;;;:::o;30627:148::-;30729:11;30766:3;30751:18;;30627:148;;;;:::o;30781:305::-;30821:3;30840:20;30858:1;30840:20;:::i;:::-;30835:25;;30874:20;30892:1;30874:20;:::i;:::-;30869:25;;31028:1;30960:66;30956:74;30953:1;30950:81;30947:107;;;31034:18;;:::i;:::-;30947:107;31078:1;31075;31071:9;31064:16;;30781:305;;;;:::o;31092:185::-;31132:1;31149:20;31167:1;31149:20;:::i;:::-;31144:25;;31183:20;31201:1;31183:20;:::i;:::-;31178:25;;31222:1;31212:35;;31227:18;;:::i;:::-;31212:35;31269:1;31266;31262:9;31257:14;;31092:185;;;;:::o;31283:348::-;31323:7;31346:20;31364:1;31346:20;:::i;:::-;31341:25;;31380:20;31398:1;31380:20;:::i;:::-;31375:25;;31568:1;31500:66;31496:74;31493:1;31490:81;31485:1;31478:9;31471:17;31467:105;31464:131;;;31575:18;;:::i;:::-;31464:131;31623:1;31620;31616:9;31605:20;;31283:348;;;;:::o;31637:191::-;31677:4;31697:20;31715:1;31697:20;:::i;:::-;31692:25;;31731:20;31749:1;31731:20;:::i;:::-;31726:25;;31770:1;31767;31764:8;31761:34;;;31775:18;;:::i;:::-;31761:34;31820:1;31817;31813:9;31805:17;;31637:191;;;;:::o;31834:96::-;31871:7;31900:24;31918:5;31900:24;:::i;:::-;31889:35;;31834:96;;;:::o;31936:90::-;31970:7;32013:5;32006:13;31999:21;31988:32;;31936:90;;;:::o;32032:149::-;32068:7;32108:66;32101:5;32097:78;32086:89;;32032:149;;;:::o;32187:126::-;32224:7;32264:42;32257:5;32253:54;32242:65;;32187:126;;;:::o;32319:77::-;32356:7;32385:5;32374:16;;32319:77;;;:::o;32402:154::-;32486:6;32481:3;32476;32463:30;32548:1;32539:6;32534:3;32530:16;32523:27;32402:154;;;:::o;32562:307::-;32630:1;32640:113;32654:6;32651:1;32648:13;32640:113;;;32739:1;32734:3;32730:11;32724:18;32720:1;32715:3;32711:11;32704:39;32676:2;32673:1;32669:10;32664:15;;32640:113;;;32771:6;32768:1;32765:13;32762:101;;;32851:1;32842:6;32837:3;32833:16;32826:27;32762:101;32611:258;32562:307;;;:::o;32875:320::-;32919:6;32956:1;32950:4;32946:12;32936:22;;33003:1;32997:4;32993:12;33024:18;33014:81;;33080:4;33072:6;33068:17;33058:27;;33014:81;33142:2;33134:6;33131:14;33111:18;33108:38;33105:84;;;33161:18;;:::i;:::-;33105:84;32926:269;32875:320;;;:::o;33201:281::-;33284:27;33306:4;33284:27;:::i;:::-;33276:6;33272:40;33414:6;33402:10;33399:22;33378:18;33366:10;33363:34;33360:62;33357:88;;;33425:18;;:::i;:::-;33357:88;33465:10;33461:2;33454:22;33244:238;33201:281;;:::o;33488:233::-;33527:3;33550:24;33568:5;33550:24;:::i;:::-;33541:33;;33596:66;33589:5;33586:77;33583:103;;;33666:18;;:::i;:::-;33583:103;33713:1;33706:5;33702:13;33695:20;;33488:233;;;:::o;33727:176::-;33759:1;33776:20;33794:1;33776:20;:::i;:::-;33771:25;;33810:20;33828:1;33810:20;:::i;:::-;33805:25;;33849:1;33839:35;;33854:18;;:::i;:::-;33839:35;33895:1;33892;33888:9;33883:14;;33727:176;;;;:::o;33909:180::-;33957:77;33954:1;33947:88;34054:4;34051:1;34044:15;34078:4;34075:1;34068:15;34095:180;34143:77;34140:1;34133:88;34240:4;34237:1;34230:15;34264:4;34261:1;34254:15;34281:180;34329:77;34326:1;34319:88;34426:4;34423:1;34416:15;34450:4;34447:1;34440:15;34467:180;34515:77;34512:1;34505:88;34612:4;34609:1;34602:15;34636:4;34633:1;34626:15;34653:180;34701:77;34698:1;34691:88;34798:4;34795:1;34788:15;34822:4;34819:1;34812:15;34839:117;34948:1;34945;34938:12;34962:117;35071:1;35068;35061:12;35085:117;35194:1;35191;35184:12;35208:117;35317:1;35314;35307:12;35331:117;35440:1;35437;35430:12;35454:102;35495:6;35546:2;35542:7;35537:2;35530:5;35526:14;35522:28;35512:38;;35454:102;;;:::o;35562:178::-;35702:30;35698:1;35690:6;35686:14;35679:54;35562:178;:::o;35746:225::-;35886:34;35882:1;35874:6;35870:14;35863:58;35955:8;35950:2;35942:6;35938:15;35931:33;35746:225;:::o;35977:222::-;36117:34;36113:1;36105:6;36101:14;36094:58;36186:5;36181:2;36173:6;36169:15;36162:30;35977:222;:::o;36205:169::-;36345:21;36341:1;36333:6;36329:14;36322:45;36205:169;:::o;36380:158::-;36520:10;36516:1;36508:6;36504:14;36497:34;36380:158;:::o;36544:171::-;36684:23;36680:1;36672:6;36668:14;36661:47;36544:171;:::o;36721:175::-;36861:27;36857:1;36849:6;36845:14;36838:51;36721:175;:::o;36902:155::-;37042:7;37038:1;37030:6;37026:14;37019:31;36902:155;:::o;37063:182::-;37203:34;37199:1;37191:6;37187:14;37180:58;37063:182;:::o;37251:114::-;;:::o;37371:166::-;37511:18;37507:1;37499:6;37495:14;37488:42;37371:166;:::o;37543:172::-;37683:24;37679:1;37671:6;37667:14;37660:48;37543:172;:::o;37721:168::-;37861:20;37857:1;37849:6;37845:14;37838:44;37721:168;:::o;37895:122::-;37968:24;37986:5;37968:24;:::i;:::-;37961:5;37958:35;37948:63;;38007:1;38004;37997:12;37948:63;37895:122;:::o;38023:116::-;38093:21;38108:5;38093:21;:::i;:::-;38086:5;38083:32;38073:60;;38129:1;38126;38119:12;38073:60;38023:116;:::o;38145:120::-;38217:23;38234:5;38217:23;:::i;:::-;38210:5;38207:34;38197:62;;38255:1;38252;38245:12;38197:62;38145:120;:::o;38271:122::-;38344:24;38362:5;38344:24;:::i;:::-;38337:5;38334:35;38324:63;;38383:1;38380;38373:12;38324:63;38271:122;:::o

Swarm Source

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