ETH Price: $3,677.94 (+0.17%)
 

Overview

Max Total Supply

947 BOOMB

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BOOMB
0x59f047de06586b96a6caf443f59e77d7b1f7d2d1
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:
BoomBunnies

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-15
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.13;

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

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/BoomBunnies.sol



pragma solidity ^0.8.15;








contract BoomBunnies is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    bool public mintToggle;
    string public baseURI;  
    uint256 public price = 0;
    uint256 public boomSupply = 2500;
    uint256 public maxMints = 2;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("Boom Bunnies", "BOOMB") {
        mintToggle = false;
    }

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

    
    function publicMint(uint256 qty) external payable
    {
        require(mintToggle , "Mint is not Toggled.");
        require(qty <= maxMints, "Max Mints Reached!");
        require(totalSupply() + qty <= boomSupply,"All Sold Out!");
        require(msg.value >= qty * price,"Not Enough ETH!");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }



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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

     function toggleMint() public onlyOwner {
        mintToggle = !mintToggle;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        maxMints = newMax;

    }

    function detonate(uint256[] memory tokenIds) public onlyOwner {
    for (uint256 i = 0; i < tokenIds.length; i++) {
        uint256 tokenId = tokenIds[i];
        _burn(tokenId);
    }
    }



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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boomSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"detonate","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintToggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556109c4600d556002600e553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f426f6f6d2042756e6e69657300000000000000000000000000000000000000008152506040518060400160405280600581526020017f424f4f4d420000000000000000000000000000000000000000000000000000008152508160029081620000b691906200066a565b508060039081620000c891906200066a565b50620000d96200031960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d65780156200019c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016292919062000796565b600060405180830381600087803b1580156200017d57600080fd5b505af115801562000192573d6000803e3d6000fd5b50505050620002d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000256576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021c92919062000796565b600060405180830381600087803b1580156200023757600080fd5b505af11580156200024c573d6000803e3d6000fd5b50505050620002d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029f9190620007c3565b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050505b5b5b5050620002f8620002ec6200032260201b60201c565b6200032a60201b60201c565b6000600a60006101000a81548160ff021916908315150217905550620007e0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047257607f821691505b6020821081036200048857620004876200042a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b3565b620004fe8683620004b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054b620005456200053f8462000516565b62000520565b62000516565b9050919050565b6000819050919050565b62000567836200052a565b6200057f620005768262000552565b848454620004c0565b825550505050565b600090565b6200059662000587565b620005a38184846200055c565b505050565b5b81811015620005cb57620005bf6000826200058c565b600181019050620005a9565b5050565b601f8211156200061a57620005e4816200048e565b620005ef84620004a3565b81016020851015620005ff578190505b620006176200060e85620004a3565b830182620005a8565b50505b505050565b600082821c905092915050565b60006200063f600019846008026200061f565b1980831691505092915050565b60006200065a83836200062c565b9150826002028217905092915050565b6200067582620003f0565b67ffffffffffffffff811115620006915762000690620003fb565b5b6200069d825462000459565b620006aa828285620005cf565b600060209050601f831160018114620006e25760008415620006cd578287015190505b620006d985826200064c565b86555062000749565b601f198416620006f2866200048e565b60005b828110156200071c57848901518255600182019150602085019450602081019050620006f5565b868310156200073c578489015162000738601f8916826200062c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200077e8262000751565b9050919050565b620007908162000771565b82525050565b6000604082019050620007ad600083018562000785565b620007bc602083018462000785565b9392505050565b6000602082019050620007da600083018462000785565b92915050565b6136ea80620007f06000396000f3fe6080604052600436106101d85760003560e01c80636fe69dca11610102578063a22cb46511610095578063d3dd5fe011610064578063d3dd5fe01461066b578063e985e9c514610682578063f2fde38b146106bf578063f8cbcf6d146106e8576101d8565b8063a22cb465146105be578063b6b6f0c3146105e7578063b88d4fde14610612578063c87b56dd1461062e576101d8565b806379c9cb7b116100d157806379c9cb7b146105145780638da5cb5b1461053d57806395d89b4114610568578063a035b1fe14610593576101d8565b80636fe69dca1461046a57806370a0823114610495578063715018a6146104d2578063785253f1146104e9576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e146103bd57806355f804b3146103d95780636352211e146104025780636c0360eb1461043f576101d8565b806324600fc3146103225780632be905ba146103395780632db115441461037657806341f4343414610392576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806322ae7f7b146102c957806323b872dd14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126a5565b610711565b60405161021191906126ed565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c9190612798565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906127f0565b610835565b604051610279919061285e565b60405180910390f35b61029c600480360381019061029791906128a5565b6108b4565b005b3480156102aa57600080fd5b506102b36109be565b6040516102c091906128f4565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061290f565b6109d5565b6040516102fd91906126ed565b60405180910390f35b610320600480360381019061031b919061293c565b6109f5565b005b34801561032e57600080fd5b50610337610b45565b005b34801561034557600080fd5b50610360600480360381019061035b919061290f565b610b96565b60405161036d91906128f4565b60405180910390f35b610390600480360381019061038b91906127f0565b610bae565b005b34801561039e57600080fd5b506103a7610d4c565b6040516103b491906129ee565b60405180910390f35b6103d760048036038101906103d2919061293c565b610d5e565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612b3e565b610eae565b005b34801561040e57600080fd5b50610429600480360381019061042491906127f0565b610ec9565b604051610436919061285e565b60405180910390f35b34801561044b57600080fd5b50610454610edb565b6040516104619190612798565b60405180910390f35b34801561047657600080fd5b5061047f610f69565b60405161048c91906128f4565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b7919061290f565b610f6f565b6040516104c991906128f4565b60405180910390f35b3480156104de57600080fd5b506104e7611027565b005b3480156104f557600080fd5b506104fe61103b565b60405161050b91906126ed565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906127f0565b61104e565b005b34801561054957600080fd5b50610552611060565b60405161055f919061285e565b60405180910390f35b34801561057457600080fd5b5061057d61108a565b60405161058a9190612798565b60405180910390f35b34801561059f57600080fd5b506105a861111c565b6040516105b591906128f4565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612bb3565b611122565b005b3480156105f357600080fd5b506105fc61122c565b60405161060991906128f4565b60405180910390f35b61062c60048036038101906106279190612c94565b611232565b005b34801561063a57600080fd5b50610655600480360381019061065091906127f0565b611385565b6040516106629190612798565b60405180910390f35b34801561067757600080fd5b50610680611423565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612d17565b611457565b6040516106b691906126ed565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061290f565b6114eb565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612e1f565b61156e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612e97565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612e97565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000610840826115c2565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109af576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092c929190612ec8565b602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d9190612f06565b6109ae57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a5919061285e565b60405180910390fd5b5b6109b98383611621565b505050565b60006109c8611765565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6757610a6284848461176e565b610b3f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab0929190612ec8565b602060405180830381865afa158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190612f06565b610b3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b29919061285e565b60405180910390fd5b5b610b3e84848461176e565b5b50505050565b610b4d611a90565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b93573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612f7f565b60405180910390fd5b600e54811115610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612feb565b60405180910390fd5b600d5481610c4e6109be565b610c58919061303a565b1115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906130ba565b60405180910390fd5b600c5481610ca791906130da565b341015610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090613168565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d38919061303a565b92505081905550610d493382611b0e565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd057610dcb848484611b2c565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e19929190612ec8565b602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a9190612f06565b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e92919061285e565b60405180910390fd5b5b610ea7848484611b2c565b5b50505050565b610eb6611a90565b80600b9081610ec5919061332a565b5050565b6000610ed482611b4c565b9050919050565b600b8054610ee890612e97565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1490612e97565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102f611a90565b6110396000611c18565b565b600a60009054906101000a900460ff1681565b611056611a90565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109990612e97565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590612e97565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b5050505050905090565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561121d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119a929190612ec8565b602060405180830381865afa1580156111b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111db9190612f06565b61121c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611213919061285e565b60405180910390fd5b5b6112278383611cde565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611371573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a5576112a085858585611de9565b61137e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ee929190612ec8565b602060405180830381865afa15801561130b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132f9190612f06565b61137057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611367919061285e565b60405180910390fd5b5b61137d85858585611de9565b5b5050505050565b6060611390826115c2565b6113c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113d0611e5c565b905060008151036113f0576040518060200160405280600081525061141b565b806113fa84611eee565b60405160200161140b929190613438565b6040516020818303038152906040525b915050919050565b61142b611a90565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114f3611a90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906134ce565b60405180910390fd5b61156b81611c18565b50565b611576611a90565b60005b81518110156115be576000828281518110611597576115966134ee565b5b602002602001015190506115aa81611f3e565b5080806115b69061351d565b915050611579565b5050565b6000816115cd611765565b111580156115dc575060005482105b801561161a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061162c82610ec9565b90508073ffffffffffffffffffffffffffffffffffffffff1661164d611f4c565b73ffffffffffffffffffffffffffffffffffffffff16146116b05761167981611674611f4c565b611457565b6116af576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061177982611b4c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117ec84611f54565b9150915061180281876117fd611f4c565b611f7b565b61184e5761181786611812611f4c565b611457565b61184d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118b4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c18686866001611fbf565b80156118cc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061199a85611976888887611fc5565b7c020000000000000000000000000000000000000000000000000000000017611fed565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a205760006001850190506000600460008381526020019081526020016000205403611a1e576000548114611a1d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a888686866001612018565b505050505050565b611a9861201e565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611060565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906135b1565b60405180910390fd5b565b611b28828260405180602001604052806000815250612026565b5050565b611b4783838360405180602001604052806000815250611232565b505050565b60008082905080611b5b611765565b11611be157600054811015611be05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bde575b60008103611bd4576004600083600190039350838152602001908152602001600020549050611baa565b8092505050611c13565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ceb611f4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d98611f4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ddd91906126ed565b60405180910390a35050565b611df48484846109f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5657611e1f848484846120c3565b611e55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e6b90612e97565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9790612e97565b8015611ee45780601f10611eb957610100808354040283529160200191611ee4565b820191906000526020600020905b815481529060010190602001808311611ec757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f2957600184039350600a81066030018453600a8104905080611f07575b50828103602084039350808452505050919050565b611f49816000612213565b50565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fdc868684612465565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612030838361246e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120be57600080549050600083820390505b61207060008683806001019450866120c3565b6120a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061205d5781600054146120bb57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e9611f4c565b8786866040518563ffffffff1660e01b815260040161210b9493929190613626565b6020604051808303816000875af192505050801561214757506040513d601f19601f820116820180604052508101906121449190613687565b60015b6121c0573d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b5060008151036121b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600061221e83611b4c565b9050600081905060008061223186611f54565b91509150841561229a5761224d8184612248611f4c565b611f7b565b612299576122628361225d611f4c565b611457565b612298576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122a8836000886001611fbf565b80156122b357600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061235b8361231885600088611fc5565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611fed565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123e157600060018701905060006004600083815260200190815260200160002054036123df5760005481146123de578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461244b836000886001612018565b600160008154809291906001019190505550505050505050565b60009392505050565b600080549050600082036124ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bb6000848385611fbf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612532836125236000866000611fc5565b61252c85612629565b17611fed565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612598565b506000820361260e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126246000848385612018565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126828161264d565b811461268d57600080fd5b50565b60008135905061269f81612679565b92915050565b6000602082840312156126bb576126ba612643565b5b60006126c984828501612690565b91505092915050565b60008115159050919050565b6126e7816126d2565b82525050565b600060208201905061270260008301846126de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612742578082015181840152602081019050612727565b60008484015250505050565b6000601f19601f8301169050919050565b600061276a82612708565b6127748185612713565b9350612784818560208601612724565b61278d8161274e565b840191505092915050565b600060208201905081810360008301526127b2818461275f565b905092915050565b6000819050919050565b6127cd816127ba565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b60006020828403121561280657612805612643565b5b6000612814848285016127db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128488261281d565b9050919050565b6128588161283d565b82525050565b6000602082019050612873600083018461284f565b92915050565b6128828161283d565b811461288d57600080fd5b50565b60008135905061289f81612879565b92915050565b600080604083850312156128bc576128bb612643565b5b60006128ca85828601612890565b92505060206128db858286016127db565b9150509250929050565b6128ee816127ba565b82525050565b600060208201905061290960008301846128e5565b92915050565b60006020828403121561292557612924612643565b5b600061293384828501612890565b91505092915050565b60008060006060848603121561295557612954612643565b5b600061296386828701612890565b935050602061297486828701612890565b9250506040612985868287016127db565b9150509250925092565b6000819050919050565b60006129b46129af6129aa8461281d565b61298f565b61281d565b9050919050565b60006129c682612999565b9050919050565b60006129d8826129bb565b9050919050565b6129e8816129cd565b82525050565b6000602082019050612a0360008301846129df565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a4b8261274e565b810181811067ffffffffffffffff82111715612a6a57612a69612a13565b5b80604052505050565b6000612a7d612639565b9050612a898282612a42565b919050565b600067ffffffffffffffff821115612aa957612aa8612a13565b5b612ab28261274e565b9050602081019050919050565b82818337600083830152505050565b6000612ae1612adc84612a8e565b612a73565b905082815260208101848484011115612afd57612afc612a0e565b5b612b08848285612abf565b509392505050565b600082601f830112612b2557612b24612a09565b5b8135612b35848260208601612ace565b91505092915050565b600060208284031215612b5457612b53612643565b5b600082013567ffffffffffffffff811115612b7257612b71612648565b5b612b7e84828501612b10565b91505092915050565b612b90816126d2565b8114612b9b57600080fd5b50565b600081359050612bad81612b87565b92915050565b60008060408385031215612bca57612bc9612643565b5b6000612bd885828601612890565b9250506020612be985828601612b9e565b9150509250929050565b600067ffffffffffffffff821115612c0e57612c0d612a13565b5b612c178261274e565b9050602081019050919050565b6000612c37612c3284612bf3565b612a73565b905082815260208101848484011115612c5357612c52612a0e565b5b612c5e848285612abf565b509392505050565b600082601f830112612c7b57612c7a612a09565b5b8135612c8b848260208601612c24565b91505092915050565b60008060008060808587031215612cae57612cad612643565b5b6000612cbc87828801612890565b9450506020612ccd87828801612890565b9350506040612cde878288016127db565b925050606085013567ffffffffffffffff811115612cff57612cfe612648565b5b612d0b87828801612c66565b91505092959194509250565b60008060408385031215612d2e57612d2d612643565b5b6000612d3c85828601612890565b9250506020612d4d85828601612890565b9150509250929050565b600067ffffffffffffffff821115612d7257612d71612a13565b5b602082029050602081019050919050565b600080fd5b6000612d9b612d9684612d57565b612a73565b90508083825260208201905060208402830185811115612dbe57612dbd612d83565b5b835b81811015612de75780612dd388826127db565b845260208401935050602081019050612dc0565b5050509392505050565b600082601f830112612e0657612e05612a09565b5b8135612e16848260208601612d88565b91505092915050565b600060208284031215612e3557612e34612643565b5b600082013567ffffffffffffffff811115612e5357612e52612648565b5b612e5f84828501612df1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaf57607f821691505b602082108103612ec257612ec1612e68565b5b50919050565b6000604082019050612edd600083018561284f565b612eea602083018461284f565b9392505050565b600081519050612f0081612b87565b92915050565b600060208284031215612f1c57612f1b612643565b5b6000612f2a84828501612ef1565b91505092915050565b7f4d696e74206973206e6f7420546f67676c65642e000000000000000000000000600082015250565b6000612f69601483612713565b9150612f7482612f33565b602082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4d6178204d696e74732052656163686564210000000000000000000000000000600082015250565b6000612fd5601283612713565b9150612fe082612f9f565b602082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613045826127ba565b9150613050836127ba565b92508282019050808211156130685761306761300b565b5b92915050565b7f416c6c20536f6c64204f75742100000000000000000000000000000000000000600082015250565b60006130a4600d83612713565b91506130af8261306e565b602082019050919050565b600060208201905081810360008301526130d381613097565b9050919050565b60006130e5826127ba565b91506130f0836127ba565b92508282026130fe816127ba565b915082820484148315176131155761311461300b565b5b5092915050565b7f4e6f7420456e6f75676820455448210000000000000000000000000000000000600082015250565b6000613152600f83612713565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131ad565b6131f486836131ad565b95508019841693508086168417925050509392505050565b600061322761322261321d846127ba565b61298f565b6127ba565b9050919050565b6000819050919050565b6132418361320c565b61325561324d8261322e565b8484546131ba565b825550505050565b600090565b61326a61325d565b613275818484613238565b505050565b5b818110156132995761328e600082613262565b60018101905061327b565b5050565b601f8211156132de576132af81613188565b6132b88461319d565b810160208510156132c7578190505b6132db6132d38561319d565b83018261327a565b50505b505050565b600082821c905092915050565b6000613301600019846008026132e3565b1980831691505092915050565b600061331a83836132f0565b9150826002028217905092915050565b61333382612708565b67ffffffffffffffff81111561334c5761334b612a13565b5b6133568254612e97565b61336182828561329d565b600060209050601f8311600181146133945760008415613382578287015190505b61338c858261330e565b8655506133f4565b601f1984166133a286613188565b60005b828110156133ca578489015182556001820191506020850194506020810190506133a5565b868310156133e757848901516133e3601f8916826132f0565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061341282612708565b61341c81856133fc565b935061342c818560208601612724565b80840191505092915050565b60006134448285613407565b91506134508284613407565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b8602683612713565b91506134c38261345c565b604082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613528826127ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361355a5761355961300b565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359b602083612713565b91506135a682613565565b602082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135f8826135d1565b61360281856135dc565b9350613612818560208601612724565b61361b8161274e565b840191505092915050565b600060808201905061363b600083018761284f565b613648602083018661284f565b61365560408301856128e5565b818103606083015261366781846135ed565b905095945050505050565b60008151905061368181612679565b92915050565b60006020828403121561369d5761369c612643565b5b60006136ab84828501613672565b9150509291505056fea26469706673582212202fc1e7bdbf43ebdc2ad47ffba28f349b7c4958257ee858bb67674cadc90cb82764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636fe69dca11610102578063a22cb46511610095578063d3dd5fe011610064578063d3dd5fe01461066b578063e985e9c514610682578063f2fde38b146106bf578063f8cbcf6d146106e8576101d8565b8063a22cb465146105be578063b6b6f0c3146105e7578063b88d4fde14610612578063c87b56dd1461062e576101d8565b806379c9cb7b116100d157806379c9cb7b146105145780638da5cb5b1461053d57806395d89b4114610568578063a035b1fe14610593576101d8565b80636fe69dca1461046a57806370a0823114610495578063715018a6146104d2578063785253f1146104e9576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e146103bd57806355f804b3146103d95780636352211e146104025780636c0360eb1461043f576101d8565b806324600fc3146103225780632be905ba146103395780632db115441461037657806341f4343414610392576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806322ae7f7b146102c957806323b872dd14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126a5565b610711565b60405161021191906126ed565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c9190612798565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906127f0565b610835565b604051610279919061285e565b60405180910390f35b61029c600480360381019061029791906128a5565b6108b4565b005b3480156102aa57600080fd5b506102b36109be565b6040516102c091906128f4565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061290f565b6109d5565b6040516102fd91906126ed565b60405180910390f35b610320600480360381019061031b919061293c565b6109f5565b005b34801561032e57600080fd5b50610337610b45565b005b34801561034557600080fd5b50610360600480360381019061035b919061290f565b610b96565b60405161036d91906128f4565b60405180910390f35b610390600480360381019061038b91906127f0565b610bae565b005b34801561039e57600080fd5b506103a7610d4c565b6040516103b491906129ee565b60405180910390f35b6103d760048036038101906103d2919061293c565b610d5e565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612b3e565b610eae565b005b34801561040e57600080fd5b50610429600480360381019061042491906127f0565b610ec9565b604051610436919061285e565b60405180910390f35b34801561044b57600080fd5b50610454610edb565b6040516104619190612798565b60405180910390f35b34801561047657600080fd5b5061047f610f69565b60405161048c91906128f4565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b7919061290f565b610f6f565b6040516104c991906128f4565b60405180910390f35b3480156104de57600080fd5b506104e7611027565b005b3480156104f557600080fd5b506104fe61103b565b60405161050b91906126ed565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906127f0565b61104e565b005b34801561054957600080fd5b50610552611060565b60405161055f919061285e565b60405180910390f35b34801561057457600080fd5b5061057d61108a565b60405161058a9190612798565b60405180910390f35b34801561059f57600080fd5b506105a861111c565b6040516105b591906128f4565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612bb3565b611122565b005b3480156105f357600080fd5b506105fc61122c565b60405161060991906128f4565b60405180910390f35b61062c60048036038101906106279190612c94565b611232565b005b34801561063a57600080fd5b50610655600480360381019061065091906127f0565b611385565b6040516106629190612798565b60405180910390f35b34801561067757600080fd5b50610680611423565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612d17565b611457565b6040516106b691906126ed565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061290f565b6114eb565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612e1f565b61156e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612e97565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612e97565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000610840826115c2565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109af576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092c929190612ec8565b602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d9190612f06565b6109ae57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a5919061285e565b60405180910390fd5b5b6109b98383611621565b505050565b60006109c8611765565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6757610a6284848461176e565b610b3f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab0929190612ec8565b602060405180830381865afa158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190612f06565b610b3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b29919061285e565b60405180910390fd5b5b610b3e84848461176e565b5b50505050565b610b4d611a90565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b93573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612f7f565b60405180910390fd5b600e54811115610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612feb565b60405180910390fd5b600d5481610c4e6109be565b610c58919061303a565b1115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906130ba565b60405180910390fd5b600c5481610ca791906130da565b341015610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090613168565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d38919061303a565b92505081905550610d493382611b0e565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd057610dcb848484611b2c565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e19929190612ec8565b602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a9190612f06565b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e92919061285e565b60405180910390fd5b5b610ea7848484611b2c565b5b50505050565b610eb6611a90565b80600b9081610ec5919061332a565b5050565b6000610ed482611b4c565b9050919050565b600b8054610ee890612e97565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1490612e97565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102f611a90565b6110396000611c18565b565b600a60009054906101000a900460ff1681565b611056611a90565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109990612e97565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590612e97565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b5050505050905090565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561121d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119a929190612ec8565b602060405180830381865afa1580156111b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111db9190612f06565b61121c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611213919061285e565b60405180910390fd5b5b6112278383611cde565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611371573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a5576112a085858585611de9565b61137e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ee929190612ec8565b602060405180830381865afa15801561130b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132f9190612f06565b61137057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611367919061285e565b60405180910390fd5b5b61137d85858585611de9565b5b5050505050565b6060611390826115c2565b6113c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113d0611e5c565b905060008151036113f0576040518060200160405280600081525061141b565b806113fa84611eee565b60405160200161140b929190613438565b6040516020818303038152906040525b915050919050565b61142b611a90565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114f3611a90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906134ce565b60405180910390fd5b61156b81611c18565b50565b611576611a90565b60005b81518110156115be576000828281518110611597576115966134ee565b5b602002602001015190506115aa81611f3e565b5080806115b69061351d565b915050611579565b5050565b6000816115cd611765565b111580156115dc575060005482105b801561161a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061162c82610ec9565b90508073ffffffffffffffffffffffffffffffffffffffff1661164d611f4c565b73ffffffffffffffffffffffffffffffffffffffff16146116b05761167981611674611f4c565b611457565b6116af576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061177982611b4c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117ec84611f54565b9150915061180281876117fd611f4c565b611f7b565b61184e5761181786611812611f4c565b611457565b61184d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118b4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c18686866001611fbf565b80156118cc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061199a85611976888887611fc5565b7c020000000000000000000000000000000000000000000000000000000017611fed565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a205760006001850190506000600460008381526020019081526020016000205403611a1e576000548114611a1d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a888686866001612018565b505050505050565b611a9861201e565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611060565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906135b1565b60405180910390fd5b565b611b28828260405180602001604052806000815250612026565b5050565b611b4783838360405180602001604052806000815250611232565b505050565b60008082905080611b5b611765565b11611be157600054811015611be05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bde575b60008103611bd4576004600083600190039350838152602001908152602001600020549050611baa565b8092505050611c13565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ceb611f4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d98611f4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ddd91906126ed565b60405180910390a35050565b611df48484846109f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5657611e1f848484846120c3565b611e55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e6b90612e97565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9790612e97565b8015611ee45780601f10611eb957610100808354040283529160200191611ee4565b820191906000526020600020905b815481529060010190602001808311611ec757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f2957600184039350600a81066030018453600a8104905080611f07575b50828103602084039350808452505050919050565b611f49816000612213565b50565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fdc868684612465565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612030838361246e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120be57600080549050600083820390505b61207060008683806001019450866120c3565b6120a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061205d5781600054146120bb57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e9611f4c565b8786866040518563ffffffff1660e01b815260040161210b9493929190613626565b6020604051808303816000875af192505050801561214757506040513d601f19601f820116820180604052508101906121449190613687565b60015b6121c0573d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b5060008151036121b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600061221e83611b4c565b9050600081905060008061223186611f54565b91509150841561229a5761224d8184612248611f4c565b611f7b565b612299576122628361225d611f4c565b611457565b612298576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122a8836000886001611fbf565b80156122b357600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061235b8361231885600088611fc5565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611fed565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123e157600060018701905060006004600083815260200190815260200160002054036123df5760005481146123de578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461244b836000886001612018565b600160008154809291906001019190505550505050505050565b60009392505050565b600080549050600082036124ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bb6000848385611fbf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612532836125236000866000611fc5565b61252c85612629565b17611fed565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612598565b506000820361260e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126246000848385612018565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126828161264d565b811461268d57600080fd5b50565b60008135905061269f81612679565b92915050565b6000602082840312156126bb576126ba612643565b5b60006126c984828501612690565b91505092915050565b60008115159050919050565b6126e7816126d2565b82525050565b600060208201905061270260008301846126de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612742578082015181840152602081019050612727565b60008484015250505050565b6000601f19601f8301169050919050565b600061276a82612708565b6127748185612713565b9350612784818560208601612724565b61278d8161274e565b840191505092915050565b600060208201905081810360008301526127b2818461275f565b905092915050565b6000819050919050565b6127cd816127ba565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b60006020828403121561280657612805612643565b5b6000612814848285016127db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128488261281d565b9050919050565b6128588161283d565b82525050565b6000602082019050612873600083018461284f565b92915050565b6128828161283d565b811461288d57600080fd5b50565b60008135905061289f81612879565b92915050565b600080604083850312156128bc576128bb612643565b5b60006128ca85828601612890565b92505060206128db858286016127db565b9150509250929050565b6128ee816127ba565b82525050565b600060208201905061290960008301846128e5565b92915050565b60006020828403121561292557612924612643565b5b600061293384828501612890565b91505092915050565b60008060006060848603121561295557612954612643565b5b600061296386828701612890565b935050602061297486828701612890565b9250506040612985868287016127db565b9150509250925092565b6000819050919050565b60006129b46129af6129aa8461281d565b61298f565b61281d565b9050919050565b60006129c682612999565b9050919050565b60006129d8826129bb565b9050919050565b6129e8816129cd565b82525050565b6000602082019050612a0360008301846129df565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a4b8261274e565b810181811067ffffffffffffffff82111715612a6a57612a69612a13565b5b80604052505050565b6000612a7d612639565b9050612a898282612a42565b919050565b600067ffffffffffffffff821115612aa957612aa8612a13565b5b612ab28261274e565b9050602081019050919050565b82818337600083830152505050565b6000612ae1612adc84612a8e565b612a73565b905082815260208101848484011115612afd57612afc612a0e565b5b612b08848285612abf565b509392505050565b600082601f830112612b2557612b24612a09565b5b8135612b35848260208601612ace565b91505092915050565b600060208284031215612b5457612b53612643565b5b600082013567ffffffffffffffff811115612b7257612b71612648565b5b612b7e84828501612b10565b91505092915050565b612b90816126d2565b8114612b9b57600080fd5b50565b600081359050612bad81612b87565b92915050565b60008060408385031215612bca57612bc9612643565b5b6000612bd885828601612890565b9250506020612be985828601612b9e565b9150509250929050565b600067ffffffffffffffff821115612c0e57612c0d612a13565b5b612c178261274e565b9050602081019050919050565b6000612c37612c3284612bf3565b612a73565b905082815260208101848484011115612c5357612c52612a0e565b5b612c5e848285612abf565b509392505050565b600082601f830112612c7b57612c7a612a09565b5b8135612c8b848260208601612c24565b91505092915050565b60008060008060808587031215612cae57612cad612643565b5b6000612cbc87828801612890565b9450506020612ccd87828801612890565b9350506040612cde878288016127db565b925050606085013567ffffffffffffffff811115612cff57612cfe612648565b5b612d0b87828801612c66565b91505092959194509250565b60008060408385031215612d2e57612d2d612643565b5b6000612d3c85828601612890565b9250506020612d4d85828601612890565b9150509250929050565b600067ffffffffffffffff821115612d7257612d71612a13565b5b602082029050602081019050919050565b600080fd5b6000612d9b612d9684612d57565b612a73565b90508083825260208201905060208402830185811115612dbe57612dbd612d83565b5b835b81811015612de75780612dd388826127db565b845260208401935050602081019050612dc0565b5050509392505050565b600082601f830112612e0657612e05612a09565b5b8135612e16848260208601612d88565b91505092915050565b600060208284031215612e3557612e34612643565b5b600082013567ffffffffffffffff811115612e5357612e52612648565b5b612e5f84828501612df1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaf57607f821691505b602082108103612ec257612ec1612e68565b5b50919050565b6000604082019050612edd600083018561284f565b612eea602083018461284f565b9392505050565b600081519050612f0081612b87565b92915050565b600060208284031215612f1c57612f1b612643565b5b6000612f2a84828501612ef1565b91505092915050565b7f4d696e74206973206e6f7420546f67676c65642e000000000000000000000000600082015250565b6000612f69601483612713565b9150612f7482612f33565b602082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4d6178204d696e74732052656163686564210000000000000000000000000000600082015250565b6000612fd5601283612713565b9150612fe082612f9f565b602082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613045826127ba565b9150613050836127ba565b92508282019050808211156130685761306761300b565b5b92915050565b7f416c6c20536f6c64204f75742100000000000000000000000000000000000000600082015250565b60006130a4600d83612713565b91506130af8261306e565b602082019050919050565b600060208201905081810360008301526130d381613097565b9050919050565b60006130e5826127ba565b91506130f0836127ba565b92508282026130fe816127ba565b915082820484148315176131155761311461300b565b5b5092915050565b7f4e6f7420456e6f75676820455448210000000000000000000000000000000000600082015250565b6000613152600f83612713565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131ad565b6131f486836131ad565b95508019841693508086168417925050509392505050565b600061322761322261321d846127ba565b61298f565b6127ba565b9050919050565b6000819050919050565b6132418361320c565b61325561324d8261322e565b8484546131ba565b825550505050565b600090565b61326a61325d565b613275818484613238565b505050565b5b818110156132995761328e600082613262565b60018101905061327b565b5050565b601f8211156132de576132af81613188565b6132b88461319d565b810160208510156132c7578190505b6132db6132d38561319d565b83018261327a565b50505b505050565b600082821c905092915050565b6000613301600019846008026132e3565b1980831691505092915050565b600061331a83836132f0565b9150826002028217905092915050565b61333382612708565b67ffffffffffffffff81111561334c5761334b612a13565b5b6133568254612e97565b61336182828561329d565b600060209050601f8311600181146133945760008415613382578287015190505b61338c858261330e565b8655506133f4565b601f1984166133a286613188565b60005b828110156133ca578489015182556001820191506020850194506020810190506133a5565b868310156133e757848901516133e3601f8916826132f0565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061341282612708565b61341c81856133fc565b935061342c818560208601612724565b80840191505092915050565b60006134448285613407565b91506134508284613407565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b8602683612713565b91506134c38261345c565b604082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613528826127ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361355a5761355961300b565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359b602083612713565b91506135a682613565565b602082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135f8826135d1565b61360281856135dc565b9350613612818560208601612724565b61361b8161274e565b840191505092915050565b600060808201905061363b600083018761284f565b613648602083018661284f565b61365560408301856128e5565b818103606083015261366781846135ed565b905095945050505050565b60008151905061368181612679565b92915050565b60006020828403121561369d5761369c612643565b5b60006136ab84828501613672565b9150509291505056fea26469706673582212202fc1e7bdbf43ebdc2ad47ffba28f349b7c4958257ee858bb67674cadc90cb82764736f6c63430008130033

