ETH Price: $3,306.88 (-5.23%)

Token

THE FREE GUY (GUYS)
 

Overview

Max Total Supply

500 GUYS

Holders

116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
drevilman.eth
Balance
1 GUYS
0x91D262ba741e46058F68A45b664D8Ff2D4C51596
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:
TheFreeGuy

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-27
*/

// File: contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
████████╗██╗  ██╗███████╗    ███████╗██████╗ ███████╗███████╗     ██████╗ ██╗   ██╗██╗   ██╗
╚══██╔══╝██║  ██║██╔════╝    ██╔════╝██╔══██╗██╔════╝██╔════╝    ██╔════╝ ██║   ██║╚██╗ ██╔╝
   ██║   ███████║█████╗      █████╗  ██████╔╝█████╗  █████╗      ██║  ███╗██║   ██║ ╚████╔╝ 
   ██║   ██╔══██║██╔══╝      ██╔══╝  ██╔══██╗██╔══╝  ██╔══╝      ██║   ██║██║   ██║  ╚██╔╝  
   ██║   ██║  ██║███████╗    ██║     ██║  ██║███████╗███████╗    ╚██████╔╝╚██████╔╝   ██║   
   ╚═╝   ╚═╝  ╚═╝╚══════╝    ╚═╝     ╚═╝  ╚═╝╚══════╝╚══════╝     ╚═════╝  ╚═════╝    ╚═╝   

                     █▄░█ █▀▀ ▀█▀   █▀▀ █▀█ █▄░█ ▀█▀ █▀█ ▄▀█ █▀▀ ▀█▀  
                     █░▀█ █▀░ ░█░   █▄▄ █▄█ █░▀█ ░█░ █▀▄ █▀█ █▄▄ ░█░    

                                ─▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▄
                                 █░░░█░░░░░░░░░░▄▄░██░█
                                 █░▀▀█▀▀░▄▀░▄▀░░▀▀░▄▄░█
                                 █░░░▀░░░▄▄▄▄▄░░██░▀▀░█
                                ─▀▄▄▄▄▄▀─────▀▄▄▄▄▄▄▀
                                                                                                    
 */

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: TheFreeGuy.sol


pragma solidity >=0.8.0 <0.9.0;




/**
████████╗██╗  ██╗███████╗    ███████╗██████╗ ███████╗███████╗     ██████╗ ██╗   ██╗██╗   ██╗
╚══██╔══╝██║  ██║██╔════╝    ██╔════╝██╔══██╗██╔════╝██╔════╝    ██╔════╝ ██║   ██║╚██╗ ██╔╝
   ██║   ███████║█████╗      █████╗  ██████╔╝█████╗  █████╗      ██║  ███╗██║   ██║ ╚████╔╝ 
   ██║   ██╔══██║██╔══╝      ██╔══╝  ██╔══██╗██╔══╝  ██╔══╝      ██║   ██║██║   ██║  ╚██╔╝  
   ██║   ██║  ██║███████╗    ██║     ██║  ██║███████╗███████╗    ╚██████╔╝╚██████╔╝   ██║   
   ╚═╝   ╚═╝  ╚═╝╚══════╝    ╚═╝     ╚═╝  ╚═╝╚══════╝╚══════╝     ╚═════╝  ╚═════╝    ╚═╝   
   
                     ░█▀▀█ ░█▀▀▀█ ░█▄─░█ ▀▀█▀▀ ░█▀▀█ ─█▀▀█ ░█▀▀█ ▀▀█▀▀ 
                     ░█─── ░█──░█ ░█░█░█ ─░█── ░█▄▄▀ ░█▄▄█ ░█─── ─░█── 
                     ░█▄▄█ ░█▄▄▄█ ░█──▀█ ─░█── ░█─░█ ░█─░█ ░█▄▄█ ─░█──                                                                                          
 */

/**
 * @notice This contract inherits from Ownable, an access control contract
 * which grants this contract's owner exclusive access to certain functions.
 * Ownership may be transferred and/or renounced by this contract's owner.
 * Calling the `owner` function of this contract will return the address of the owner.
 * @notice The following outlines how final token metadata will be fairly distributed
 * (inspired by Bored Ape Yacht Club https://boredapeyachtclub.com/#/provenance):
 * 1. A provenance hash is stored in the contract so the order of token metadata
 * cannot be changed at any point. The provenance hash is obtained by hashing each
 * token image using the SHA-256 algorithm, concatenating each result in their
 * final order, then hashing the result using the SHA-256 algorithm.
 * 2. The block number in which the final token has been minted will be used to
 * generate an index into the previously-ordered metadata (see getInitialMetadataSequenceIndex).
 * @author backuardo.eth
 */
contract TheFreeGuy is ERC721A, Ownable, ReentrancyGuard {
    enum MintPhase {
        NONE,
        PAUSED,
        ALLOWLIST_SALE,
        PUBLIC_SALE,
        SOLD_OUT
    }

    uint16 public constant COLLECTION_SIZE = 10000;
    uint8 public constant MAX_PER_ADDRESS_PUBLIC = 20;
    uint256 public constant MINT_PRICE_PUBLIC = 0.03 ether;

    string private baseURI;
    string public provenanceHash;
    uint256 public initialMetadataSequenceIndex;
    MintPhase public mintPhase = MintPhase.NONE;
    mapping(address => uint8) public maxAllowlistRedemptions;

    /**
     * @param _provenanceHash provenance record
     */
    constructor(string memory _provenanceHash) ERC721A("THE FREE GUY", "GUYS") {
        provenanceHash = _provenanceHash;
    }

    ////////////////////////
    //█▀▄▀█ █▀█ █▀▄ █ █▀▀ █ █▀▀ █▀█   █▀▀ █░█ █▄░█ █▀▀ ▀█▀ █ █▀█ █▄░█ █▀
    //█░▀░█ █▄█ █▄▀ █ █▀░ █ ██▄ █▀▄   █▀░ █▄█ █░▀█ █▄▄ ░█░ █ █▄█ █░▀█ ▄█
    ////////////////////////

    /**
     * @notice Ensure function cannot be called outside of a given mint phase
     * @param _mintPhase Correct mint phase for function to execute
     */
    modifier inMintPhase(MintPhase _mintPhase) {
        if (mintPhase != _mintPhase) {
            revert IncorrectMintPhase();
        }
        _;
    }

    ////////////////////
    //█▀▄▀█ █ █▄░█ ▀█▀   █▀▀ █░█ █▄░█ █▀▀ ▀█▀ █ █▀█ █▄░█ █▀
    //█░▀░█ █ █░▀█ ░█░   █▀░ █▄█ █░▀█ █▄▄ ░█░ █ █▄█ █░▀█ ▄█
    ////////////////////

    /**
     * @notice Mint a quantity of tokens during allowlist mint phase by providing a Merkle proof
     * @param _quantity Number of tokens to mint
     */
    function allowlistMint(uint8 _quantity)
        external
        inMintPhase(MintPhase.ALLOWLIST_SALE)
        nonReentrant
    {
        if (maxAllowlistRedemptions[msg.sender] == 0) {
            revert NotAllowlisted();
        }
        if (totalSupply() + _quantity > COLLECTION_SIZE) {
            revert InsufficientSupply();
        }
        if (
            getRedemptionsAllowlist() + _quantity >
            maxAllowlistRedemptions[msg.sender]
        ) {
            revert ExceedsAllowlistMaxAllocation();
        }

        incrementRedemptionsAllowlist(_quantity);
        if (totalSupply() + _quantity == COLLECTION_SIZE) {
            setInitialMetadataSequenceIndex();
        }

        _safeMint(msg.sender, _quantity);
    }

    /**
     * @notice Mint a quantity of tokens during public mint phase
     * @param _quantity Number of tokens to mint
     */
    function mint(uint8 _quantity)
        external
        payable
        inMintPhase(MintPhase.PUBLIC_SALE)
        nonReentrant
    {
        if (msg.value != MINT_PRICE_PUBLIC * _quantity) {
            revert IncorrectPayment();
        }
        if (totalSupply() + _quantity > COLLECTION_SIZE) {
            revert InsufficientSupply();
        }
        if (getRedemptionsPublic() + _quantity > MAX_PER_ADDRESS_PUBLIC) {
            revert ExceedsPublicMaxAllocation();
        }

        incrementRedemptionsPublic(_quantity);
        if (totalSupply() + _quantity == COLLECTION_SIZE) {
            setInitialMetadataSequenceIndex();
        }

        _safeMint(msg.sender, _quantity);
    }

    //////////////////////
    //█▀ █▀▀ ▀█▀ ▀█▀ █▀▀ █▀█   █▀▀ █░█ █▄░█ █▀▀ ▀█▀ █ █▀█ █▄░█ █▀
    //▄█ ██▄ ░█░ ░█░ ██▄ █▀▄   █▀░ █▄█ █░▀█ █▄▄ ░█░ █ █▄█ █░▀█ ▄█
    //////////////////////

    /**
     * @notice Set the mint phase
     * @notice Use restricted to contract owner
     * @param _mintPhase New mint phase
     */
    function setMintPhase(MintPhase _mintPhase) external onlyOwner {
        mintPhase = _mintPhase;
    }

    /**
     * @notice Add entries to the maxAllowlistRedemptions mapping
     * @notice Use restricted to contract owner
     * @dev Array arguments must have the same ordering, as _addresses[i] will map to _redemptions[i]
     * @param _addresses Array containing addresses to add (keys)
     * @param _redemptions Array containing numbers of redemptions (values)
     */
    function setMaxAllowlistRedemptions(
        address[] calldata _addresses,
        uint8[] calldata _redemptions
    ) external onlyOwner {
        if (_addresses.length != _redemptions.length) {
            revert BadArguments();
        }

        for (uint256 i = 0; i < _addresses.length; i++) {
            maxAllowlistRedemptions[_addresses[i]] = _redemptions[i];
        }
    }

    /**
     * @notice Set the contract base token uri
     * @notice Use restricted to contract owner
     * @param _baseTokenURI New base token uri
     */
    function setBaseURI(string calldata _baseTokenURI) external onlyOwner {
        baseURI = _baseTokenURI;
    }

    /**
     * @notice Set starting index into previously-ordered metadata for reveal
     */
    function setInitialMetadataSequenceIndex() private {
        initialMetadataSequenceIndex =
            uint256(blockhash(block.number - 1)) %
            COLLECTION_SIZE;
    }

    /**
     * @notice Increment number of allowlist token mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint32, which will not be an issue as
     * mint quantity should never be greater than 2^32 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     * remove an extra cold SLOAD and SSTORE operation. Since we're storing two values
     * (public and allowlist redemptions) we need to pack and unpack two uint32s into a single uint64.
     * See https://chiru-labs.github.io/ERC721A/#/erc721a?id=addressdata
     */
    function incrementRedemptionsAllowlist(uint256 _numToIncrement) private {
        (
            uint32 allowlistMintRedemptions,
            uint32 publicMintRedemptions
        ) = unpackMintRedemptions(_getAux(msg.sender));
        allowlistMintRedemptions += uint32(_numToIncrement);
        _setAux(
            msg.sender,
            packMintRedemptions(allowlistMintRedemptions, publicMintRedemptions)
        );
    }

    /**
     * @notice Increment number of public token mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint32, which will not be an issue as
     * mint quantity should never be greater than 2^32 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     * remove an extra cold SLOAD and SSTORE operation. Since we're storing two values
     * (public and allowlist redemptions) we need to pack and unpack two uint32s into a single uint64.
     * See https://chiru-labs.github.io/ERC721A/#/erc721a?id=addressdata
     */
    function incrementRedemptionsPublic(uint256 _numToIncrement) private {
        (
            uint32 allowlistMintRedemptions,
            uint32 publicMintRedemptions
        ) = unpackMintRedemptions(_getAux(msg.sender));
        publicMintRedemptions += uint32(_numToIncrement);
        _setAux(
            msg.sender,
            packMintRedemptions(allowlistMintRedemptions, publicMintRedemptions)
        );
    }

    //////////////////////
    //█▀▀ █▀▀ ▀█▀ ▀█▀ █▀▀ █▀█   █▀▀ █░█ █▄░█ █▀▀ ▀█▀ █ █▀█ █▄░█ █▀
    //█▄█ ██▄ ░█░ ░█░ ██▄ █▀▄   █▀░ █▄█ █░▀█ █▄▄ ░█░ █ █▄█ █░▀█ ▄█
    //////////////////////

    /**
     * @notice Unpack and get number of allowlist token mints redeemed by caller
     * @return number of allowlist redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     * remove an extra cold SLOAD and SSTORE operation. Since we're storing two values
     * (public and allowlist redemptions) we need to pack and unpack two uint32s into a single uint64.
     * See https://chiru-labs.github.io/ERC721A/#/erc721a?id=addressdata
     */
    function getRedemptionsAllowlist() public view returns (uint32) {
        (uint32 allowlistMintRedemptions, ) = unpackMintRedemptions(
            _getAux(msg.sender)
        );
        return allowlistMintRedemptions;
    }

    /**
     * @notice Unpack and get number of public token mints redeemed by caller
     * @return number of public redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     * remove an extra cold SLOAD and SSTORE operation. Since we're storing two values
     * (public and allowlist redemptions) we need to pack and unpack two uint32s into a single uint64.
     * See https://chiru-labs.github.io/ERC721A/#/erc721a?id=addressdata
     */
    function getRedemptionsPublic() public view returns (uint32) {
        (, uint32 publicMintRedemptions) = unpackMintRedemptions(
            _getAux(msg.sender)
        );
        return publicMintRedemptions;
    }

    /**
     * @return Current mint phase
     */
    function getMintPhase() public view returns (MintPhase) {
        return mintPhase;
    }

    /**
     * @return Current base token uri
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    //////////////////////
    //█░█ █▀▀ █░░ █▀█ █▀▀ █▀█   █▀▀ █░█ █▄░█ █▀▀ ▀█▀ █ █▀█ █▄░█ █▀   ▄█▄
    //█▀█ ██▄ █▄▄ █▀▀ ██▄ █▀▄   █▀░ █▄█ █░▀█ █▄▄ ░█░ █ █▄█ █░▀█ ▄█   ░▀░
    //////////////////////

    /**
     * @notice Pack two uint32s (allowlist and public redemptions) into a single uint64 value
     * @return Packed value
     * @dev Performs shift and bit operations to pack two uint32s into a single uint64
     */
    function packMintRedemptions(
        uint32 _allowlistMintRedemptions,
        uint32 _publicMintRedemptions
    ) private pure returns (uint64) {
        return
            (uint64(_allowlistMintRedemptions) << 32) |
            uint64(_publicMintRedemptions);
    }

    /**
     * @notice Unpack a single uint64 value into two uint32s (allowlist and public redemptions)
     * @return allowlistMintRedemptions publicMintRedemptions Unpacked values
     * @dev Performs shift and bit operations to unpack a single uint64 into two uint32s
     */
    function unpackMintRedemptions(uint64 _mintRedemptionPack)
        private
        pure
        returns (uint32 allowlistMintRedemptions, uint32 publicMintRedemptions)
    {
        allowlistMintRedemptions = uint32(_mintRedemptionPack >> 32);
        publicMintRedemptions = uint32(_mintRedemptionPack);
    }

    
   //███████████████████████████████████████████████████████████████████████████▀███████
   //██▀▄─██▄─▄▄▀█▄─▀█▀─▄█▄─▄█▄─▀█▄─▄███─▄▄▄▄█▄─▄▄─█─▄─▄─█─▄─▄─█▄─▄█▄─▀█▄─▄█─▄▄▄▄█─▄▄▄▄█
   //██─▀─███─██─██─█▄█─███─███─█▄▀─████▄▄▄▄─██─▄█▀███─█████─████─███─█▄▀─██─██▄─█▄▄▄▄─█
   //▀▄▄▀▄▄▀▄▄▄▄▀▀▄▄▄▀▄▄▄▀▄▄▄▀▄▄▄▀▀▄▄▀▀▀▄▄▄▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀▀▄▄▄▀▀▄▄▄▀▄▄▄▀▀▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀

    /**
     * @notice Mint a quantity of tokens to the contract owners address
     * @notice Use restricted to contract owner
     * @param _quantity Number of tokens to mint
     * @dev Must be executed in `MintPhase.NONE` (i.e., before allowlist or public mint begins)
     * @dev Minting in batches will not help prevent overly expensive transfer fees, since
     * token ids are sequential and dev minting occurs before allowlist and public minting.
     * See https://chiru-labs.github.io/ERC721A/#/tips?id=batch-size
     */
    function devMint(uint256 _quantity)
        external
        onlyOwner
        inMintPhase(MintPhase.NONE)
    {
        if (totalSupply() + _quantity > COLLECTION_SIZE) {
            revert InsufficientSupply();
        }

        _safeMint(owner(), _quantity);
    }

    /**
     * @notice Withdraw all funds to the contract owners address
     * @notice Use restricted to contract owner
     * @dev `transfer` and `send` assume constant gas prices. This function
     * is onlyOwner, so we accept the reentrancy risk that `.call.value` carries.
     */
    function withdraw() external onlyOwner {
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, ) = owner().call{value: address(this).balance}("");
        if (!success) {
            revert TransferFailed();
        }
    }

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

    /**
     * @notice Prevent accidental ETH transfer
     */
    fallback() external payable {
        revert NotImplemented();
    }

    /**
     * @notice Prevent accidental ETH transfer
     */
    receive() external payable {
        revert NotImplemented();
    }
}