Deployed Bytecode Sourcemap

63845:2677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24191:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25093:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31584:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65735:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20844:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63920:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65908:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64916:113;;;;;;;;;;;;;:::i;:::-;;64136:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64403:385;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2973:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66087:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65035:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26486:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64002:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64063:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22028:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62944:103;;;;;;;;;;;;;:::i;:::-;;63973:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65244:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62296:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25269:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64032:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65551:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64102:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66274:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25479:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65154:82;;;;;;;;;;;;;:::i;:::-;;32533:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63202:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65344:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24191:639;24276:4;24615:10;24600:25;;:11;:25;;;;:102;;;;24692:10;24677:25;;:11;:25;;;;24600:102;:179;;;;24769:10;24754:25;;:11;:25;;;;24600:179;24580:199;;24191:639;;;:::o;25093:100::-;25147:13;25180:5;25173:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25093:100;:::o;31584:218::-;31660:7;31685:16;31693:7;31685;:16::i;:::-;31680:64;;31710:34;;;;;;;;;;;;;;31680:64;31764:15;:24;31780:7;31764:24;;;;;;;;;;;:30;;;;;;;;;;;;31757:37;;31584:218;;;:::o;65735:165::-;65839:8;5015:1;3073:42;4967:45;;;:49;4963:225;;;3073:42;5038;;;5089:4;5096:8;5038:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5033:144;;5152:8;5133:28;;;;;;;;;;;:::i;:::-;;;;;;;;5033:144;4963:225;65860:32:::1;65874:8;65884:7;65860:13;:32::i;:::-;65735:165:::0;;;:::o;20844:323::-;20905:7;21133:15;:13;:15::i;:::-;21118:12;;21102:13;;:28;:46;21095:53;;20844:323;:::o;63920:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;65908:171::-;66017:4;4269:1;3073:42;4221:45;;;:49;4217:539;;;4510:10;4502:18;;:4;:18;;;4498:85;;66034:37:::1;66053:4;66059:2;66063:7;66034:18;:37::i;:::-;4561:7:::0;;4498:85;3073:42;4602;;;4653:4;4660:10;4602:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4597:148;;4718:10;4699:30;;;;;;;;;;;:::i;:::-;;;;;;;;4597:148;4217:539;66034:37:::1;66053:4;66059:2;66063:7;66034:18;:37::i;:::-;65908:171:::0;;;;;:::o;64916:113::-;62182:13;:11;:13::i;:::-;64971:10:::1;64963:28;;:51;64992:21;64963:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64916:113::o:0;64136:48::-;;;;;;;;;;;;;;;;;:::o;64403:385::-;64477:10;;;;;;;;;;;64469:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64539:8;;64532:3;:15;;64524:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64612:10;;64605:3;64589:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:33;;64581:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;64677:5;;64671:3;:11;;;;:::i;:::-;64658:9;:24;;64650:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;64740:3;64712:12;:24;64725:10;64712:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64754:26;64764:10;64776:3;64754:9;:26::i;:::-;64403:385;:::o;2973:143::-;3073:42;2973:143;:::o;66087:179::-;66200:4;4269:1;3073:42;4221:45;;;:49;4217:539;;;4510:10;4502:18;;:4;:18;;;4498:85;;66217:41:::1;66240:4;66246:2;66250:7;66217:22;:41::i;:::-;4561:7:::0;;4498:85;3073:42;4602;;;4653:4;4660:10;4602:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4597:148;;4718:10;4699:30;;;;;;;;;;;:::i;:::-;;;;;;;;4597:148;4217:539;66217:41:::1;66240:4;66246:2;66250:7;66217:22;:41::i;:::-;66087:179:::0;;;;;:::o;65035:110::-;62182:13;:11;:13::i;:::-;65119:8:::1;65109:7;:18;;;;;;:::i;:::-;;65035:110:::0;:::o;26486:152::-;26558:7;26601:27;26620:7;26601:18;:27::i;:::-;26578:52;;26486:152;;;:::o;64002:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64063:32::-;;;;:::o;22028:233::-;22100:7;22141:1;22124:19;;:5;:19;;;22120:60;;22152:28;;;;;;;;;;;;;;22120:60;16187:13;22198:18;:25;22217:5;22198:25;;;;;;;;;;;;;;;;:55;22191:62;;22028:233;;;:::o;62944:103::-;62182:13;:11;:13::i;:::-;63009:30:::1;63036:1;63009:18;:30::i;:::-;62944:103::o:0;63973:22::-;;;;;;;;;;;;;:::o;65244:92::-;62182:13;:11;:13::i;:::-;65320:6:::1;65309:8;:17;;;;65244:92:::0;:::o;62296:87::-;62342:7;62369:6;;;;;;;;;;;62362:13;;62296:87;:::o;25269:104::-;25325:13;25358:7;25351:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25269:104;:::o;64032:24::-;;;;:::o;65551:176::-;65655:8;5015:1;3073:42;4967:45;;;:49;4963:225;;;3073:42;5038;;;5089:4;5096:8;5038:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5033:144;;5152:8;5133:28;;;;;;;;;;;:::i;:::-;;;;;;;;5033:144;4963:225;65676:43:::1;65700:8;65710;65676:23;:43::i;:::-;65551:176:::0;;;:::o;64102:27::-;;;;:::o;66274:245::-;66442:4;4269:1;3073:42;4221:45;;;:49;4217:539;;;4510:10;4502:18;;:4;:18;;;4498:85;;66464:47:::1;66487:4;66493:2;66497:7;66506:4;66464:22;:47::i;:::-;4561:7:::0;;4498:85;3073:42;4602;;;4653:4;4660:10;4602:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4597:148;;4718:10;4699:30;;;;;;;;;;;:::i;:::-;;;;;;;;4597:148;4217:539;66464:47:::1;66487:4;66493:2;66497:7;66506:4;66464:22;:47::i;:::-;66274:245:::0;;;;;;:::o;25479:318::-;25552:13;25583:16;25591:7;25583;:16::i;:::-;25578:59;;25608:29;;;;;;;;;;;;;;25578:59;25650:21;25674:10;:8;:10::i;:::-;25650:34;;25727:1;25708:7;25702:21;:26;:87;;;;;;;;;;;;;;;;;25755:7;25764:18;25774:7;25764:9;:18::i;:::-;25738:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25702:87;25695:94;;;25479:318;;;:::o;65154:82::-;62182:13;:11;:13::i;:::-;65218:10:::1;;;;;;;;;;;65217:11;65204:10;;:24;;;;;;;;;;;;;;;;;;65154:82::o:0;32533:164::-;32630:4;32654:18;:25;32673:5;32654:25;;;;;;;;;;;;;;;:35;32680:8;32654:35;;;;;;;;;;;;;;;;;;;;;;;;;32647:42;;32533:164;;;;:::o;63202:201::-;62182:13;:11;:13::i;:::-;63311:1:::1;63291:22;;:8;:22;;::::0;63283:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63367:28;63386:8;63367:18;:28::i;:::-;63202:201:::0;:::o;65344:195::-;62182:13;:11;:13::i;:::-;65418:9:::1;65413:119;65437:8;:15;65433:1;:19;65413:119;;;65470:15;65488:8;65497:1;65488:11;;;;;;;;:::i;:::-;;;;;;;;65470:29;;65510:14;65516:7;65510:5;:14::i;:::-;65459:73;65454:3;;;;;:::i;:::-;;;;65413:119;;;;65344:195:::0;:::o;32955:282::-;33020:4;33076:7;33057:15;:13;:15::i;:::-;:26;;:66;;;;;33110:13;;33100:7;:23;33057:66;:153;;;;;33209:1;16963:8;33161:17;:26;33179:7;33161:26;;;;;;;;;;;;:44;:49;33057:153;33037:173;;32955:282;;;:::o;31017:408::-;31106:13;31122:16;31130:7;31122;:16::i;:::-;31106:32;;31178:5;31155:28;;:19;:17;:19::i;:::-;:28;;;31151:175;;31203:44;31220:5;31227:19;:17;:19::i;:::-;31203:16;:44::i;:::-;31198:128;;31275:35;;;;;;;;;;;;;;31198:128;31151:175;31371:2;31338:15;:24;31354:7;31338:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31409:7;31405:2;31389:28;;31398:5;31389:28;;;;;;;;;;;;31095:330;31017:408;;:::o;64288:101::-;64353:7;64380:1;64373:8;;64288:101;:::o;35223:2825::-;35365:27;35395;35414:7;35395:18;:27::i;:::-;35365:57;;35480:4;35439:45;;35455:19;35439:45;;;35435:86;;35493:28;;;;;;;;;;;;;;35435:86;35535:27;35564:23;35591:35;35618:7;35591:26;:35::i;:::-;35534:92;;;;35726:68;35751:15;35768:4;35774:19;:17;:19::i;:::-;35726:24;:68::i;:::-;35721:180;;35814:43;35831:4;35837:19;:17;:19::i;:::-;35814:16;:43::i;:::-;35809:92;;35866:35;;;;;;;;;;;;;;35809:92;35721:180;35932:1;35918:16;;:2;:16;;;35914:52;;35943:23;;;;;;;;;;;;;;35914:52;35979:43;36001:4;36007:2;36011:7;36020:1;35979:21;:43::i;:::-;36115:15;36112:160;;;36255:1;36234:19;36227:30;36112:160;36652:18;:24;36671:4;36652:24;;;;;;;;;;;;;;;;36650:26;;;;;;;;;;;;36721:18;:22;36740:2;36721:22;;;;;;;;;;;;;;;;36719:24;;;;;;;;;;;37043:146;37080:2;37129:45;37144:4;37150:2;37154:19;37129:14;:45::i;:::-;17243:8;37101:73;37043:18;:146::i;:::-;37014:17;:26;37032:7;37014:26;;;;;;;;;;;:175;;;;37360:1;17243:8;37309:19;:47;:52;37305:627;;37382:19;37414:1;37404:7;:11;37382:33;;37571:1;37537:17;:30;37555:11;37537:30;;;;;;;;;;;;:35;37533:384;;37675:13;;37660:11;:28;37656:242;;37855:19;37822:17;:30;37840:11;37822:30;;;;;;;;;;;:52;;;;37656:242;37533:384;37363:569;37305:627;37979:7;37975:2;37960:27;;37969:4;37960:27;;;;;;;;;;;;37998:42;38019:4;38025:2;38029:7;38038:1;37998:20;:42::i;:::-;35354:2694;;;35223:2825;;;:::o;62461:132::-;62536:12;:10;:12::i;:::-;62525:23;;:7;:5;:7::i;:::-;:23;;;62517:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62461:132::o;49095:112::-;49172:27;49182:2;49186:8;49172:27;;;;;;;;;;;;:9;:27::i;:::-;49095:112;;:::o;38144:193::-;38290:39;38307:4;38313:2;38317:7;38290:39;;;;;;;;;;;;:16;:39::i;:::-;38144:193;;;:::o;27641:1275::-;27708:7;27728:12;27743:7;27728:22;;27811:4;27792:15;:13;:15::i;:::-;:23;27788:1061;;27845:13;;27838:4;:20;27834:1015;;;27883:14;27900:17;:23;27918:4;27900:23;;;;;;;;;;;;27883:40;;28017:1;16963:8;27989:6;:24;:29;27985:845;;28654:113;28671:1;28661:6;:11;28654:113;;28714:17;:25;28732:6;;;;;;;28714:25;;;;;;;;;;;;28705:34;;28654:113;;;28800:6;28793:13;;;;;;27985:845;27860:989;27834:1015;27788:1061;28877:31;;;;;;;;;;;;;;27641:1275;;;;:::o;63563:191::-;63637:16;63656:6;;;;;;;;;;;63637:25;;63682:8;63673:6;;:17;;;;;;;;;;;;;;;;;;63737:8;63706:40;;63727:8;63706:40;;;;;;;;;;;;63626:128;63563:191;:::o;32142:234::-;32289:8;32237:18;:39;32256:19;:17;:19::i;:::-;32237:39;;;;;;;;;;;;;;;:49;32277:8;32237:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32349:8;32313:55;;32328:19;:17;:19::i;:::-;32313:55;;;32359:8;32313:55;;;;;;:::i;:::-;;;;;;;;32142:234;;:::o;38935:407::-;39110:31;39123:4;39129:2;39133:7;39110:12;:31::i;:::-;39174:1;39156:2;:14;;;:19;39152:183;;39195:56;39226:4;39232:2;39236:7;39245:5;39195:30;:56::i;:::-;39190:145;;39279:40;;;;;;;;;;;;;;39190:145;39152:183;38935:407;;;;:::o;64800:108::-;64860:13;64893:7;64886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64800:108;:::o;55470:1745::-;55535:17;55969:4;55962;55956:11;55952:22;56061:1;56055:4;56048:15;56136:4;56133:1;56129:12;56122:19;;56218:1;56213:3;56206:14;56322:3;56561:5;56543:428;56569:1;56543:428;;;56609:1;56604:3;56600:11;56593:18;;56780:2;56774:4;56770:13;56766:2;56762:22;56757:3;56749:36;56874:2;56868:4;56864:13;56856:21;;56941:4;56543:428;56931:25;56543:428;56547:21;57010:3;57005;57001:13;57125:4;57120:3;57116:14;57109:21;;57190:6;57185:3;57178:19;55574:1634;;;55470:1745;;;:::o;49474:89::-;49534:21;49540:7;49549:5;49534;:21::i;:::-;49474:89;:::o;55263:105::-;55323:7;55350:10;55343:17;;55263:105;:::o;34118:485::-;34220:27;34249:23;34290:38;34331:15;:24;34347:7;34331:24;;;;;;;;;;;34290:65;;34508:18;34485:41;;34565:19;34559:26;34540:45;;34470:126;34118:485;;;:::o;33346:659::-;33495:11;33660:16;33653:5;33649:28;33640:37;;33820:16;33809:9;33805:32;33792:45;;33970:15;33959:9;33956:30;33948:5;33937:9;33934:20;33931:56;33921:66;;33346:659;;;;;:::o;40004:159::-;;;;;:::o;54572:311::-;54707:7;54727:16;17367:3;54753:19;:41;;54727:68;;17367:3;54821:31;54832:4;54838:2;54842:9;54821:10;:31::i;:::-;54813:40;;:62;;54806:69;;;54572:311;;;;;:::o;29464:450::-;29544:14;29712:16;29705:5;29701:28;29692:37;;29889:5;29875:11;29850:23;29846:41;29843:52;29836:5;29833:63;29823:73;;29464:450;;;;:::o;40828:158::-;;;;;:::o;60847:98::-;60900:7;60927:10;60920:17;;60847:98;:::o;48322:689::-;48453:19;48459:2;48463:8;48453:5;:19::i;:::-;48532:1;48514:2;:14;;;:19;48510:483;;48554:11;48568:13;;48554:27;;48600:13;48622:8;48616:3;:14;48600:30;;48649:233;48680:62;48719:1;48723:2;48727:7;;;;;;48736:5;48680:30;:62::i;:::-;48675:167;;48778:40;;;;;;;;;;;;;;48675:167;48877:3;48869:5;:11;48649:233;;48964:3;48947:13;;:20;48943:34;;48969:8;;;48943:34;48535:458;;48510:483;48322:689;;;:::o;41426:716::-;41589:4;41635:2;41610:45;;;41656:19;:17;:19::i;:::-;41677:4;41683:7;41692:5;41610:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41606:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41910:1;41893:6;:13;:18;41889:235;;41939:40;;;;;;;;;;;;;;41889:235;42082:6;42076:13;42067:6;42063:2;42059:15;42052:38;41606:529;41779:54;;;41769:64;;;:6;:64;;;;41762:71;;;41426:716;;;;;;:::o;49792:3081::-;49872:27;49902;49921:7;49902:18;:27::i;:::-;49872:57;;49942:12;49973:19;49942:52;;50008:27;50037:23;50064:35;50091:7;50064:26;:35::i;:::-;50007:92;;;;50116:13;50112:316;;;50237:68;50262:15;50279:4;50285:19;:17;:19::i;:::-;50237:24;:68::i;:::-;50232:184;;50329:43;50346:4;50352:19;:17;:19::i;:::-;50329:16;:43::i;:::-;50324:92;;50381:35;;;;;;;;;;;;;;50324:92;50232:184;50112:316;50440:51;50462:4;50476:1;50480:7;50489:1;50440:21;:51::i;:::-;50584:15;50581:160;;;50724:1;50703:19;50696:30;50581:160;51402:1;16452:3;51372:1;:26;;51371:32;51343:18;:24;51362:4;51343:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;51670:176;51707:4;51778:53;51793:4;51807:1;51811:19;51778:14;:53::i;:::-;17243:8;16963;51731:43;51730:101;51670:18;:176::i;:::-;51641:17;:26;51659:7;51641:26;;;;;;;;;;;:205;;;;52017:1;17243:8;51966:19;:47;:52;51962:627;;52039:19;52071:1;52061:7;:11;52039:33;;52228:1;52194:17;:30;52212:11;52194:30;;;;;;;;;;;;:35;52190:384;;52332:13;;52317:11;:28;52313:242;;52512:19;52479:17;:30;52497:11;52479:30;;;;;;;;;;;:52;;;;52313:242;52190:384;52020:569;51962:627;52644:7;52640:1;52617:35;;52626:4;52617:35;;;;;;;;;;;;52663:50;52684:4;52698:1;52702:7;52711:1;52663:20;:50::i;:::-;52840:12;;:14;;;;;;;;;;;;;49861:3012;;;;49792:3081;;:::o;54273:147::-;54410:6;54273:147;;;;;:::o;42604:2966::-;42677:20;42700:13;;42677:36;;42740:1;42728:8;:13;42724:44;;42750:18;;;;;;;;;;;;;;42724:44;42781:61;42811:1;42815:2;42819:12;42833:8;42781:21;:61::i;:::-;43325:1;16325:2;43295:1;:26;;43294:32;43282:8;:45;43256:18;:22;43275:2;43256:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43604:139;43641:2;43695:33;43718:1;43722:2;43726:1;43695:14;:33::i;:::-;43662:30;43683:8;43662:20;:30::i;:::-;:66;43604:18;:139::i;:::-;43570:17;:31;43588:12;43570:31;;;;;;;;;;;:173;;;;43760:16;43791:11;43820:8;43805:12;:23;43791:37;;44341:16;44337:2;44333:25;44321:37;;44713:12;44673:8;44632:1;44570:25;44511:1;44450;44423:335;45084:1;45070:12;45066:20;45024:346;45125:3;45116:7;45113:16;45024:346;;45343:7;45333:8;45330:1;45303:25;45300:1;45297;45292:59;45178:1;45169:7;45165:15;45154:26;;45024:346;;;45028:77;45415:1;45403:8;:13;45399:45;;45425:19;;;;;;;;;;;;;;45399:45;45477:3;45461:13;:19;;;;43030:2462;;45502:60;45531:1;45535:2;45539:12;45553:8;45502:20;:60::i;:::-;42666:2904;42604:2966;;:::o;30016:324::-;30086:14;30319:1;30309:8;30306:15;30280:24;30276:46;30266:56;;30016: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:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:311::-;13166:4;13256:18;13248:6;13245:30;13242:56;;;13278:18;;:::i;:::-;13242:56;13328:4;13320:6;13316:17;13308:25;;13388:4;13382;13378:15;13370:23;;13089:311;;;:::o;13406:117::-;13515:1;13512;13505:12;13546:710;13642:5;13667:81;13683:64;13740:6;13683:64;:::i;:::-;13667:81;:::i;:::-;13658:90;;13768:5;13797:6;13790:5;13783:21;13831:4;13824:5;13820:16;13813:23;;13884:4;13876:6;13872:17;13864:6;13860:30;13913:3;13905:6;13902:15;13899:122;;;13932:79;;:::i;:::-;13899:122;14047:6;14030:220;14064:6;14059:3;14056:15;14030:220;;;14139:3;14168:37;14201:3;14189:10;14168:37;:::i;:::-;14163:3;14156:50;14235:4;14230:3;14226:14;14219:21;;14106:144;14090:4;14085:3;14081:14;14074:21;;14030:220;;;14034:21;13648:608;;13546:710;;;;;:::o;14279:370::-;14350:5;14399:3;14392:4;14384:6;14380:17;14376:27;14366:122;;14407:79;;:::i;:::-;14366:122;14524:6;14511:20;14549:94;14639:3;14631:6;14624:4;14616:6;14612:17;14549:94;:::i;:::-;14540:103;;14356:293;14279:370;;;;:::o;14655:539::-;14739:6;14788:2;14776:9;14767:7;14763:23;14759:32;14756:119;;;14794:79;;:::i;:::-;14756:119;14942:1;14931:9;14927:17;14914:31;14972:18;14964:6;14961:30;14958:117;;;14994:79;;:::i;:::-;14958:117;15099:78;15169:7;15160:6;15149:9;15145:22;15099:78;:::i;:::-;15089:88;;14885:302;14655:539;;;;:::o;15200:180::-;15248:77;15245:1;15238:88;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15386:320;15430:6;15467:1;15461:4;15457:12;15447:22;;15514:1;15508:4;15504:12;15535:18;15525:81;;15591:4;15583:6;15579:17;15569:27;;15525:81;15653:2;15645:6;15642:14;15622:18;15619:38;15616:84;;15672:18;;:::i;:::-;15616:84;15437:269;15386:320;;;:::o;15712:332::-;15833:4;15871:2;15860:9;15856:18;15848:26;;15884:71;15952:1;15941:9;15937:17;15928:6;15884:71;:::i;:::-;15965:72;16033:2;16022:9;16018:18;16009:6;15965:72;:::i;:::-;15712:332;;;;;:::o;16050:137::-;16104:5;16135:6;16129:13;16120:22;;16151:30;16175:5;16151:30;:::i;:::-;16050:137;;;;:::o;16193:345::-;16260:6;16309:2;16297:9;16288:7;16284:23;16280:32;16277:119;;;16315:79;;:::i;:::-;16277:119;16435:1;16460:61;16513:7;16504:6;16493:9;16489:22;16460:61;:::i;:::-;16450:71;;16406:125;16193:345;;;;:::o;16544:170::-;16684:22;16680:1;16672:6;16668:14;16661:46;16544:170;:::o;16720:366::-;16862:3;16883:67;16947:2;16942:3;16883:67;:::i;:::-;16876:74;;16959:93;17048:3;16959:93;:::i;:::-;17077:2;17072:3;17068:12;17061:19;;16720:366;;;:::o;17092:419::-;17258:4;17296:2;17285:9;17281:18;17273:26;;17345:9;17339:4;17335:20;17331:1;17320:9;17316:17;17309:47;17373:131;17499:4;17373:131;:::i;:::-;17365:139;;17092:419;;;:::o;17517:168::-;17657:20;17653:1;17645:6;17641:14;17634:44;17517:168;:::o;17691:366::-;17833:3;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17930:93;18019:3;17930:93;:::i;:::-;18048:2;18043:3;18039:12;18032:19;;17691:366;;;:::o;18063:419::-;18229:4;18267:2;18256:9;18252:18;18244:26;;18316:9;18310:4;18306:20;18302:1;18291:9;18287:17;18280:47;18344:131;18470:4;18344:131;:::i;:::-;18336:139;;18063:419;;;:::o;18488:180::-;18536:77;18533:1;18526:88;18633:4;18630:1;18623:15;18657:4;18654:1;18647:15;18674:191;18714:3;18733:20;18751:1;18733:20;:::i;:::-;18728:25;;18767:20;18785:1;18767:20;:::i;:::-;18762:25;;18810:1;18807;18803:9;18796:16;;18831:3;18828:1;18825:10;18822:36;;;18838:18;;:::i;:::-;18822:36;18674:191;;;;:::o;18871:163::-;19011:15;19007:1;18999:6;18995:14;18988:39;18871:163;:::o;19040:366::-;19182:3;19203:67;19267:2;19262:3;19203:67;:::i;:::-;19196:74;;19279:93;19368:3;19279:93;:::i;:::-;19397:2;19392:3;19388:12;19381:19;;19040:366;;;:::o;19412:419::-;19578:4;19616:2;19605:9;19601:18;19593:26;;19665:9;19659:4;19655:20;19651:1;19640:9;19636:17;19629:47;19693:131;19819:4;19693:131;:::i;:::-;19685:139;;19412:419;;;:::o;19837:410::-;19877:7;19900:20;19918:1;19900:20;:::i;:::-;19895:25;;19934:20;19952:1;19934:20;:::i;:::-;19929:25;;19989:1;19986;19982:9;20011:30;20029:11;20011:30;:::i;:::-;20000:41;;20190:1;20181:7;20177:15;20174:1;20171:22;20151:1;20144:9;20124:83;20101:139;;20220:18;;:::i;:::-;20101:139;19885:362;19837:410;;;;:::o;20253:165::-;20393:17;20389:1;20381:6;20377:14;20370:41;20253:165;:::o;20424:366::-;20566:3;20587:67;20651:2;20646:3;20587:67;:::i;:::-;20580:74;;20663:93;20752:3;20663:93;:::i;:::-;20781:2;20776:3;20772:12;20765:19;;20424:366;;;:::o;20796:419::-;20962:4;21000:2;20989:9;20985:18;20977:26;;21049:9;21043:4;21039:20;21035:1;21024:9;21020:17;21013:47;21077:131;21203:4;21077:131;:::i;:::-;21069:139;;20796:419;;;:::o;21221:141::-;21270:4;21293:3;21285:11;;21316:3;21313:1;21306:14;21350:4;21347:1;21337:18;21329:26;;21221:141;;;:::o;21368:93::-;21405:6;21452:2;21447;21440:5;21436:14;21432:23;21422:33;;21368:93;;;:::o;21467:107::-;21511:8;21561:5;21555:4;21551:16;21530:37;;21467:107;;;;:::o;21580:393::-;21649:6;21699:1;21687:10;21683:18;21722:97;21752:66;21741:9;21722:97;:::i;:::-;21840:39;21870:8;21859:9;21840:39;:::i;:::-;21828:51;;21912:4;21908:9;21901:5;21897:21;21888:30;;21961:4;21951:8;21947:19;21940:5;21937:30;21927:40;;21656:317;;21580:393;;;;;:::o;21979:142::-;22029:9;22062:53;22080:34;22089:24;22107:5;22089:24;:::i;:::-;22080:34;:::i;:::-;22062:53;:::i;:::-;22049:66;;21979:142;;;:::o;22127:75::-;22170:3;22191:5;22184:12;;22127:75;;;:::o;22208:269::-;22318:39;22349:7;22318:39;:::i;:::-;22379:91;22428:41;22452:16;22428:41;:::i;:::-;22420:6;22413:4;22407:11;22379:91;:::i;:::-;22373:4;22366:105;22284:193;22208:269;;;:::o;22483:73::-;22528:3;22483:73;:::o;22562:189::-;22639:32;;:::i;:::-;22680:65;22738:6;22730;22724:4;22680:65;:::i;:::-;22615:136;22562:189;;:::o;22757:186::-;22817:120;22834:3;22827:5;22824:14;22817:120;;;22888:39;22925:1;22918:5;22888:39;:::i;:::-;22861:1;22854:5;22850:13;22841:22;;22817:120;;;22757:186;;:::o;22949:543::-;23050:2;23045:3;23042:11;23039:446;;;23084:38;23116:5;23084:38;:::i;:::-;23168:29;23186:10;23168:29;:::i;:::-;23158:8;23154:44;23351:2;23339:10;23336:18;23333:49;;;23372:8;23357:23;;23333:49;23395:80;23451:22;23469:3;23451:22;:::i;:::-;23441:8;23437:37;23424:11;23395:80;:::i;:::-;23054:431;;23039:446;22949:543;;;:::o;23498:117::-;23552:8;23602:5;23596:4;23592:16;23571:37;;23498:117;;;;:::o;23621:169::-;23665:6;23698:51;23746:1;23742:6;23734:5;23731:1;23727:13;23698:51;:::i;:::-;23694:56;23779:4;23773;23769:15;23759:25;;23672:118;23621:169;;;;:::o;23795:295::-;23871:4;24017:29;24042:3;24036:4;24017:29;:::i;:::-;24009:37;;24079:3;24076:1;24072:11;24066:4;24063:21;24055:29;;23795:295;;;;:::o;24095:1395::-;24212:37;24245:3;24212:37;:::i;:::-;24314:18;24306:6;24303:30;24300:56;;;24336:18;;:::i;:::-;24300:56;24380:38;24412:4;24406:11;24380:38;:::i;:::-;24465:67;24525:6;24517;24511:4;24465:67;:::i;:::-;24559:1;24583:4;24570:17;;24615:2;24607:6;24604:14;24632:1;24627:618;;;;25289:1;25306:6;25303:77;;;25355:9;25350:3;25346:19;25340:26;25331:35;;25303:77;25406:67;25466:6;25459:5;25406:67;:::i;:::-;25400:4;25393:81;25262:222;24597:887;;24627:618;24679:4;24675:9;24667:6;24663:22;24713:37;24745:4;24713:37;:::i;:::-;24772:1;24786:208;24800:7;24797:1;24794:14;24786:208;;;24879:9;24874:3;24870:19;24864:26;24856:6;24849:42;24930:1;24922:6;24918:14;24908:24;;24977:2;24966:9;24962:18;24949:31;;24823:4;24820:1;24816:12;24811:17;;24786:208;;;25022:6;25013:7;25010:19;25007:179;;;25080:9;25075:3;25071:19;25065:26;25123:48;25165:4;25157:6;25153:17;25142:9;25123:48;:::i;:::-;25115:6;25108:64;25030:156;25007:179;25232:1;25228;25220:6;25216:14;25212:22;25206:4;25199:36;24634:611;;;24597:887;;24187:1303;;;24095:1395;;:::o;25496:148::-;25598:11;25635:3;25620:18;;25496:148;;;;:::o;25650:390::-;25756:3;25784:39;25817:5;25784:39;:::i;:::-;25839:89;25921:6;25916:3;25839:89;:::i;:::-;25832:96;;25937:65;25995:6;25990:3;25983:4;25976:5;25972:16;25937:65;:::i;:::-;26027:6;26022:3;26018:16;26011:23;;25760:280;25650:390;;;;:::o;26046:435::-;26226:3;26248:95;26339:3;26330:6;26248:95;:::i;:::-;26241:102;;26360:95;26451:3;26442:6;26360:95;:::i;:::-;26353:102;;26472:3;26465:10;;26046:435;;;;;:::o;26487:225::-;26627:34;26623:1;26615:6;26611:14;26604:58;26696:8;26691:2;26683:6;26679:15;26672:33;26487:225;:::o;26718:366::-;26860:3;26881:67;26945:2;26940:3;26881:67;:::i;:::-;26874:74;;26957:93;27046:3;26957:93;:::i;:::-;27075:2;27070:3;27066:12;27059:19;;26718:366;;;:::o;27090:419::-;27256:4;27294:2;27283:9;27279:18;27271:26;;27343:9;27337:4;27333:20;27329:1;27318:9;27314:17;27307:47;27371:131;27497:4;27371:131;:::i;:::-;27363:139;;27090:419;;;:::o;27515:180::-;27563:77;27560:1;27553:88;27660:4;27657:1;27650:15;27684:4;27681:1;27674:15;27701:233;27740:3;27763:24;27781:5;27763:24;:::i;:::-;27754:33;;27809:66;27802:5;27799:77;27796:103;;27879:18;;:::i;:::-;27796:103;27926:1;27919:5;27915:13;27908:20;;27701:233;;;:::o;27940:182::-;28080:34;28076:1;28068:6;28064:14;28057:58;27940:182;:::o;28128:366::-;28270:3;28291:67;28355:2;28350:3;28291:67;:::i;:::-;28284:74;;28367:93;28456:3;28367:93;:::i;:::-;28485:2;28480:3;28476:12;28469:19;;28128:366;;;:::o;28500:419::-;28666:4;28704:2;28693:9;28689:18;28681:26;;28753:9;28747:4;28743:20;28739:1;28728:9;28724:17;28717:47;28781:131;28907:4;28781:131;:::i;:::-;28773:139;;28500:419;;;:::o;28925:98::-;28976:6;29010:5;29004:12;28994:22;;28925:98;;;:::o;29029:168::-;29112:11;29146:6;29141:3;29134:19;29186:4;29181:3;29177:14;29162:29;;29029:168;;;;:::o;29203:373::-;29289:3;29317:38;29349:5;29317:38;:::i;:::-;29371:70;29434:6;29429:3;29371:70;:::i;:::-;29364:77;;29450:65;29508:6;29503:3;29496:4;29489:5;29485:16;29450:65;:::i;:::-;29540:29;29562:6;29540:29;:::i;:::-;29535:3;29531:39;29524:46;;29293:283;29203:373;;;;:::o;29582:640::-;29777:4;29815:3;29804:9;29800:19;29792:27;;29829:71;29897:1;29886:9;29882:17;29873:6;29829:71;:::i;:::-;29910:72;29978:2;29967:9;29963:18;29954:6;29910:72;:::i;:::-;29992;30060:2;30049:9;30045:18;30036:6;29992:72;:::i;:::-;30111:9;30105:4;30101:20;30096:2;30085:9;30081:18;30074:48;30139:76;30210:4;30201:6;30139:76;:::i;:::-;30131:84;;29582:640;;;;;;;:::o;30228:141::-;30284:5;30315:6;30309:13;30300:22;;30331:32;30357:5;30331:32;:::i;:::-;30228:141;;;;:::o;30375:349::-;30444:6;30493:2;30481:9;30472:7;30468:23;30464:32;30461:119;;;30499:79;;:::i;:::-;30461:119;30619:1;30644:63;30699:7;30690:6;30679:9;30675:22;30644:63;:::i;:::-;30634:73;;30590:127;30375:349;;;;:::o

Swarm Source

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