/**
 * Incorrect mint phase for action
 */
error IncorrectMintPhase();

/**
 * Incorrect payment amount
 */
error IncorrectPayment();

/**
 * Insufficient supply for action
 */
error InsufficientSupply();

/**
 * Not allowlisted
 */
error NotAllowlisted();

/**
 * Exceeds max allocation for public sale
 */
error ExceedsPublicMaxAllocation();

/**
 * Exceeds max allocation for allowlist sale
 */
error ExceedsAllowlistMaxAllocation();

/**
 * Public mint price not set
 */
error PublicMintPriceNotSet();

/**
 * Transfer failed
 */
error TransferFailed();

/**
 * Bad arguments
 */
error BadArguments();

/**
 * Function not implemented
 */
error NotImplemented();

/*
███╗░░██╗███████╗████████╗
████╗░██║██╔════╝╚══██╔══╝
██╔██╗██║█████╗░░░░░██║░░░
██║╚████║██╔══╝░░░░░██║░░░
██║░╚███║██║░░░░░░░░██║░░░
╚═╝░░╚══╝╚═╝░░░░░░░░╚═╝░░░
*/

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BadArguments","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsAllowlistMaxAllocation","type":"error"},{"inputs":[],"name":"ExceedsPublicMaxAllocation","type":"error"},{"inputs":[],"name":"IncorrectMintPhase","type":"error"},{"inputs":[],"name":"IncorrectPayment","type":"error"},{"inputs":[],"name":"InsufficientSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowlisted","type":"error"},{"inputs":[],"name":"NotImplemented","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COLLECTION_SIZE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS_PUBLIC","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPhase","outputs":[{"internalType":"enum TheFreeGuy.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedemptionsAllowlist","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedemptionsPublic","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMetadataSequenceIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"maxAllowlistRedemptions","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"enum TheFreeGuy.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint8[]","name":"_redemptions","type":"uint8[]"}],"name":"setMaxAllowlistRedemptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TheFreeGuy.MintPhase","name":"_mintPhase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600d60006101000a81548160ff021916908360048111156200002d576200002c62000225565b5b02179055503480156200003f57600080fd5b5060405162003f7e38038062003f7e8339818101604052810190620000659190620003e7565b6040518060400160405280600c81526020017f54484520465245452047555900000000000000000000000000000000000000008152506040518060400160405280600481526020017f47555953000000000000000000000000000000000000000000000000000000008152508160029081620000e2919062000683565b508060039081620000f4919062000683565b50620001056200014e60201b60201c565b60008190555050506200012d620001216200015760201b60201c565b6200015f60201b60201c565b600160098190555080600b908162000146919062000683565b50506200076a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002bd8262000272565b810181811067ffffffffffffffff82111715620002df57620002de62000283565b5b80604052505050565b6000620002f462000254565b9050620003028282620002b2565b919050565b600067ffffffffffffffff82111562000325576200032462000283565b5b620003308262000272565b9050602081019050919050565b60005b838110156200035d57808201518184015260208101905062000340565b60008484015250505050565b6000620003806200037a8462000307565b620002e8565b9050828152602081018484840111156200039f576200039e6200026d565b5b620003ac8482856200033d565b509392505050565b600082601f830112620003cc57620003cb62000268565b5b8151620003de84826020860162000369565b91505092915050565b6000602082840312156200040057620003ff6200025e565b5b600082015167ffffffffffffffff81111562000421576200042062000263565b5b6200042f84828501620003b4565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048b57607f821691505b602082108103620004a157620004a062000443565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004cc565b620005178683620004cc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005646200055e62000558846200052f565b62000539565b6200052f565b9050919050565b6000819050919050565b620005808362000543565b620005986200058f826200056b565b848454620004d9565b825550505050565b600090565b620005af620005a0565b620005bc81848462000575565b505050565b5b81811015620005e457620005d8600082620005a5565b600181019050620005c2565b5050565b601f8211156200063357620005fd81620004a7565b6200060884620004bc565b8101602085101562000618578190505b620006306200062785620004bc565b830182620005c1565b50505b505050565b600082821c905092915050565b6000620006586000198460080262000638565b1980831691505092915050565b600062000673838362000645565b9150826002028217905092915050565b6200068e8262000438565b67ffffffffffffffff811115620006aa57620006a962000283565b5b620006b6825462000472565b620006c3828285620005e8565b600060209050601f831160018114620006fb5760008415620006e6578287015190505b620006f2858262000665565b86555062000762565b601f1984166200070b86620004a7565b60005b8281101562000735578489015182556001820191506020850194506020810190506200070e565b8683101562000755578489015162000751601f89168262000645565b8355505b6001600288020188555050505b505050505050565b613804806200077a6000396000f3fe6080604052600436106101fd5760003560e01c806370a082311161010d578063c52766c6116100a0578063d8ec555f1161006f578063d8ec555f14610766578063e0fb274d14610791578063e87570bf146107bc578063e985e9c5146107e7578063f2fde38b1461082457610234565b8063c52766c6146106a8578063c6ab67a3146106d3578063c87b56dd146106fe578063d8258d951461073b57610234565b8063a22cb465116100dc578063a22cb46514610602578063a9a812651461062b578063b88d4fde14610654578063c3151fed1461067d57610234565b806370a0823114610558578063715018a6146105955780638da5cb5b146105ac57806395d89b41146105d757610234565b8063375a069a116101905780635e1641e71161015f5780635e1641e71461046e5780636352211e146104ab5780636c102eef146104e85780636ecd230614610513578063706a0afd1461052f57610234565b8063375a069a146103dc5780633ccfd60b1461040557806342842e0e1461041c57806355f804b31461044557610234565b806317881cbf116101cc57806317881cbf1461033457806318160ddd1461035f57806323b872dd1461038a57806331c07bbf146103b357610234565b806301ffc9a71461026657806306fdde03146102a3578063081812fc146102ce578063095ea7b31461030b57610234565b36610234576040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b34801561027257600080fd5b5061028d600480360381019061028891906126e6565b61084d565b60405161029a919061272e565b60405180910390f35b3480156102af57600080fd5b506102b86108df565b6040516102c591906127d9565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612831565b610971565b604051610302919061289f565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906128e6565b6109f0565b005b34801561034057600080fd5b50610349610b34565b604051610356919061299d565b60405180910390f35b34801561036b57600080fd5b50610374610b47565b60405161038191906129c7565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129e2565b610b5e565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612a5a565b610e80565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612831565b610eb5565b005b34801561041157600080fd5b5061041a610f92565b005b34801561042857600080fd5b50610443600480360381019061043e91906129e2565b611047565b005b34801561045157600080fd5b5061046c60048036038101906104679190612aec565b611067565b005b34801561047a57600080fd5b5061049560048036038101906104909190612b39565b611085565b6040516104a29190612b82565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612831565b6110a5565b6040516104df919061289f565b60405180910390f35b3480156104f457600080fd5b506104fd6110b7565b60405161050a9190612b82565b60405180910390f35b61052d60048036038101906105289190612bc9565b6110bc565b005b34801561053b57600080fd5b5061055660048036038101906105519190612ca2565b6112c3565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612b39565b6113d8565b60405161058c91906129c7565b60405180910390f35b3480156105a157600080fd5b506105aa611490565b005b3480156105b857600080fd5b506105c16114a4565b6040516105ce919061289f565b60405180910390f35b3480156105e357600080fd5b506105ec6114ce565b6040516105f991906127d9565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612d4f565b611560565b005b34801561063757600080fd5b50610652600480360381019061064d9190612bc9565b6116d7565b005b34801561066057600080fd5b5061067b60048036038101906106769190612ebf565b611964565b005b34801561068957600080fd5b506106926119d7565b60405161069f91906129c7565b60405180910390f35b3480156106b457600080fd5b506106bd6119e2565b6040516106ca919061299d565b60405180910390f35b3480156106df57600080fd5b506106e86119f9565b6040516106f591906127d9565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612831565b611a87565b60405161073291906127d9565b60405180910390f35b34801561074757600080fd5b50610750611b25565b60405161075d9190612f5f565b60405180910390f35b34801561077257600080fd5b5061077b611b2b565b6040516107889190612f99565b60405180910390f35b34801561079d57600080fd5b506107a6611b49565b6040516107b391906129c7565b60405180910390f35b3480156107c857600080fd5b506107d1611b4f565b6040516107de9190612f99565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612fb4565b611b6d565b60405161081b919061272e565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190612b39565b611c01565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee90613023565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90613023565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611c84565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826110a5565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1c611ce3565b73ffffffffffffffffffffffffffffffffffffffff1614610a7f57610a4881610a43611ce3565b611b6d565b610a7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1681565b6000610b51611ceb565b6001546000540303905090565b6000610b6982611cf4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bdc84611dc0565b91509150610bf28187610bed611ce3565b611de7565b610c3e57610c0786610c02611ce3565b611b6d565b610c3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb18686866001611e2b565b8015610cbc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8a85610d66888887611e31565b7c020000000000000000000000000000000000000000000000000000000017611e59565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e105760006001850190506000600460008381526020019081526020016000205403610e0e576000548114610e0d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e788686866001611e84565b505050505050565b610e88611e8a565b80600d60006101000a81548160ff02191690836004811115610ead57610eac612926565b5b021790555050565b610ebd611e8a565b6000806004811115610ed257610ed1612926565b5b600d60009054906101000a900460ff166004811115610ef457610ef3612926565b5b14610f2b576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff1682610f3b610b47565b610f459190613083565b1115610f7d576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f8e610f886114a4565b83611f08565b5050565b610f9a611e8a565b6000610fa46114a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc7906130e8565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905080611044576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b61106283838360405180602001604052806000815250611964565b505050565b61106f611e8a565b8181600a91826110809291906132b4565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60006110b082611cf4565b9050919050565b601481565b60038060048111156110d1576110d0612926565b5b600d60009054906101000a900460ff1660048111156110f3576110f2612926565b5b1461112a576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026009540361116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906133d0565b60405180910390fd5b60026009819055508160ff16666a94d74f43000061118d91906133f0565b34146111c5576040517f569e8c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff168260ff166111d8610b47565b6111e29190613083565b111561121a576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601460ff168260ff1661122b611b2b565b611235919061344a565b63ffffffff161115611273576040517f6f1af0ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61127f8260ff16611f26565b61271061ffff168260ff16611292610b47565b61129c9190613083565b036112aa576112a9611f64565b5b6112b7338360ff16611f08565b60016009819055505050565b6112cb611e8a565b81819050848490501461130a576040517f1739bb9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508110156113d15782828281811061132b5761132a613482565b5b90506020020160208101906113409190612bc9565b600e600087878581811061135757611356613482565b5b905060200201602081019061136c9190612b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806113c9906134b1565b91505061130d565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611498611e8a565b6114a26000611f8e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114dd90613023565b80601f016020809104026020016040519081016040528092919081815260200182805461150990613023565b80156115565780601f1061152b57610100808354040283529160200191611556565b820191906000526020600020905b81548152906001019060200180831161153957829003601f168201915b5050505050905090565b611568611ce3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115d9611ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611686611ce3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116cb919061272e565b60405180910390a35050565b60028060048111156116ec576116eb612926565b5b600d60009054906101000a900460ff16600481111561170e5761170d612926565b5b14611745576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026009540361178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906133d0565b60405180910390fd5b60026009819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361181b576040517f06fb10a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff168260ff1661182e610b47565b6118389190613083565b1115611870576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff166118cc611b4f565b6118d6919061344a565b63ffffffff161115611914576040517f7021862000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119208260ff16612054565b61271061ffff168260ff16611933610b47565b61193d9190613083565b0361194b5761194a611f64565b5b611958338360ff16611f08565b60016009819055505050565b61196f848484610b5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d15761199a84848484612092565b6119d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b666a94d74f43000081565b6000600d60009054906101000a900460ff16905090565b600b8054611a0690613023565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3290613023565b8015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505081565b6060611a9282611c84565b611ac8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ad26121e2565b90506000815103611af25760405180602001604052806000815250611b1d565b80611afc84612274565b604051602001611b0d929190613535565b6040516020818303038152906040525b915050919050565b61271081565b600080611b3f611b3a336122bb565b612308565b9150508091505090565b600c5481565b600080611b63611b5e336122bb565b612308565b5090508091505090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c09611e8a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906135cb565b60405180910390fd5b611c8181611f8e565b50565b600081611c8f611ceb565b11158015611c9e575060005482105b8015611cdc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d03611ceb565b11611d8957600054811015611d885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d86575b60008103611d7c576004600083600190039350838152602001908152602001600020549050611d52565b8092505050611dbb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e48868684612324565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e9261232d565b73ffffffffffffffffffffffffffffffffffffffff16611eb06114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613637565b60405180910390fd5b565b611f22828260405180602001604052806000815250612335565b5050565b600080611f3a611f35336122bb565b612308565b915091508281611f4a919061344a565b9050611f5f33611f5a84846123d2565b6123f9565b505050565b61271061ffff16600143611f789190613657565b4060001c611f8691906136ba565b600c81905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080612068612063336122bb565b612308565b915091508282612078919061344a565b915061208d3361208884846123d2565b6123f9565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b8611ce3565b8786866040518563ffffffff1660e01b81526004016120da9493929190613740565b6020604051808303816000875af192505050801561211657506040513d601f19601f8201168201806040525081019061211391906137a1565b60015b61218f573d8060008114612146576040519150601f19603f3d011682016040523d82523d6000602084013e61214b565b606091505b506000815103612187576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121f190613023565b80601f016020809104026020016040519081016040528092919081815260200182805461221d90613023565b801561226a5780601f1061223f5761010080835404028352916020019161226a565b820191906000526020600020905b81548152906001019060200180831161224d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122a757600183039250600a81066030018353600a8104905080612285575b508181036020830392508083525050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60008060208367ffffffffffffffff16901c9150829050915091565b60009392505050565b600033905090565b61233f83836124af565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123cd57600080549050600083820390505b61237f6000868380600101945086612092565b6123b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061236c5781600054146123ca57600080fd5b50505b505050565b60008163ffffffff1660208463ffffffff1667ffffffffffffffff16901b17905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600080549050600082036124ef576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124fc6000848385611e2b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612573836125646000866000611e31565b61256d8561266a565b17611e59565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461261457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125d9565b506000820361264f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126656000848385611e84565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c38161268e565b81146126ce57600080fd5b50565b6000813590506126e0816126ba565b92915050565b6000602082840312156126fc576126fb612684565b5b600061270a848285016126d1565b91505092915050565b60008115159050919050565b61272881612713565b82525050565b6000602082019050612743600083018461271f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612783578082015181840152602081019050612768565b60008484015250505050565b6000601f19601f8301169050919050565b60006127ab82612749565b6127b58185612754565b93506127c5818560208601612765565b6127ce8161278f565b840191505092915050565b600060208201905081810360008301526127f381846127a0565b905092915050565b6000819050919050565b61280e816127fb565b811461281957600080fd5b50565b60008135905061282b81612805565b92915050565b60006020828403121561284757612846612684565b5b60006128558482850161281c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128898261285e565b9050919050565b6128998161287e565b82525050565b60006020820190506128b46000830184612890565b92915050565b6128c38161287e565b81146128ce57600080fd5b50565b6000813590506128e0816128ba565b92915050565b600080604083850312156128fd576128fc612684565b5b600061290b858286016128d1565b925050602061291c8582860161281c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6005811061296657612965612926565b5b50565b600081905061297782612955565b919050565b600061298782612969565b9050919050565b6129978161297c565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6129c1816127fb565b82525050565b60006020820190506129dc60008301846129b8565b92915050565b6000806000606084860312156129fb576129fa612684565b5b6000612a09868287016128d1565b9350506020612a1a868287016128d1565b9250506040612a2b8682870161281c565b9150509250925092565b60058110612a4257600080fd5b50565b600081359050612a5481612a35565b92915050565b600060208284031215612a7057612a6f612684565b5b6000612a7e84828501612a45565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612aac57612aab612a87565b5b8235905067ffffffffffffffff811115612ac957612ac8612a8c565b5b602083019150836001820283011115612ae557612ae4612a91565b5b9250929050565b60008060208385031215612b0357612b02612684565b5b600083013567ffffffffffffffff811115612b2157612b20612689565b5b612b2d85828601612a96565b92509250509250929050565b600060208284031215612b4f57612b4e612684565b5b6000612b5d848285016128d1565b91505092915050565b600060ff82169050919050565b612b7c81612b66565b82525050565b6000602082019050612b976000830184612b73565b92915050565b612ba681612b66565b8114612bb157600080fd5b50565b600081359050612bc381612b9d565b92915050565b600060208284031215612bdf57612bde612684565b5b6000612bed84828501612bb4565b91505092915050565b60008083601f840112612c0c57612c0b612a87565b5b8235905067ffffffffffffffff811115612c2957612c28612a8c565b5b602083019150836020820283011115612c4557612c44612a91565b5b9250929050565b60008083601f840112612c6257612c61612a87565b5b8235905067ffffffffffffffff811115612c7f57612c7e612a8c565b5b602083019150836020820283011115612c9b57612c9a612a91565b5b9250929050565b60008060008060408587031215612cbc57612cbb612684565b5b600085013567ffffffffffffffff811115612cda57612cd9612689565b5b612ce687828801612bf6565b9450945050602085013567ffffffffffffffff811115612d0957612d08612689565b5b612d1587828801612c4c565b925092505092959194509250565b612d2c81612713565b8114612d3757600080fd5b50565b600081359050612d4981612d23565b92915050565b60008060408385031215612d6657612d65612684565b5b6000612d74858286016128d1565b9250506020612d8585828601612d3a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dcc8261278f565b810181811067ffffffffffffffff82111715612deb57612dea612d94565b5b80604052505050565b6000612dfe61267a565b9050612e0a8282612dc3565b919050565b600067ffffffffffffffff821115612e2a57612e29612d94565b5b612e338261278f565b9050602081019050919050565b82818337600083830152505050565b6000612e62612e5d84612e0f565b612df4565b905082815260208101848484011115612e7e57612e7d612d8f565b5b612e89848285612e40565b509392505050565b600082601f830112612ea657612ea5612a87565b5b8135612eb6848260208601612e4f565b91505092915050565b60008060008060808587031215612ed957612ed8612684565b5b6000612ee7878288016128d1565b9450506020612ef8878288016128d1565b9350506040612f098782880161281c565b925050606085013567ffffffffffffffff811115612f2a57612f29612689565b5b612f3687828801612e91565b91505092959194509250565b600061ffff82169050919050565b612f5981612f42565b82525050565b6000602082019050612f746000830184612f50565b92915050565b600063ffffffff82169050919050565b612f9381612f7a565b82525050565b6000602082019050612fae6000830184612f8a565b92915050565b60008060408385031215612fcb57612fca612684565b5b6000612fd9858286016128d1565b9250506020612fea858286016128d1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303b57607f821691505b60208210810361304e5761304d612ff4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061308e826127fb565b9150613099836127fb565b92508282019050808211156130b1576130b0613054565b5b92915050565b600081905092915050565b50565b60006130d26000836130b7565b91506130dd826130c2565b600082019050919050565b60006130f3826130c5565b9150819050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261316a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261312d565b613174868361312d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131b16131ac6131a7846127fb565b61318c565b6127fb565b9050919050565b6000819050919050565b6131cb83613196565b6131df6131d7826131b8565b84845461313a565b825550505050565b600090565b6131f46131e7565b6131ff8184846131c2565b505050565b5b81811015613223576132186000826131ec565b600181019050613205565b5050565b601f8211156132685761323981613108565b6132428461311d565b81016020851015613251578190505b61326561325d8561311d565b830182613204565b50505b505050565b600082821c905092915050565b600061328b6000198460080261326d565b1980831691505092915050565b60006132a4838361327a565b9150826002028217905092915050565b6132be83836130fd565b67ffffffffffffffff8111156132d7576132d6612d94565b5b6132e18254613023565b6132ec828285613227565b6000601f83116001811461331b5760008415613309578287013590505b6133138582613298565b86555061337b565b601f19841661332986613108565b60005b828110156133515784890135825560018201915060208501945060208101905061332c565b8683101561336e578489013561336a601f89168261327a565b8355505b6001600288020188555050505b50505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006133ba601f83612754565b91506133c582613384565b602082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b60006133fb826127fb565b9150613406836127fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343f5761343e613054565b5b828202905092915050565b600061345582612f7a565b915061346083612f7a565b9250828201905063ffffffff81111561347c5761347b613054565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134bc826127fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ee576134ed613054565b5b600182019050919050565b600081905092915050565b600061350f82612749565b61351981856134f9565b9350613529818560208601612765565b80840191505092915050565b60006135418285613504565b915061354d8284613504565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135b5602683612754565b91506135c082613559565b604082019050919050565b600060208201905081810360008301526135e4816135a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613621602083612754565b915061362c826135eb565b602082019050919050565b6000602082019050818103600083015261365081613614565b9050919050565b6000613662826127fb565b915061366d836127fb565b925082820390508181111561368557613684613054565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136c5826127fb565b91506136d0836127fb565b9250826136e0576136df61368b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613712826136eb565b61371c81856136f6565b935061372c818560208601612765565b6137358161278f565b840191505092915050565b60006080820190506137556000830187612890565b6137626020830186612890565b61376f60408301856129b8565b81810360608301526137818184613707565b905095945050505050565b60008151905061379b816126ba565b92915050565b6000602082840312156137b7576137b6612684565b5b60006137c58482850161378c565b9150509291505056fea2646970667358221220ffb95bd72f4ed9e6f0ed31b97f0ebaeec6f9a43df53792a9f0815a11a32cd6d664736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806370a082311161010d578063c52766c6116100a0578063d8ec555f1161006f578063d8ec555f14610766578063e0fb274d14610791578063e87570bf146107bc578063e985e9c5146107e7578063f2fde38b1461082457610234565b8063c52766c6146106a8578063c6ab67a3146106d3578063c87b56dd146106fe578063d8258d951461073b57610234565b8063a22cb465116100dc578063a22cb46514610602578063a9a812651461062b578063b88d4fde14610654578063c3151fed1461067d57610234565b806370a0823114610558578063715018a6146105955780638da5cb5b146105ac57806395d89b41146105d757610234565b8063375a069a116101905780635e1641e71161015f5780635e1641e71461046e5780636352211e146104ab5780636c102eef146104e85780636ecd230614610513578063706a0afd1461052f57610234565b8063375a069a146103dc5780633ccfd60b1461040557806342842e0e1461041c57806355f804b31461044557610234565b806317881cbf116101cc57806317881cbf1461033457806318160ddd1461035f57806323b872dd1461038a57806331c07bbf146103b357610234565b806301ffc9a71461026657806306fdde03146102a3578063081812fc146102ce578063095ea7b31461030b57610234565b36610234576040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b34801561027257600080fd5b5061028d600480360381019061028891906126e6565b61084d565b60405161029a919061272e565b60405180910390f35b3480156102af57600080fd5b506102b86108df565b6040516102c591906127d9565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612831565b610971565b604051610302919061289f565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906128e6565b6109f0565b005b34801561034057600080fd5b50610349610b34565b604051610356919061299d565b60405180910390f35b34801561036b57600080fd5b50610374610b47565b60405161038191906129c7565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129e2565b610b5e565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612a5a565b610e80565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612831565b610eb5565b005b34801561041157600080fd5b5061041a610f92565b005b34801561042857600080fd5b50610443600480360381019061043e91906129e2565b611047565b005b34801561045157600080fd5b5061046c60048036038101906104679190612aec565b611067565b005b34801561047a57600080fd5b5061049560048036038101906104909190612b39565b611085565b6040516104a29190612b82565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612831565b6110a5565b6040516104df919061289f565b60405180910390f35b3480156104f457600080fd5b506104fd6110b7565b60405161050a9190612b82565b60405180910390f35b61052d60048036038101906105289190612bc9565b6110bc565b005b34801561053b57600080fd5b5061055660048036038101906105519190612ca2565b6112c3565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612b39565b6113d8565b60405161058c91906129c7565b60405180910390f35b3480156105a157600080fd5b506105aa611490565b005b3480156105b857600080fd5b506105c16114a4565b6040516105ce919061289f565b60405180910390f35b3480156105e357600080fd5b506105ec6114ce565b6040516105f991906127d9565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612d4f565b611560565b005b34801561063757600080fd5b50610652600480360381019061064d9190612bc9565b6116d7565b005b34801561066057600080fd5b5061067b60048036038101906106769190612ebf565b611964565b005b34801561068957600080fd5b506106926119d7565b60405161069f91906129c7565b60405180910390f35b3480156106b457600080fd5b506106bd6119e2565b6040516106ca919061299d565b60405180910390f35b3480156106df57600080fd5b506106e86119f9565b6040516106f591906127d9565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612831565b611a87565b60405161073291906127d9565b60405180910390f35b34801561074757600080fd5b50610750611b25565b60405161075d9190612f5f565b60405180910390f35b34801561077257600080fd5b5061077b611b2b565b6040516107889190612f99565b60405180910390f35b34801561079d57600080fd5b506107a6611b49565b6040516107b391906129c7565b60405180910390f35b3480156107c857600080fd5b506107d1611b4f565b6040516107de9190612f99565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612fb4565b611b6d565b60405161081b919061272e565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190612b39565b611c01565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee90613023565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90613023565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611c84565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826110a5565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1c611ce3565b73ffffffffffffffffffffffffffffffffffffffff1614610a7f57610a4881610a43611ce3565b611b6d565b610a7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1681565b6000610b51611ceb565b6001546000540303905090565b6000610b6982611cf4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bdc84611dc0565b91509150610bf28187610bed611ce3565b611de7565b610c3e57610c0786610c02611ce3565b611b6d565b610c3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb18686866001611e2b565b8015610cbc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8a85610d66888887611e31565b7c020000000000000000000000000000000000000000000000000000000017611e59565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e105760006001850190506000600460008381526020019081526020016000205403610e0e576000548114610e0d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e788686866001611e84565b505050505050565b610e88611e8a565b80600d60006101000a81548160ff02191690836004811115610ead57610eac612926565b5b021790555050565b610ebd611e8a565b6000806004811115610ed257610ed1612926565b5b600d60009054906101000a900460ff166004811115610ef457610ef3612926565b5b14610f2b576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff1682610f3b610b47565b610f459190613083565b1115610f7d576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f8e610f886114a4565b83611f08565b5050565b610f9a611e8a565b6000610fa46114a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc7906130e8565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905080611044576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b61106283838360405180602001604052806000815250611964565b505050565b61106f611e8a565b8181600a91826110809291906132b4565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60006110b082611cf4565b9050919050565b601481565b60038060048111156110d1576110d0612926565b5b600d60009054906101000a900460ff1660048111156110f3576110f2612926565b5b1461112a576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026009540361116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906133d0565b60405180910390fd5b60026009819055508160ff16666a94d74f43000061118d91906133f0565b34146111c5576040517f569e8c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff168260ff166111d8610b47565b6111e29190613083565b111561121a576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601460ff168260ff1661122b611b2b565b611235919061344a565b63ffffffff161115611273576040517f6f1af0ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61127f8260ff16611f26565b61271061ffff168260ff16611292610b47565b61129c9190613083565b036112aa576112a9611f64565b5b6112b7338360ff16611f08565b60016009819055505050565b6112cb611e8a565b81819050848490501461130a576040517f1739bb9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508110156113d15782828281811061132b5761132a613482565b5b90506020020160208101906113409190612bc9565b600e600087878581811061135757611356613482565b5b905060200201602081019061136c9190612b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806113c9906134b1565b91505061130d565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611498611e8a565b6114a26000611f8e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114dd90613023565b80601f016020809104026020016040519081016040528092919081815260200182805461150990613023565b80156115565780601f1061152b57610100808354040283529160200191611556565b820191906000526020600020905b81548152906001019060200180831161153957829003601f168201915b5050505050905090565b611568611ce3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115d9611ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611686611ce3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116cb919061272e565b60405180910390a35050565b60028060048111156116ec576116eb612926565b5b600d60009054906101000a900460ff16600481111561170e5761170d612926565b5b14611745576040517fd9ffea4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026009540361178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906133d0565b60405180910390fd5b60026009819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361181b576040517f06fb10a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271061ffff168260ff1661182e610b47565b6118389190613083565b1115611870576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff166118cc611b4f565b6118d6919061344a565b63ffffffff161115611914576040517f7021862000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119208260ff16612054565b61271061ffff168260ff16611933610b47565b61193d9190613083565b0361194b5761194a611f64565b5b611958338360ff16611f08565b60016009819055505050565b61196f848484610b5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d15761199a84848484612092565b6119d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b666a94d74f43000081565b6000600d60009054906101000a900460ff16905090565b600b8054611a0690613023565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3290613023565b8015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505081565b6060611a9282611c84565b611ac8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ad26121e2565b90506000815103611af25760405180602001604052806000815250611b1d565b80611afc84612274565b604051602001611b0d929190613535565b6040516020818303038152906040525b915050919050565b61271081565b600080611b3f611b3a336122bb565b612308565b9150508091505090565b600c5481565b600080611b63611b5e336122bb565b612308565b5090508091505090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c09611e8a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906135cb565b60405180910390fd5b611c8181611f8e565b50565b600081611c8f611ceb565b11158015611c9e575060005482105b8015611cdc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d03611ceb565b11611d8957600054811015611d885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d86575b60008103611d7c576004600083600190039350838152602001908152602001600020549050611d52565b8092505050611dbb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e48868684612324565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e9261232d565b73ffffffffffffffffffffffffffffffffffffffff16611eb06114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613637565b60405180910390fd5b565b611f22828260405180602001604052806000815250612335565b5050565b600080611f3a611f35336122bb565b612308565b915091508281611f4a919061344a565b9050611f5f33611f5a84846123d2565b6123f9565b505050565b61271061ffff16600143611f789190613657565b4060001c611f8691906136ba565b600c81905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080612068612063336122bb565b612308565b915091508282612078919061344a565b915061208d3361208884846123d2565b6123f9565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b8611ce3565b8786866040518563ffffffff1660e01b81526004016120da9493929190613740565b6020604051808303816000875af192505050801561211657506040513d601f19601f8201168201806040525081019061211391906137a1565b60015b61218f573d8060008114612146576040519150601f19603f3d011682016040523d82523d6000602084013e61214b565b606091505b506000815103612187576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121f190613023565b80601f016020809104026020016040519081016040528092919081815260200182805461221d90613023565b801561226a5780601f1061223f5761010080835404028352916020019161226a565b820191906000526020600020905b81548152906001019060200180831161224d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122a757600183039250600a81066030018353600a8104905080612285575b508181036020830392508083525050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60008060208367ffffffffffffffff16901c9150829050915091565b60009392505050565b600033905090565b61233f83836124af565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123cd57600080549050600083820390505b61237f6000868380600101945086612092565b6123b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061236c5781600054146123ca57600080fd5b50505b505050565b60008163ffffffff1660208463ffffffff1667ffffffffffffffff16901b17905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600080549050600082036124ef576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124fc6000848385611e2b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612573836125646000866000611e31565b61256d8561266a565b17611e59565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461261457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125d9565b506000820361264f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126656000848385611e84565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c38161268e565b81146126ce57600080fd5b50565b6000813590506126e0816126ba565b92915050565b6000602082840312156126fc576126fb612684565b5b600061270a848285016126d1565b91505092915050565b60008115159050919050565b61272881612713565b82525050565b6000602082019050612743600083018461271f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612783578082015181840152602081019050612768565b60008484015250505050565b6000601f19601f8301169050919050565b60006127ab82612749565b6127b58185612754565b93506127c5818560208601612765565b6127ce8161278f565b840191505092915050565b600060208201905081810360008301526127f381846127a0565b905092915050565b6000819050919050565b61280e816127fb565b811461281957600080fd5b50565b60008135905061282b81612805565b92915050565b60006020828403121561284757612846612684565b5b60006128558482850161281c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128898261285e565b9050919050565b6128998161287e565b82525050565b60006020820190506128b46000830184612890565b92915050565b6128c38161287e565b81146128ce57600080fd5b50565b6000813590506128e0816128ba565b92915050565b600080604083850312156128fd576128fc612684565b5b600061290b858286016128d1565b925050602061291c8582860161281c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6005811061296657612965612926565b5b50565b600081905061297782612955565b919050565b600061298782612969565b9050919050565b6129978161297c565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6129c1816127fb565b82525050565b60006020820190506129dc60008301846129b8565b92915050565b6000806000606084860312156129fb576129fa612684565b5b6000612a09868287016128d1565b9350506020612a1a868287016128d1565b9250506040612a2b8682870161281c565b9150509250925092565b60058110612a4257600080fd5b50565b600081359050612a5481612a35565b92915050565b600060208284031215612a7057612a6f612684565b5b6000612a7e84828501612a45565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612aac57612aab612a87565b5b8235905067ffffffffffffffff811115612ac957612ac8612a8c565b5b602083019150836001820283011115612ae557612ae4612a91565b5b9250929050565b60008060208385031215612b0357612b02612684565b5b600083013567ffffffffffffffff811115612b2157612b20612689565b5b612b2d85828601612a96565b92509250509250929050565b600060208284031215612b4f57612b4e612684565b5b6000612b5d848285016128d1565b91505092915050565b600060ff82169050919050565b612b7c81612b66565b82525050565b6000602082019050612b976000830184612b73565b92915050565b612ba681612b66565b8114612bb157600080fd5b50565b600081359050612bc381612b9d565b92915050565b600060208284031215612bdf57612bde612684565b5b6000612bed84828501612bb4565b91505092915050565b60008083601f840112612c0c57612c0b612a87565b5b8235905067ffffffffffffffff811115612c2957612c28612a8c565b5b602083019150836020820283011115612c4557612c44612a91565b5b9250929050565b60008083601f840112612c6257612c61612a87565b5b8235905067ffffffffffffffff811115612c7f57612c7e612a8c565b5b602083019150836020820283011115612c9b57612c9a612a91565b5b9250929050565b60008060008060408587031215612cbc57612cbb612684565b5b600085013567ffffffffffffffff811115612cda57612cd9612689565b5b612ce687828801612bf6565b9450945050602085013567ffffffffffffffff811115612d0957612d08612689565b5b612d1587828801612c4c565b925092505092959194509250565b612d2c81612713565b8114612d3757600080fd5b50565b600081359050612d4981612d23565b92915050565b60008060408385031215612d6657612d65612684565b5b6000612d74858286016128d1565b9250506020612d8585828601612d3a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dcc8261278f565b810181811067ffffffffffffffff82111715612deb57612dea612d94565b5b80604052505050565b6000612dfe61267a565b9050612e0a8282612dc3565b919050565b600067ffffffffffffffff821115612e2a57612e29612d94565b5b612e338261278f565b9050602081019050919050565b82818337600083830152505050565b6000612e62612e5d84612e0f565b612df4565b905082815260208101848484011115612e7e57612e7d612d8f565b5b612e89848285612e40565b509392505050565b600082601f830112612ea657612ea5612a87565b5b8135612eb6848260208601612e4f565b91505092915050565b60008060008060808587031215612ed957612ed8612684565b5b6000612ee7878288016128d1565b9450506020612ef8878288016128d1565b9350506040612f098782880161281c565b925050606085013567ffffffffffffffff811115612f2a57612f29612689565b5b612f3687828801612e91565b91505092959194509250565b600061ffff82169050919050565b612f5981612f42565b82525050565b6000602082019050612f746000830184612f50565b92915050565b600063ffffffff82169050919050565b612f9381612f7a565b82525050565b6000602082019050612fae6000830184612f8a565b92915050565b60008060408385031215612fcb57612fca612684565b5b6000612fd9858286016128d1565b9250506020612fea858286016128d1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303b57607f821691505b60208210810361304e5761304d612ff4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061308e826127fb565b9150613099836127fb565b92508282019050808211156130b1576130b0613054565b5b92915050565b600081905092915050565b50565b60006130d26000836130b7565b91506130dd826130c2565b600082019050919050565b60006130f3826130c5565b9150819050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261316a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261312d565b613174868361312d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131b16131ac6131a7846127fb565b61318c565b6127fb565b9050919050565b6000819050919050565b6131cb83613196565b6131df6131d7826131b8565b84845461313a565b825550505050565b600090565b6131f46131e7565b6131ff8184846131c2565b505050565b5b81811015613223576132186000826131ec565b600181019050613205565b5050565b601f8211156132685761323981613108565b6132428461311d565b81016020851015613251578190505b61326561325d8561311d565b830182613204565b50505b505050565b600082821c905092915050565b600061328b6000198460080261326d565b1980831691505092915050565b60006132a4838361327a565b9150826002028217905092915050565b6132be83836130fd565b67ffffffffffffffff8111156132d7576132d6612d94565b5b6132e18254613023565b6132ec828285613227565b6000601f83116001811461331b5760008415613309578287013590505b6133138582613298565b86555061337b565b601f19841661332986613108565b60005b828110156133515784890135825560018201915060208501945060208101905061332c565b8683101561336e578489013561336a601f89168261327a565b8355505b6001600288020188555050505b50505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006133ba601f83612754565b91506133c582613384565b602082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b60006133fb826127fb565b9150613406836127fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343f5761343e613054565b5b828202905092915050565b600061345582612f7a565b915061346083612f7a565b9250828201905063ffffffff81111561347c5761347b613054565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134bc826127fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ee576134ed613054565b5b600182019050919050565b600081905092915050565b600061350f82612749565b61351981856134f9565b9350613529818560208601612765565b80840191505092915050565b60006135418285613504565b915061354d8284613504565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135b5602683612754565b91506135c082613559565b604082019050919050565b600060208201905081810360008301526135e4816135a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613621602083612754565b915061362c826135eb565b602082019050919050565b6000602082019050818103600083015261365081613614565b9050919050565b6000613662826127fb565b915061366d836127fb565b925082820390508181111561368557613684613054565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136c5826127fb565b91506136d0836127fb565b9250826136e0576136df61368b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613712826136eb565b61371c81856136f6565b935061372c818560208601612765565b6137358161278f565b840191505092915050565b60006080820190506137556000830187612890565b6137626020830186612890565b61376f60408301856129b8565b81810360608301526137818184613707565b905095945050505050565b60008151905061379b816126ba565b92915050565b6000602082840312156137b7576137b6612684565b5b60006137c58482850161378c565b9150509291505056fea2646970667358221220ffb95bd72f4ed9e6f0ed31b97f0ebaeec6f9a43df53792a9f0815a11a32cd6d664736f6c63430008100033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _provenanceHash (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62456:14519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76948:16;;;;;;;;;;;;;;62456:14519;76805:16;;;;;;;;;;;;;;27045:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27947:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34430:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33871:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62934:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23698:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38137:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66808:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75748:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76327:257;;;;;;;;;;;;;:::i;:::-;;41050:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67869:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62984:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29340:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62701:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65513:720;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67301:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24882:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7793:103;;;;;;;;;;;;;:::i;:::-;;7145:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28123:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34988:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64600:770;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41833:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62757:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72326:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62849:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28333:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62648:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72045:220;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62884:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71304:229;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35453:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8051:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27045:639;27130:4;27469:10;27454:25;;:11;:25;;;;:102;;;;27546:10;27531:25;;:11;:25;;;;27454:102;:179;;;;27623:10;27608:25;;:11;:25;;;;27454:179;27434:199;;27045:639;;;:::o;27947:100::-;28001:13;28034:5;28027:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27947:100;:::o;34430:218::-;34506:7;34531:16;34539:7;34531;:16::i;:::-;34526:64;;34556:34;;;;;;;;;;;;;;34526:64;34610:15;:24;34626:7;34610:24;;;;;;;;;;;:30;;;;;;;;;;;;34603:37;;34430:218;;;:::o;33871:400::-;33952:13;33968:16;33976:7;33968;:16::i;:::-;33952:32;;34024:5;34001:28;;:19;:17;:19::i;:::-;:28;;;33997:175;;34049:44;34066:5;34073:19;:17;:19::i;:::-;34049:16;:44::i;:::-;34044:128;;34121:35;;;;;;;;;;;;;;34044:128;33997:175;34217:2;34184:15;:24;34200:7;34184:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34255:7;34251:2;34235:28;;34244:5;34235:28;;;;;;;;;;;;33941:330;33871:400;;:::o;62934:43::-;;;;;;;;;;;;;:::o;23698:323::-;23759:7;23987:15;:13;:15::i;:::-;23972:12;;23956:13;;:28;:46;23949:53;;23698:323;:::o;38137:2817::-;38271:27;38301;38320:7;38301:18;:27::i;:::-;38271:57;;38386:4;38345:45;;38361:19;38345:45;;;38341:86;;38399:28;;;;;;;;;;;;;;38341:86;38441:27;38470:23;38497:35;38524:7;38497:26;:35::i;:::-;38440:92;;;;38632:68;38657:15;38674:4;38680:19;:17;:19::i;:::-;38632:24;:68::i;:::-;38627:180;;38720:43;38737:4;38743:19;:17;:19::i;:::-;38720:16;:43::i;:::-;38715:92;;38772:35;;;;;;;;;;;;;;38715:92;38627:180;38838:1;38824:16;;:2;:16;;;38820:52;;38849:23;;;;;;;;;;;;;;38820:52;38885:43;38907:4;38913:2;38917:7;38926:1;38885:21;:43::i;:::-;39021:15;39018:160;;;39161:1;39140:19;39133:30;39018:160;39558:18;:24;39577:4;39558:24;;;;;;;;;;;;;;;;39556:26;;;;;;;;;;;;39627:18;:22;39646:2;39627:22;;;;;;;;;;;;;;;;39625:24;;;;;;;;;;;39949:146;39986:2;40035:45;40050:4;40056:2;40060:19;40035:14;:45::i;:::-;20097:8;40007:73;39949:18;:146::i;:::-;39920:17;:26;39938:7;39920:26;;;;;;;;;;;:175;;;;40266:1;20097:8;40215:19;:47;:52;40211:627;;40288:19;40320:1;40310:7;:11;40288:33;;40477:1;40443:17;:30;40461:11;40443:30;;;;;;;;;;;;:35;40439:384;;40581:13;;40566:11;:28;40562:242;;40761:19;40728:17;:30;40746:11;40728:30;;;;;;;;;;;:52;;;;40562:242;40439:384;40269:569;40211:627;40885:7;40881:2;40866:27;;40875:4;40866:27;;;;;;;;;;;;40904:42;40925:4;40931:2;40935:7;40944:1;40904:20;:42::i;:::-;38260:2694;;;38137:2817;;;:::o;66808:104::-;7031:13;:11;:13::i;:::-;66894:10:::1;66882:9;;:22;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;66808:104:::0;:::o;75748:278::-;7031:13;:11;:13::i;:::-;75842:14:::1;63957:10;63944:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;63940:83;;63991:20;;;;;;;;;;;;;;63940:83;62689:5:::2;75878:43;;75894:9;75878:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;75874:103;;;75945:20;;;;;;;;;;;;;;75874:103;75989:29;75999:7;:5;:7::i;:::-;76008:9;75989;:29::i;:::-;7055:1:::1;75748:278:::0;:::o;76327:257::-;7031:13;:11;:13::i;:::-;76438:12:::1;76456:7;:5;:7::i;:::-;:12;;76476:21;76456:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76437:65;;;76518:7;76513:64;;76549:16;;;;;;;;;;;;;;76513:64;76366:218;76327:257::o:0;41050:185::-;41188:39;41205:4;41211:2;41215:7;41188:39;;;;;;;;;;;;:16;:39::i;:::-;41050:185;;;:::o;67869:112::-;7031:13;:11;:13::i;:::-;67960::::1;;67950:7;:23;;;;;;;:::i;:::-;;67869:112:::0;;:::o;62984:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;29340:152::-;29412:7;29455:27;29474:7;29455:18;:27::i;:::-;29432:52;;29340:152;;;:::o;62701:49::-;62748:2;62701:49;:::o;65513:720::-;65600:21;63957:10;63944:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;63940:83;;63991:20;;;;;;;;;;;;;;63940:83;4098:1:::1;4696:7;;:19:::0;4688:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4098:1;4829:7;:18;;;;65698:9:::2;65678:29;;62801:10;65678:29;;;;:::i;:::-;65665:9;:42;65661:100;;65731:18;;;;;;;;;;;;;;65661:100;62689:5;65775:43;;65791:9;65775:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;65771:103;;;65842:20;;;;;;;;;;;;;;65771:103;62748:2;65888:59;;65913:9;65888:34;;:22;:20;:22::i;:::-;:34;;;;:::i;:::-;:59;;;65884:127;;;65971:28;;;;;;;;;;;;;;65884:127;66023:37;66050:9;66023:37;;:26;:37::i;:::-;62689:5;66075:44;;66091:9;66075:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:44:::0;66071:110:::2;;66136:33;:31;:33::i;:::-;66071:110;66193:32;66203:10;66215:9;66193:32;;:9;:32::i;:::-;4054:1:::1;5008:7;:22;;;;65513:720:::0;;:::o;67301:397::-;7031:13;:11;:13::i;:::-;67479:12:::1;;:19;;67458:10;;:17;;:40;67454:94;;67522:14;;;;;;;;;;;;;;67454:94;67565:9;67560:131;67584:10;;:17;;67580:1;:21;67560:131;;;67664:12;;67677:1;67664:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67623:23;:38;67647:10;;67658:1;67647:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67623:38;;;;;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;67603:3;;;;;:::i;:::-;;;;67560:131;;;;67301:397:::0;;;;:::o;24882:233::-;24954:7;24995:1;24978:19;;:5;:19;;;24974:60;;25006:28;;;;;;;;;;;;;;24974:60;19041:13;25052:18;:25;25071:5;25052:25;;;;;;;;;;;;;;;;:55;25045:62;;24882:233;;;:::o;7793:103::-;7031:13;:11;:13::i;:::-;7858:30:::1;7885:1;7858:18;:30::i;:::-;7793:103::o:0;7145:87::-;7191:7;7218:6;;;;;;;;;;;7211:13;;7145:87;:::o;28123:104::-;28179:13;28212:7;28205:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28123:104;:::o;34988:308::-;35099:19;:17;:19::i;:::-;35087:31;;:8;:31;;;35083:61;;35127:17;;;;;;;;;;;;;;35083:61;35209:8;35157:18;:39;35176:19;:17;:19::i;:::-;35157:39;;;;;;;;;;;;;;;:49;35197:8;35157:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35269:8;35233:55;;35248:19;:17;:19::i;:::-;35233:55;;;35279:8;35233:55;;;;;;:::i;:::-;;;;;;;;34988:308;;:::o;64600:770::-;64679:24;63957:10;63944:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;63940:83;;63991:20;;;;;;;;;;;;;;63940:83;4098:1:::1;4696:7;;:19:::0;4688:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4098:1;4829:7;:18;;;;64786:1:::2;64747:23;:35;64771:10;64747:35;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;64743:96:::2;;64811:16;;;;;;;;;;;;;;64743:96;62689:5;64853:43;;64869:9;64853:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;64849:103;;;64920:20;;;;;;;;;;;;;;64849:103;65033:23;:35;65057:10;65033:35;;;;;;;;;;;;;;;;;;;;;;;;;64980:88;;65008:9;64980:37;;:25;:23;:25::i;:::-;:37;;;;:::i;:::-;:88;;;64962:183;;;65102:31;;;;;;;;;;;;;;64962:183;65157:40;65187:9;65157:40;;:29;:40::i;:::-;62689:5;65212:44;;65228:9;65212:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:44:::0;65208:110:::2;;65273:33;:31;:33::i;:::-;65208:110;65330:32;65340:10;65352:9;65330:32;;:9;:32::i;:::-;4054:1:::1;5008:7;:22;;;;64600:770:::0;;:::o;41833:399::-;42000:31;42013:4;42019:2;42023:7;42000:12;:31::i;:::-;42064:1;42046:2;:14;;;:19;42042:183;;42085:56;42116:4;42122:2;42126:7;42135:5;42085:30;:56::i;:::-;42080:145;;42169:40;;;;;;;;;;;;;;42080:145;42042:183;41833:399;;;;:::o;62757:54::-;62801:10;62757:54;:::o;72326:91::-;72371:9;72400;;;;;;;;;;;72393:16;;72326:91;:::o;62849:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28333:318::-;28406:13;28437:16;28445:7;28437;:16::i;:::-;28432:59;;28462:29;;;;;;;;;;;;;;28432:59;28504:21;28528:10;:8;:10::i;:::-;28504:34;;28581:1;28562:7;28556:21;:26;:87;;;;;;;;;;;;;;;;;28609:7;28618:18;28628:7;28618:9;:18::i;:::-;28592:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28556:87;28549:94;;;28333:318;;;:::o;62648:46::-;62689:5;62648:46;:::o;72045:220::-;72098:6;72120:28;72152:66;72188:19;72196:10;72188:7;:19::i;:::-;72152:21;:66::i;:::-;72117:101;;;72236:21;72229:28;;;72045:220;:::o;62884:43::-;;;;:::o;71304:229::-;71360:6;71380:31;71417:66;71453:19;71461:10;71453:7;:19::i;:::-;71417:21;:66::i;:::-;71379:104;;;71501:24;71494:31;;;71304:229;:::o;35453:164::-;35550:4;35574:18;:25;35593:5;35574:25;;;;;;;;;;;;;;;:35;35600:8;35574:35;;;;;;;;;;;;;;;;;;;;;;;;;35567:42;;35453:164;;;;:::o;8051:201::-;7031:13;:11;:13::i;:::-;8160:1:::1;8140:22;;:8;:22;;::::0;8132:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8216:28;8235:8;8216:18;:28::i;:::-;8051:201:::0;:::o;35875:282::-;35940:4;35996:7;35977:15;:13;:15::i;:::-;:26;;:66;;;;;36030:13;;36020:7;:23;35977:66;:153;;;;;36129:1;19817:8;36081:17;:26;36099:7;36081:26;;;;;;;;;;;;:44;:49;35977:153;35957:173;;35875:282;;;:::o;57641:105::-;57701:7;57728:10;57721:17;;57641:105;:::o;76592:93::-;76649:7;76676:1;76669:8;;76592:93;:::o;30495:1275::-;30562:7;30582:12;30597:7;30582:22;;30665:4;30646:15;:13;:15::i;:::-;:23;30642:1061;;30699:13;;30692:4;:20;30688:1015;;;30737:14;30754:17;:23;30772:4;30754:23;;;;;;;;;;;;30737:40;;30871:1;19817:8;30843:6;:24;:29;30839:845;;31508:113;31525:1;31515:6;:11;31508:113;;31568:17;:25;31586:6;;;;;;;31568:25;;;;;;;;;;;;31559:34;;31508:113;;;31654:6;31647:13;;;;;;30839:845;30714:989;30688:1015;30642:1061;31731:31;;;;;;;;;;;;;;30495:1275;;;;:::o;37038:479::-;37140:27;37169:23;37210:38;37251:15;:24;37267:7;37251:24;;;;;;;;;;;37210:65;;37422:18;37399:41;;37479:19;37473:26;37454:45;;37384:126;37038:479;;;:::o;36266:659::-;36415:11;36580:16;36573:5;36569:28;36560:37;;36740:16;36729:9;36725:32;36712:45;;36890:15;36879:9;36876:30;36868:5;36857:9;36854:20;36851:56;36841:66;;36266:659;;;;;:::o;42894:159::-;;;;;:::o;56950:311::-;57085:7;57105:16;20221:3;57131:19;:41;;57105:68;;20221:3;57199:31;57210:4;57216:2;57220:9;57199:10;:31::i;:::-;57191:40;;:62;;57184:69;;;56950:311;;;;;:::o;32318:450::-;32398:14;32566:16;32559:5;32555:28;32546:37;;32743:5;32729:11;32704:23;32700:41;32697:52;32690:5;32687:63;32677:73;;32318:450;;;;:::o;43718:158::-;;;;;:::o;7310:132::-;7385:12;:10;:12::i;:::-;7374:23;;:7;:5;:7::i;:::-;:23;;;7366:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7310:132::o;51473:112::-;51550:27;51560:2;51564:8;51550:27;;;;;;;;;;;;:9;:27::i;:::-;51473:112;;:::o;69927:429::-;70022:31;70068:28;70110:42;70132:19;70140:10;70132:7;:19::i;:::-;70110:21;:42::i;:::-;70007:145;;;;70195:15;70163:48;;;;;:::i;:::-;;;70222:126;70244:10;70269:68;70289:24;70315:21;70269:19;:68::i;:::-;70222:7;:126::i;:::-;69996:360;;69927:429;:::o;68086:181::-;62689:5;68192:67;;68225:1;68210:12;:16;;;;:::i;:::-;68200:27;68192:36;;:67;;;;:::i;:::-;68148:28;:111;;;;68086:181::o;8412:191::-;8486:16;8505:6;;;;;;;;;;;8486:25;;8531:8;8522:6;;:17;;;;;;;;;;;;;;;;;;8586:8;8555:40;;8576:8;8555:40;;;;;;;;;;;;8475:128;8412:191;:::o;68881:435::-;68979:31;69025:28;69067:42;69089:19;69097:10;69089:7;:19::i;:::-;69067:21;:42::i;:::-;68964:145;;;;69155:15;69120:51;;;;;:::i;:::-;;;69182:126;69204:10;69229:68;69249:24;69275:21;69229:19;:68::i;:::-;69182:7;:126::i;:::-;68953:363;;68881:435;:::o;44316:716::-;44479:4;44525:2;44500:45;;;44546:19;:17;:19::i;:::-;44567:4;44573:7;44582:5;44500:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44496:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44800:1;44783:6;:13;:18;44779:235;;44829:40;;;;;;;;;;;;;;44779:235;44972:6;44966:13;44957:6;44953:2;44949:15;44942:38;44496:529;44669:54;;;44659:64;;;:6;:64;;;;44652:71;;;44316:716;;;;;;:::o;72482:100::-;72534:13;72567:7;72560:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72482:100;:::o;57848:1581::-;57913:17;58338:4;58331;58325:11;58321:22;58314:29;;58430:3;58424:4;58417:17;58536:3;58775:5;58757:428;58783:1;58757:428;;;58823:1;58818:3;58814:11;58807:18;;58994:2;58988:4;58984:13;58980:2;58976:22;58971:3;58963:36;59088:2;59082:4;59078:13;59070:21;;59155:4;58757:428;59145:25;58757:428;58761:21;59224:3;59219;59215:13;59339:4;59334:3;59330:14;59323:21;;59404:6;59399:3;59392:19;57952:1470;;57848:1581;;;:::o;25769:137::-;25824:6;19415:3;25857:18;:25;25876:5;25857:25;;;;;;;;;;;;;;;;:40;;25843:55;;25769:137;;;:::o;73849:317::-;73957:31;73990:28;74093:2;74070:19;:25;;;;74036:60;;74138:19;74107:51;;73849:317;;;:::o;56651:147::-;56788:6;56651:147;;;;;:::o;5710:98::-;5763:7;5790:10;5783:17;;5710:98;:::o;50700:689::-;50831:19;50837:2;50841:8;50831:5;:19::i;:::-;50910:1;50892:2;:14;;;:19;50888:483;;50932:11;50946:13;;50932:27;;50978:13;51000:8;50994:3;:14;50978:30;;51027:233;51058:62;51097:1;51101:2;51105:7;;;;;;51114:5;51058:30;:62::i;:::-;51053:167;;51156:40;;;;;;;;;;;;;;51053:167;51255:3;51247:5;:11;51027:233;;51342:3;51325:13;;:20;51321:34;;51347:8;;;51321:34;50913:458;;50888:483;50700:689;;;:::o;73282:275::-;73423:6;73526:22;73519:30;;73500:2;73470:25;73463:33;;:39;;;;73462:87;73442:107;;73282:275;;;;:::o;26094:404::-;26166:14;26183:18;:25;26202:5;26183:25;;;;;;;;;;;;;;;;26166:42;;26219:17;26349:3;26336:16;;19415:3;26420:9;:24;;19560:14;26383:6;:32;26382:63;26373:72;;26484:6;26456:18;:25;26475:5;26456:25;;;;;;;;;;;;;;;:34;;;;26155:343;;26094:404;;:::o;45494:2454::-;45567:20;45590:13;;45567:36;;45630:1;45618:8;:13;45614:44;;45640:18;;;;;;;;;;;;;;45614:44;45671:61;45701:1;45705:2;45709:12;45723:8;45671:21;:61::i;:::-;46215:1;19179:2;46185:1;:26;;46184:32;46172:8;:45;46146:18;:22;46165:2;46146:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46494:139;46531:2;46585:33;46608:1;46612:2;46616:1;46585:14;:33::i;:::-;46552:30;46573:8;46552:20;:30::i;:::-;:66;46494:18;:139::i;:::-;46460:17;:31;46478:12;46460:31;;;;;;;;;;;:173;;;;46650:16;46681:11;46710:8;46695:12;:23;46681:37;;46965:16;46961:2;46957:25;46945:37;;47337:12;47297:8;47256:1;47194:25;47135:1;47074;47047:335;47462:1;47448:12;47444:20;47402:346;47503:3;47494:7;47491:16;47402:346;;47721:7;47711:8;47708:1;47681:25;47678:1;47675;47670:59;47556:1;47547:7;47543:15;47532:26;;47402:346;;;47406:77;47793:1;47781:8;:13;47777:45;;47803:19;;;;;;;;;;;;;;47777:45;47855:3;47839:13;:19;;;;45920:1950;;47880:60;47909:1;47913:2;47917:12;47931:8;47880:20;:60::i;:::-;45556:2392;45494:2454;;:::o;32870:324::-;32940:14;33173:1;33163:8;33160:15;33134:24;33130:46;33120:56;;32870:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:180::-;4938:77;4935:1;4928:88;5035:4;5032:1;5025:15;5059:4;5056:1;5049:15;5076:119;5163:1;5156:5;5153:12;5143:46;;5169:18;;:::i;:::-;5143:46;5076:119;:::o;5201:139::-;5252:7;5281:5;5270:16;;5287:47;5328:5;5287:47;:::i;:::-;5201:139;;;:::o;5346:::-;5408:9;5441:38;5473:5;5441:38;:::i;:::-;5428:51;;5346:139;;;:::o;5491:155::-;5590:49;5633:5;5590:49;:::i;:::-;5585:3;5578:62;5491:155;;:::o;5652:246::-;5757:4;5795:2;5784:9;5780:18;5772:26;;5808:83;5888:1;5877:9;5873:17;5864:6;5808:83;:::i;:::-;5652:246;;;;:::o;5904:118::-;5991:24;6009:5;5991:24;:::i;:::-;5986:3;5979:37;5904:118;;:::o;6028:222::-;6121:4;6159:2;6148:9;6144:18;6136:26;;6172:71;6240:1;6229:9;6225:17;6216:6;6172:71;:::i;:::-;6028:222;;;;:::o;6256:619::-;6333:6;6341;6349;6398:2;6386:9;6377:7;6373:23;6369:32;6366:119;;;6404:79;;:::i;:::-;6366:119;6524:1;6549:53;6594:7;6585:6;6574:9;6570:22;6549:53;:::i;:::-;6539:63;;6495:117;6651:2;6677:53;6722:7;6713:6;6702:9;6698:22;6677:53;:::i;:::-;6667:63;;6622:118;6779:2;6805:53;6850:7;6841:6;6830:9;6826:22;6805:53;:::i;:::-;6795:63;;6750:118;6256:619;;;;;:::o;6881:113::-;6968:1;6961:5;6958:12;6948:40;;6984:1;6981;6974:12;6948:40;6881:113;:::o;7000:167::-;7060:5;7098:6;7085:20;7076:29;;7114:47;7155:5;7114:47;:::i;:::-;7000:167;;;;:::o;7173:357::-;7246:6;7295:2;7283:9;7274:7;7270:23;7266:32;7263:119;;;7301:79;;:::i;:::-;7263:119;7421:1;7446:67;7505:7;7496:6;7485:9;7481:22;7446:67;:::i;:::-;7436:77;;7392:131;7173:357;;;;:::o;7536:117::-;7645:1;7642;7635:12;7659:117;7768:1;7765;7758:12;7782:117;7891:1;7888;7881:12;7919:553;7977:8;7987:6;8037:3;8030:4;8022:6;8018:17;8014:27;8004:122;;8045:79;;:::i;:::-;8004:122;8158:6;8145:20;8135:30;;8188:18;8180:6;8177:30;8174:117;;;8210:79;;:::i;:::-;8174:117;8324:4;8316:6;8312:17;8300:29;;8378:3;8370:4;8362:6;8358:17;8348:8;8344:32;8341:41;8338:128;;;8385:79;;:::i;:::-;8338:128;7919:553;;;;;:::o;8478:529::-;8549:6;8557;8606:2;8594:9;8585:7;8581:23;8577:32;8574:119;;;8612:79;;:::i;:::-;8574:119;8760:1;8749:9;8745:17;8732:31;8790:18;8782:6;8779:30;8776:117;;;8812:79;;:::i;:::-;8776:117;8925:65;8982:7;8973:6;8962:9;8958:22;8925:65;:::i;:::-;8907:83;;;;8703:297;8478:529;;;;;:::o;9013:329::-;9072:6;9121:2;9109:9;9100:7;9096:23;9092:32;9089:119;;;9127:79;;:::i;:::-;9089:119;9247:1;9272:53;9317:7;9308:6;9297:9;9293:22;9272:53;:::i;:::-;9262:63;;9218:117;9013:329;;;;:::o;9348:86::-;9383:7;9423:4;9416:5;9412:16;9401:27;;9348:86;;;:::o;9440:112::-;9523:22;9539:5;9523:22;:::i;:::-;9518:3;9511:35;9440:112;;:::o;9558:214::-;9647:4;9685:2;9674:9;9670:18;9662:26;;9698:67;9762:1;9751:9;9747:17;9738:6;9698:67;:::i;:::-;9558:214;;;;:::o;9778:118::-;9849:22;9865:5;9849:22;:::i;:::-;9842:5;9839:33;9829:61;;9886:1;9883;9876:12;9829:61;9778:118;:::o;9902:135::-;9946:5;9984:6;9971:20;9962:29;;10000:31;10025:5;10000:31;:::i;:::-;9902:135;;;;:::o;10043:325::-;10100:6;10149:2;10137:9;10128:7;10124:23;10120:32;10117:119;;;10155:79;;:::i;:::-;10117:119;10275:1;10300:51;10343:7;10334:6;10323:9;10319:22;10300:51;:::i;:::-;10290:61;;10246:115;10043:325;;;;:::o;10391:568::-;10464:8;10474:6;10524:3;10517:4;10509:6;10505:17;10501:27;10491:122;;10532:79;;:::i;:::-;10491:122;10645:6;10632:20;10622:30;;10675:18;10667:6;10664:30;10661:117;;;10697:79;;:::i;:::-;10661:117;10811:4;10803:6;10799:17;10787:29;;10865:3;10857:4;10849:6;10845:17;10835:8;10831:32;10828:41;10825:128;;;10872:79;;:::i;:::-;10825:128;10391:568;;;;;:::o;10980:566::-;11051:8;11061:6;11111:3;11104:4;11096:6;11092:17;11088:27;11078:122;;11119:79;;:::i;:::-;11078:122;11232:6;11219:20;11209:30;;11262:18;11254:6;11251:30;11248:117;;;11284:79;;:::i;:::-;11248:117;11398:4;11390:6;11386:17;11374:29;;11452:3;11444:4;11436:6;11432:17;11422:8;11418:32;11415:41;11412:128;;;11459:79;;:::i;:::-;11412:128;10980:566;;;;;:::o;11552:930::-;11672:6;11680;11688;11696;11745:2;11733:9;11724:7;11720:23;11716:32;11713:119;;;11751:79;;:::i;:::-;11713:119;11899:1;11888:9;11884:17;11871:31;11929:18;11921:6;11918:30;11915:117;;;11951:79;;:::i;:::-;11915:117;12064:80;12136:7;12127:6;12116:9;12112:22;12064:80;:::i;:::-;12046:98;;;;11842:312;12221:2;12210:9;12206:18;12193:32;12252:18;12244:6;12241:30;12238:117;;;12274:79;;:::i;:::-;12238:117;12387:78;12457:7;12448:6;12437:9;12433:22;12387:78;:::i;:::-;12369:96;;;;12164:311;11552:930;;;;;;;:::o;12488:116::-;12558:21;12573:5;12558:21;:::i;:::-;12551:5;12548:32;12538:60;;12594:1;12591;12584:12;12538:60;12488:116;:::o;12610:133::-;12653:5;12691:6;12678:20;12669:29;;12707:30;12731:5;12707:30;:::i;:::-;12610:133;;;;:::o;12749:468::-;12814:6;12822;12871:2;12859:9;12850:7;12846:23;12842:32;12839:119;;;12877:79;;:::i;:::-;12839:119;12997:1;13022:53;13067:7;13058:6;13047:9;13043:22;13022:53;:::i;:::-;13012:63;;12968:117;13124:2;13150:50;13192:7;13183:6;13172:9;13168:22;13150:50;:::i;:::-;13140:60;;13095:115;12749:468;;;;;:::o;13223:117::-;13332:1;13329;13322:12;13346:180;13394:77;13391:1;13384:88;13491:4;13488:1;13481:15;13515:4;13512:1;13505:15;13532:281;13615:27;13637:4;13615:27;:::i;:::-;13607:6;13603:40;13745:6;13733:10;13730:22;13709:18;13697:10;13694:34;13691:62;13688:88;;;13756:18;;:::i;:::-;13688:88;13796:10;13792:2;13785:22;13575:238;13532:281;;:::o;13819:129::-;13853:6;13880:20;;:::i;:::-;13870:30;;13909:33;13937:4;13929:6;13909:33;:::i;:::-;13819:129;;;:::o;13954:307::-;14015:4;14105:18;14097:6;14094:30;14091:56;;;14127:18;;:::i;:::-;14091:56;14165:29;14187:6;14165:29;:::i;:::-;14157:37;;14249:4;14243;14239:15;14231:23;;13954:307;;;:::o;14267:146::-;14364:6;14359:3;14354;14341:30;14405:1;14396:6;14391:3;14387:16;14380:27;14267:146;;;:::o;14419:423::-;14496:5;14521:65;14537:48;14578:6;14537:48;:::i;:::-;14521:65;:::i;:::-;14512:74;;14609:6;14602:5;14595:21;14647:4;14640:5;14636:16;14685:3;14676:6;14671:3;14667:16;14664:25;14661:112;;;14692:79;;:::i;:::-;14661:112;14782:54;14829:6;14824:3;14819;14782:54;:::i;:::-;14502:340;14419:423;;;;;:::o;14861:338::-;14916:5;14965:3;14958:4;14950:6;14946:17;14942:27;14932:122;;14973:79;;:::i;:::-;14932:122;15090:6;15077:20;15115:78;15189:3;15181:6;15174:4;15166:6;15162:17;15115:78;:::i;:::-;15106:87;;14922:277;14861:338;;;;:::o;15205:943::-;15300:6;15308;15316;15324;15373:3;15361:9;15352:7;15348:23;15344:33;15341:120;;;15380:79;;:::i;:::-;15341:120;15500:1;15525:53;15570:7;15561:6;15550:9;15546:22;15525:53;:::i;:::-;15515:63;;15471:117;15627:2;15653:53;15698:7;15689:6;15678:9;15674:22;15653:53;:::i;:::-;15643:63;;15598:118;15755:2;15781:53;15826:7;15817:6;15806:9;15802:22;15781:53;:::i;:::-;15771:63;;15726:118;15911:2;15900:9;15896:18;15883:32;15942:18;15934:6;15931:30;15928:117;;;15964:79;;:::i;:::-;15928:117;16069:62;16123:7;16114:6;16103:9;16099:22;16069:62;:::i;:::-;16059:72;;15854:287;15205:943;;;;;;;:::o;16154:89::-;16190:7;16230:6;16223:5;16219:18;16208:29;;16154:89;;;:::o;16249:115::-;16334:23;16351:5;16334:23;:::i;:::-;16329:3;16322:36;16249:115;;:::o;16370:218::-;16461:4;16499:2;16488:9;16484:18;16476:26;;16512:69;16578:1;16567:9;16563:17;16554:6;16512:69;:::i;:::-;16370:218;;;;:::o;16594:93::-;16630:7;16670:10;16663:5;16659:22;16648:33;;16594:93;;;:::o;16693:115::-;16778:23;16795:5;16778:23;:::i;:::-;16773:3;16766:36;16693:115;;:::o;16814:218::-;16905:4;16943:2;16932:9;16928:18;16920:26;;16956:69;17022:1;17011:9;17007:17;16998:6;16956:69;:::i;:::-;16814:218;;;;:::o;17038:474::-;17106:6;17114;17163:2;17151:9;17142:7;17138:23;17134:32;17131:119;;;17169:79;;:::i;:::-;17131:119;17289:1;17314:53;17359:7;17350:6;17339:9;17335:22;17314:53;:::i;:::-;17304:63;;17260:117;17416:2;17442:53;17487:7;17478:6;17467:9;17463:22;17442:53;:::i;:::-;17432:63;;17387:118;17038:474;;;;;:::o;17518:180::-;17566:77;17563:1;17556:88;17663:4;17660:1;17653:15;17687:4;17684:1;17677:15;17704:320;17748:6;17785:1;17779:4;17775:12;17765:22;;17832:1;17826:4;17822:12;17853:18;17843:81;;17909:4;17901:6;17897:17;17887:27;;17843:81;17971:2;17963:6;17960:14;17940:18;17937:38;17934:84;;17990:18;;:::i;:::-;17934:84;17755:269;17704:320;;;:::o;18030:180::-;18078:77;18075:1;18068:88;18175:4;18172:1;18165:15;18199:4;18196:1;18189:15;18216:191;18256:3;18275:20;18293:1;18275:20;:::i;:::-;18270:25;;18309:20;18327:1;18309:20;:::i;:::-;18304:25;;18352:1;18349;18345:9;18338:16;;18373:3;18370:1;18367:10;18364:36;;;18380:18;;:::i;:::-;18364:36;18216:191;;;;:::o;18413:147::-;18514:11;18551:3;18536:18;;18413:147;;;;:::o;18566:114::-;;:::o;18686:398::-;18845:3;18866:83;18947:1;18942:3;18866:83;:::i;:::-;18859:90;;18958:93;19047:3;18958:93;:::i;:::-;19076:1;19071:3;19067:11;19060:18;;18686:398;;;:::o;19090:379::-;19274:3;19296:147;19439:3;19296:147;:::i;:::-;19289:154;;19460:3;19453:10;;19090:379;;;:::o;19475:97::-;19534:6;19562:3;19552:13;;19475:97;;;;:::o;19578:141::-;19627:4;19650:3;19642:11;;19673:3;19670:1;19663:14;19707:4;19704:1;19694:18;19686:26;;19578:141;;;:::o;19725:93::-;19762:6;19809:2;19804;19797:5;19793:14;19789:23;19779:33;;19725:93;;;:::o;19824:107::-;19868:8;19918:5;19912:4;19908:16;19887:37;;19824:107;;;;:::o;19937:393::-;20006:6;20056:1;20044:10;20040:18;20079:97;20109:66;20098:9;20079:97;:::i;:::-;20197:39;20227:8;20216:9;20197:39;:::i;:::-;20185:51;;20269:4;20265:9;20258:5;20254:21;20245:30;;20318:4;20308:8;20304:19;20297:5;20294:30;20284:40;;20013:317;;19937:393;;;;;:::o;20336:60::-;20364:3;20385:5;20378:12;;20336:60;;;:::o;20402:142::-;20452:9;20485:53;20503:34;20512:24;20530:5;20512:24;:::i;:::-;20503:34;:::i;:::-;20485:53;:::i;:::-;20472:66;;20402:142;;;:::o;20550:75::-;20593:3;20614:5;20607:12;;20550:75;;;:::o;20631:269::-;20741:39;20772:7;20741:39;:::i;:::-;20802:91;20851:41;20875:16;20851:41;:::i;:::-;20843:6;20836:4;20830:11;20802:91;:::i;:::-;20796:4;20789:105;20707:193;20631:269;;;:::o;20906:73::-;20951:3;20906:73;:::o;20985:189::-;21062:32;;:::i;:::-;21103:65;21161:6;21153;21147:4;21103:65;:::i;:::-;21038:136;20985:189;;:::o;21180:186::-;21240:120;21257:3;21250:5;21247:14;21240:120;;;21311:39;21348:1;21341:5;21311:39;:::i;:::-;21284:1;21277:5;21273:13;21264:22;;21240:120;;;21180:186;;:::o;21372:543::-;21473:2;21468:3;21465:11;21462:446;;;21507:38;21539:5;21507:38;:::i;:::-;21591:29;21609:10;21591:29;:::i;:::-;21581:8;21577:44;21774:2;21762:10;21759:18;21756:49;;;21795:8;21780:23;;21756:49;21818:80;21874:22;21892:3;21874:22;:::i;:::-;21864:8;21860:37;21847:11;21818:80;:::i;:::-;21477:431;;21462:446;21372:543;;;:::o;21921:117::-;21975:8;22025:5;22019:4;22015:16;21994:37;;21921:117;;;;:::o;22044:169::-;22088:6;22121:51;22169:1;22165:6;22157:5;22154:1;22150:13;22121:51;:::i;:::-;22117:56;22202:4;22196;22192:15;22182:25;;22095:118;22044:169;;;;:::o;22218:295::-;22294:4;22440:29;22465:3;22459:4;22440:29;:::i;:::-;22432:37;;22502:3;22499:1;22495:11;22489:4;22486:21;22478:29;;22218:295;;;;:::o;22518:1403::-;22642:44;22682:3;22677;22642:44;:::i;:::-;22751:18;22743:6;22740:30;22737:56;;;22773:18;;:::i;:::-;22737:56;22817:38;22849:4;22843:11;22817:38;:::i;:::-;22902:67;22962:6;22954;22948:4;22902:67;:::i;:::-;22996:1;23025:2;23017:6;23014:14;23042:1;23037:632;;;;23713:1;23730:6;23727:84;;;23786:9;23781:3;23777:19;23764:33;23755:42;;23727:84;23837:67;23897:6;23890:5;23837:67;:::i;:::-;23831:4;23824:81;23686:229;23007:908;;23037:632;23089:4;23085:9;23077:6;23073:22;23123:37;23155:4;23123:37;:::i;:::-;23182:1;23196:215;23210:7;23207:1;23204:14;23196:215;;;23296:9;23291:3;23287:19;23274:33;23266:6;23259:49;23347:1;23339:6;23335:14;23325:24;;23394:2;23383:9;23379:18;23366:31;;23233:4;23230:1;23226:12;23221:17;;23196:215;;;23439:6;23430:7;23427:19;23424:186;;;23504:9;23499:3;23495:19;23482:33;23547:48;23589:4;23581:6;23577:17;23566:9;23547:48;:::i;:::-;23539:6;23532:64;23447:163;23424:186;23656:1;23652;23644:6;23640:14;23636:22;23630:4;23623:36;23044:625;;;23007:908;;22617:1304;;;22518:1403;;;:::o;23927:181::-;24067:33;24063:1;24055:6;24051:14;24044:57;23927:181;:::o;24114:366::-;24256:3;24277:67;24341:2;24336:3;24277:67;:::i;:::-;24270:74;;24353:93;24442:3;24353:93;:::i;:::-;24471:2;24466:3;24462:12;24455:19;;24114:366;;;:::o;24486:419::-;24652:4;24690:2;24679:9;24675:18;24667:26;;24739:9;24733:4;24729:20;24725:1;24714:9;24710:17;24703:47;24767:131;24893:4;24767:131;:::i;:::-;24759:139;;24486:419;;;:::o;24911:348::-;24951:7;24974:20;24992:1;24974:20;:::i;:::-;24969:25;;25008:20;25026:1;25008:20;:::i;:::-;25003:25;;25196:1;25128:66;25124:74;25121:1;25118:81;25113:1;25106:9;25099:17;25095:105;25092:131;;;25203:18;;:::i;:::-;25092:131;25251:1;25248;25244:9;25233:20;;24911:348;;;;:::o;25265:197::-;25304:3;25323:19;25340:1;25323:19;:::i;:::-;25318:24;;25356:19;25373:1;25356:19;:::i;:::-;25351:24;;25398:1;25395;25391:9;25384:16;;25421:10;25416:3;25413:19;25410:45;;;25435:18;;:::i;:::-;25410:45;25265:197;;;;:::o;25468:180::-;25516:77;25513:1;25506:88;25613:4;25610:1;25603:15;25637:4;25634:1;25627:15;25654:233;25693:3;25716:24;25734:5;25716:24;:::i;:::-;25707:33;;25762:66;25755:5;25752:77;25749:103;;25832:18;;:::i;:::-;25749:103;25879:1;25872:5;25868:13;25861:20;;25654:233;;;:::o;25893:148::-;25995:11;26032:3;26017:18;;25893:148;;;;:::o;26047:390::-;26153:3;26181:39;26214:5;26181:39;:::i;:::-;26236:89;26318:6;26313:3;26236:89;:::i;:::-;26229:96;;26334:65;26392:6;26387:3;26380:4;26373:5;26369:16;26334:65;:::i;:::-;26424:6;26419:3;26415:16;26408:23;;26157:280;26047:390;;;;:::o;26443:435::-;26623:3;26645:95;26736:3;26727:6;26645:95;:::i;:::-;26638:102;;26757:95;26848:3;26839:6;26757:95;:::i;:::-;26750:102;;26869:3;26862:10;;26443:435;;;;;:::o;26884:225::-;27024:34;27020:1;27012:6;27008:14;27001:58;27093:8;27088:2;27080:6;27076:15;27069:33;26884:225;:::o;27115:366::-;27257:3;27278:67;27342:2;27337:3;27278:67;:::i;:::-;27271:74;;27354:93;27443:3;27354:93;:::i;:::-;27472:2;27467:3;27463:12;27456:19;;27115:366;;;:::o;27487:419::-;27653:4;27691:2;27680:9;27676:18;27668:26;;27740:9;27734:4;27730:20;27726:1;27715:9;27711:17;27704:47;27768:131;27894:4;27768:131;:::i;:::-;27760:139;;27487:419;;;:::o;27912:182::-;28052:34;28048:1;28040:6;28036:14;28029:58;27912:182;:::o;28100:366::-;28242:3;28263:67;28327:2;28322:3;28263:67;:::i;:::-;28256:74;;28339:93;28428:3;28339:93;:::i;:::-;28457:2;28452:3;28448:12;28441:19;;28100:366;;;:::o;28472:419::-;28638:4;28676:2;28665:9;28661:18;28653:26;;28725:9;28719:4;28715:20;28711:1;28700:9;28696:17;28689:47;28753:131;28879:4;28753:131;:::i;:::-;28745:139;;28472:419;;;:::o;28897:194::-;28937:4;28957:20;28975:1;28957:20;:::i;:::-;28952:25;;28991:20;29009:1;28991:20;:::i;:::-;28986:25;;29035:1;29032;29028:9;29020:17;;29059:1;29053:4;29050:11;29047:37;;;29064:18;;:::i;:::-;29047:37;28897:194;;;;:::o;29097:180::-;29145:77;29142:1;29135:88;29242:4;29239:1;29232:15;29266:4;29263:1;29256:15;29283:176;29315:1;29332:20;29350:1;29332:20;:::i;:::-;29327:25;;29366:20;29384:1;29366:20;:::i;:::-;29361:25;;29405:1;29395:35;;29410:18;;:::i;:::-;29395:35;29451:1;29448;29444:9;29439:14;;29283:176;;;;:::o;29465:98::-;29516:6;29550:5;29544:12;29534:22;;29465:98;;;:::o;29569:168::-;29652:11;29686:6;29681:3;29674:19;29726:4;29721:3;29717:14;29702:29;;29569:168;;;;:::o;29743:373::-;29829:3;29857:38;29889:5;29857:38;:::i;:::-;29911:70;29974:6;29969:3;29911:70;:::i;:::-;29904:77;;29990:65;30048:6;30043:3;30036:4;30029:5;30025:16;29990:65;:::i;:::-;30080:29;30102:6;30080:29;:::i;:::-;30075:3;30071:39;30064:46;;29833:283;29743:373;;;;:::o;30122:640::-;30317:4;30355:3;30344:9;30340:19;30332:27;;30369:71;30437:1;30426:9;30422:17;30413:6;30369:71;:::i;:::-;30450:72;30518:2;30507:9;30503:18;30494:6;30450:72;:::i;:::-;30532;30600:2;30589:9;30585:18;30576:6;30532:72;:::i;:::-;30651:9;30645:4;30641:20;30636:2;30625:9;30621:18;30614:48;30679:76;30750:4;30741:6;30679:76;:::i;:::-;30671:84;;30122:640;;;;;;;:::o;30768:141::-;30824:5;30855:6;30849:13;30840:22;;30871:32;30897:5;30871:32;:::i;:::-;30768:141;;;;:::o;30915:349::-;30984:6;31033:2;31021:9;31012:7;31008:23;31004:32;31001:119;;;31039:79;;:::i;:::-;31001:119;31159:1;31184:63;31239:7;31230:6;31219:9;31215:22;31184:63;:::i;:::-;31174:73;;31130:127;30915:349;;;;:::o

Swarm Source

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