ETH Price: $3,110.35 (+1.39%)
Gas: 20 Gwei

Token

ToxicBarrels (TXB)
 

Overview

Max Total Supply

1,457 TXB

Holders

489

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 TXB
0x81d25300fa9053735b9e827566e0862586a06063
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:
ToxicBarrels

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-26
*/

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/ERC721A_royalty.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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 == 0x2a55205a || // ERC 2981 rotyalty
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }
    

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;



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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/ToxicBarrels.sol


pragma solidity ^0.8.18;






contract ToxicBarrels is Ownable, ERC721A, PaymentSplitter {
    using Strings for uint256;

    enum Step {
        Before,
        OGSale,
        WhitelistSale,
        PublicSale,
        SoldOut
    }

    string public baseURI;

    Step public sellingStep;

    uint256 public MAX_SUPPLY = 2500;
    uint256 public MAX_TOTAL_PUBLIC = 2500;
    uint256 public MAX_TOTAL_WL = 2500;
    uint256 public MAX_TOTAL_OG = 2500;

    uint256 public MAX_PER_WALLET_PUBLIC = 2500;
    uint256 public MAX_PER_WALLET_WL = 5;
    uint256 public MAX_PER_WALLET_OG = 9;

    uint256 public ogSalePrice = 0.0069 ether;
    uint256 public wlSalePrice = 0.0079 ether;
    uint256 public publicSalePrice = 0.0089 ether;

    bytes32 public merkleRootWL;
    bytes32 public merkleRootOG;

    mapping(address => uint256) public amountNFTsperWalletPUBLIC;
    mapping(address => uint256) public amountNFTsperWalletWL;
    mapping(address => uint256) public amountNFTsperWalletOG;

    uint256 private teamLength;

    uint96 royaltyFeesInBips;
    address royaltyReceiver;

    constructor(
        uint96 _royaltyFeesInBips,
        address[] memory _team,
        uint256[] memory _teamShares,
        string memory _baseURI,
        bytes32 _merkleRootWL,
        bytes32 _merkleRootOG
    ) ERC721A("ToxicBarrels", "TXB") PaymentSplitter(_team, _teamShares) {
        baseURI = _baseURI;
        teamLength = _team.length;
        royaltyFeesInBips = _royaltyFeesInBips;
        royaltyReceiver = msg.sender;
        merkleRootWL = _merkleRootWL;
        merkleRootOG = _merkleRootOG;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function ogMint(
        address _account,
        uint256 _quantity,
        bytes32[] calldata _proof
    ) external payable callerIsUser {
        uint256 price = ogSalePrice;
        require(sellingStep == Step.OGSale, "Whitelist sale is not activated");
        require(msg.sender == _account, "Mint with your own wallet.");
        require(isOGListed(msg.sender, _proof), "Not OG listed.");
        require(
            amountNFTsperWalletWL[msg.sender] + _quantity <= MAX_PER_WALLET_OG,
            "Max per wallet limit reached"
        );
        require(
            totalSupply() + _quantity <= MAX_TOTAL_OG,
            "Max supply exceeded"
        );
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= price * _quantity, "Not enought funds");
        amountNFTsperWalletOG[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
    }

    function whitelistMint(
        address _account,
        uint256 _quantity,
        bytes32[] calldata _proof
    ) external payable callerIsUser {
        uint256 price = wlSalePrice;
        require(
            sellingStep == Step.WhitelistSale,
            "Whitelist sale is not activated"
        );
        require(msg.sender == _account, "Mint with your own wallet.");
        require(isWhiteListed(msg.sender, _proof), "Not whitelisted");
        require(
            amountNFTsperWalletWL[msg.sender] + _quantity <= MAX_PER_WALLET_WL,
            "Max per wallet limit reached"
        );
        require(
            totalSupply() + _quantity <= MAX_TOTAL_WL,
            "Max supply exceeded"
        );
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= price * _quantity, "Not enought funds");
        amountNFTsperWalletWL[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
    }

    function publicSaleMint(address _account, uint256 _quantity)
        external
        payable
        callerIsUser
    {
        uint256 price = publicSalePrice;
        require(msg.sender == _account, "Mint with your own wallet.");
        require(sellingStep == Step.PublicSale, "Public sale is not activated");
        require(
            totalSupply() + _quantity <= MAX_TOTAL_PUBLIC,
            "Max supply exceeded"
        );
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(
            amountNFTsperWalletPUBLIC[msg.sender] + _quantity <=
                MAX_PER_WALLET_PUBLIC,
            "Max per wallet limit reached"
        );
        require(msg.value >= price * _quantity, "Not enought funds");
        amountNFTsperWalletPUBLIC[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
    }

    function burn(uint256 tokenId) external {
        require(
            ownerOf(tokenId) == msg.sender,
            "Only the owner can burn the token"
        );
        _burn(tokenId);
    }

    function gift(address[] memory _to, uint256[] memory _quantity) external onlyOwner {
        require(_to.length == _quantity.length, "Arrays length mismatch");
        for (uint256 i = 0; i < _to.length; i++) {
            require(totalSupply() + _quantity[i] <= MAX_SUPPLY, "Reached max Supply");
            _safeMint(_to[i], _quantity[i]);
        }
    }


    function lowerSupply(uint256 _MAX_SUPPLY) external onlyOwner {
        require(_MAX_SUPPLY < MAX_SUPPLY, "Cannot increase supply!");
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setMaxTotalPUBLIC(uint256 _MAX_TOTAL_PUBLIC) external onlyOwner {
        MAX_TOTAL_PUBLIC = _MAX_TOTAL_PUBLIC;
    }

    function setMaxTotalWL(uint256 _MAX_TOTAL_WL) external onlyOwner {
        MAX_TOTAL_WL = _MAX_TOTAL_WL;
    }

    function setMaxTotalOG(uint256 _MAX_TOTAL_OG) external onlyOwner {
        MAX_TOTAL_OG = _MAX_TOTAL_OG;
    }

    function setMaxPerWalletWL(uint256 _MAX_PER_WALLET_WL) external onlyOwner {
        MAX_PER_WALLET_WL = _MAX_PER_WALLET_WL;
    }

    function setMaxPerWalletOG(uint256 _MAX_PER_WALLET_OG) external onlyOwner {
        MAX_PER_WALLET_OG = _MAX_PER_WALLET_OG;
    }

    function setMaxPerWalletPUBLIC(uint256 _MAX_PER_WALLET_PUBLIC)
        external
        onlyOwner
    {
        MAX_PER_WALLET_PUBLIC = _MAX_PER_WALLET_PUBLIC;
    }

    function setWLSalePrice(uint256 _wlSalePrice) external onlyOwner {
        wlSalePrice = _wlSalePrice;
    }

    function setOGSalePrice(uint256 _ogSalePrice) external onlyOwner {
        ogSalePrice = _ogSalePrice;
    }

    function setPublicSalePrice(uint256 _publicSalePrice) external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setStep(uint256 _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "URI query for nonexistent token");

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    //Whitelist
    function setMerkleRootWL(bytes32 _merkleRootWL) external onlyOwner {
        merkleRootWL = _merkleRootWL;
    }

    function isWhiteListed(address _account, bytes32[] calldata _proof)
        internal
        view
        returns (bool)
    {
        return _verifyWL(leaf(_account), _proof);
    }

    function leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verifyWL(bytes32 _leaf, bytes32[] memory _proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(_proof, merkleRootWL, _leaf);
    }

    //OG LIST
    function setMerkleRootOG(bytes32 _merkleRootOG) external onlyOwner {
        merkleRootOG = _merkleRootOG;
    }

    function isOGListed(address _account, bytes32[] calldata _proof)
        internal
        view
        returns (bool)
    {
        return _verifyOG(leaf(_account), _proof);
    }

    function _verifyOG(bytes32 _leaf, bytes32[] memory _proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(_proof, merkleRootOG, _leaf);
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (royaltyReceiver, calculateRoyalty(_salePrice));
    }

    function calculateRoyalty(uint256 _salePrice)
        public
        view
        returns (uint256)
    {
        return (_salePrice / 10000) * royaltyFeesInBips;
    }

    function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips)
        public
        onlyOwner
    {
        royaltyReceiver = _receiver;
        royaltyFeesInBips = _royaltyFeesInBips;
    }

    //ReleaseALL
    function releaseAll() external onlyOwner {
        for (uint256 i = 0; i < teamLength; i++) {
            release(payable(payee(i)));
        }
    }

    receive() external payable override {
        revert("Only if you mint");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootOG","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"MAX_PER_WALLET_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_quantity","type":"uint256[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"lowerSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRootOG","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum ToxicBarrels.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_OG","type":"uint256"}],"name":"setMaxPerWalletOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_PUBLIC","type":"uint256"}],"name":"setMaxPerWalletPUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_WL","type":"uint256"}],"name":"setMaxPerWalletWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_TOTAL_OG","type":"uint256"}],"name":"setMaxTotalOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_TOTAL_PUBLIC","type":"uint256"}],"name":"setMaxTotalPUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_TOTAL_WL","type":"uint256"}],"name":"setMaxTotalWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootOG","type":"bytes32"}],"name":"setMerkleRootOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogSalePrice","type":"uint256"}],"name":"setOGSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlSalePrice","type":"uint256"}],"name":"setWLSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526109c46012556109c46013556109c46014556109c46015556109c4601655600560175560096018556618838370f34000601955661c110215b9c000601a55661f9e80ba804000601b553480156200005a57600080fd5b5060405162003f8538038062003f858339810160408190526200007d91620006a3565b84846040518060400160405280600c81526020016b546f78696342617272656c7360a01b815250604051806040016040528060038152602001622a2c2160e91b815250620000da620000d46200027960201b60201c565b6200027d565b6003620000e88382620007f6565b506004620000f78282620007f6565b506001805550508051825114620001705760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001c35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000167565b60005b82518110156200022f576200021a838281518110620001e957620001e9620008c2565b6020026020010151838381518110620002065762000206620008c2565b6020026020010151620002cd60201b60201c565b806200022681620008ee565b915050620001c6565b50601091506200024290508482620007f6565b5093516021556001600160601b0394909416336c0100000000000000000000000002176022555050601c91909155601d5562000926565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200033a5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000167565b600081116200038c5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000167565b6001600160a01b0382166000908152600b602052604090205415620004085760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000167565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620004729082906200090a565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004fc57620004fc620004bb565b604052919050565b60006001600160401b03821115620005205762000520620004bb565b5060051b60200190565b600082601f8301126200053c57600080fd5b81516020620005556200054f8362000504565b620004d1565b82815260059290921b840181019181810190868411156200057557600080fd5b8286015b84811015620005a95780516001600160a01b03811681146200059b5760008081fd5b835291830191830162000579565b509695505050505050565b600082601f830112620005c657600080fd5b81516020620005d96200054f8362000504565b82815260059290921b84018101918181019086841115620005f957600080fd5b8286015b84811015620005a95780518352918301918301620005fd565b600082601f8301126200062857600080fd5b81516001600160401b03811115620006445762000644620004bb565b60206200065a601f8301601f19168201620004d1565b82815285828487010111156200066f57600080fd5b60005b838110156200068f57858101830151828201840152820162000672565b506000928101909101919091529392505050565b60008060008060008060c08789031215620006bd57600080fd5b86516001600160601b0381168114620006d557600080fd5b60208801519096506001600160401b0380821115620006f357600080fd5b620007018a838b016200052a565b965060408901519150808211156200071857600080fd5b620007268a838b01620005b4565b955060608901519150808211156200073d57600080fd5b506200074c89828a0162000616565b9350506080870151915060a087015190509295509295509295565b600181811c908216806200077c57607f821691505b6020821081036200079d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007f157600081815260208120601f850160051c81016020861015620007cc5750805b601f850160051c820191505b81811015620007ed57828155600101620007d8565b5050505b505050565b81516001600160401b03811115620008125762000812620004bb565b6200082a8162000823845462000767565b84620007a3565b602080601f831160018114620008625760008415620008495750858301515b600019600386901b1c1916600185901b178555620007ed565b600085815260208120601f198616915b82811015620008935788860151825594840194600190910190840162000872565b5085821015620008b25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620009035762000903620008d8565b5060010190565b80820180821115620009205762000920620008d8565b92915050565b61364f80620009366000396000f3fe6080604052600436106103f35760003560e01c80638b83209b11610208578063ad6cb31911610118578063cbccefb2116100ab578063e33b7de31161007a578063e33b7de314610c2d578063e985e9c514610c42578063ebb6ab4414610c8b578063f2fde38b14610cab578063f8dcbddb14610ccb57600080fd5b8063cbccefb214610b84578063ce7c2ac214610bab578063d6492d8114610be1578063d79779b214610bf757600080fd5b8063c2dd0832116100e7578063c2dd083214610b0e578063c45ac05014610b24578063c715381614610b44578063c87b56dd14610b6457600080fd5b8063ad6cb31914610a98578063b74ce1f014610aae578063b88d4fde14610ace578063c1612d4114610aee57600080fd5b8063a22cb4651161019b578063a58fdc111161016a578063a58fdc11146109f9578063aac0d2f614610a19578063ac5ae11b14610a39578063ac6a635914610a4c578063ad3e31b714610a7857600080fd5b8063a22cb46514610979578063a2e6961314610999578063a3237827146109b9578063a3f8eace146109d957600080fd5b806395d89b41116101d757806395d89b41146108f85780639852595c1461090d5780639b6860c814610943578063a0bcfc7f1461095957600080fd5b80638b83209b146108605780638da5cb5b146108805780638eb478a61461089e578063952aeab8146108cb57600080fd5b806342966c681161030357806364affb4011610296578063715018a611610265578063715018a6146107df578063734c66bd146107f45780637705f9b51461080a578063791a25191461082a578063828122ab1461084a57600080fd5b806364affb401461077e5780636c0360eb1461079457806370a08231146107a9578063710e9294146107c957600080fd5b806355cf5912116102d257806355cf5912146107165780635af79e38146107365780635be7fde8146107495780636352211e1461075e57600080fd5b806342966c68146106ad57806348b75044146106cd5780634b11faaf146106ed578063509033b41461070057600080fd5b806318160ddd116103865780632a55205a116103555780632a55205a146105dd57806332cb6b0c1461061c5780633a98ef3914610632578063406072a91461064757806342842e0e1461068d57600080fd5b806318160ddd14610568578063191655871461057d57806323b872dd1461059d57806323d2f9ec146105bd57600080fd5b8063081812fc116103c2578063081812fc146104d657806308ab701c1461050e578063095ea7b31461053257806317d5e67a1461055257600080fd5b806301ffc9a71461043d57806302fa7c471461047257806306fdde031461049457806308059439146104b657600080fd5b366104385760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b600080fd5b34801561044957600080fd5b5061045d610458366004612bd8565b610ceb565b60405190151581526020015b60405180910390f35b34801561047e57600080fd5b5061049261048d366004612c0a565b610d58565b005b3480156104a057600080fd5b506104a9610d8f565b6040516104699190612c9f565b3480156104c257600080fd5b506104926104d1366004612cb2565b610e21565b3480156104e257600080fd5b506104f66104f1366004612cb2565b610e2e565b6040516001600160a01b039091168152602001610469565b34801561051a57600080fd5b5061052460145481565b604051908152602001610469565b34801561053e57600080fd5b5061049261054d366004612ccb565b610e72565b34801561055e57600080fd5b5061052460135481565b34801561057457600080fd5b50610524610f12565b34801561058957600080fd5b50610492610598366004612cf7565b610f20565b3480156105a957600080fd5b506104926105b8366004612d14565b611007565b3480156105c957600080fd5b506104926105d8366004612cb2565b6111aa565b3480156105e957600080fd5b506105fd6105f8366004612d55565b6111b7565b604080516001600160a01b039093168352602083019190915201610469565b34801561062857600080fd5b5061052460125481565b34801561063e57600080fd5b50600954610524565b34801561065357600080fd5b50610524610662366004612d77565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561069957600080fd5b506104926106a8366004612d14565b6111e3565b3480156106b957600080fd5b506104926106c8366004612cb2565b611203565b3480156106d957600080fd5b506104926106e8366004612d77565b611279565b6104926106fb366004612da5565b61138a565b34801561070c57600080fd5b5061052460195481565b34801561072257600080fd5b50610492610731366004612cb2565b611586565b610492610744366004612da5565b611593565b34801561075557600080fd5b50610492611776565b34801561076a57600080fd5b506104f6610779366004612cb2565b6117a9565b34801561078a57600080fd5b5061052460165481565b3480156107a057600080fd5b506104a96117b4565b3480156107b557600080fd5b506105246107c4366004612cf7565b611842565b3480156107d557600080fd5b5061052460155481565b3480156107eb57600080fd5b50610492611891565b34801561080057600080fd5b50610524601a5481565b34801561081657600080fd5b50610492610825366004612f07565b6118a5565b34801561083657600080fd5b50610492610845366004612cb2565b6119c3565b34801561085657600080fd5b5061052460175481565b34801561086c57600080fd5b506104f661087b366004612cb2565b6119d0565b34801561088c57600080fd5b506000546001600160a01b03166104f6565b3480156108aa57600080fd5b506105246108b9366004612cf7565b601e6020526000908152604090205481565b3480156108d757600080fd5b506105246108e6366004612cf7565b601f6020526000908152604090205481565b34801561090457600080fd5b506104a9611a00565b34801561091957600080fd5b50610524610928366004612cf7565b6001600160a01b03166000908152600c602052604090205490565b34801561094f57600080fd5b50610524601b5481565b34801561096557600080fd5b50610492610974366004613021565b611a0f565b34801561098557600080fd5b50610492610994366004613078565b611a27565b3480156109a557600080fd5b506105246109b4366004612cb2565b611abc565b3480156109c557600080fd5b506104926109d4366004612cb2565b611ae1565b3480156109e557600080fd5b506105246109f4366004612cf7565b611aee565b348015610a0557600080fd5b50610492610a14366004612cb2565b611b36565b348015610a2557600080fd5b50610492610a34366004612cb2565b611b43565b610492610a47366004612ccb565b611b50565b348015610a5857600080fd5b50610524610a67366004612cf7565b602080526000908152604090205481565b348015610a8457600080fd5b50610492610a93366004612cb2565b611cfc565b348015610aa457600080fd5b50610524601d5481565b348015610aba57600080fd5b50610492610ac9366004612cb2565b611d09565b348015610ada57600080fd5b50610492610ae93660046130a6565b611d16565b348015610afa57600080fd5b50610492610b09366004612cb2565b611d60565b348015610b1a57600080fd5b5061052460185481565b348015610b3057600080fd5b50610524610b3f366004612d77565b611d6d565b348015610b5057600080fd5b50610492610b5f366004612cb2565b611e38565b348015610b7057600080fd5b506104a9610b7f366004612cb2565b611e96565b348015610b9057600080fd5b50601154610b9e9060ff1681565b604051610469919061313c565b348015610bb757600080fd5b50610524610bc6366004612cf7565b6001600160a01b03166000908152600b602052604090205490565b348015610bed57600080fd5b50610524601c5481565b348015610c0357600080fd5b50610524610c12366004612cf7565b6001600160a01b03166000908152600e602052604090205490565b348015610c3957600080fd5b50600a54610524565b348015610c4e57600080fd5b5061045d610c5d366004612d77565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610c9757600080fd5b50610492610ca6366004612cb2565b611f1f565b348015610cb757600080fd5b50610492610cc6366004612cf7565b611f2c565b348015610cd757600080fd5b50610492610ce6366004612cb2565b611fa2565b60006301ffc9a760e01b6001600160e01b031983161480610d1c57506380ac58cd60e01b6001600160e01b03198316145b80610d37575063152a902d60e11b6001600160e01b03198316145b80610d525750635b5e139f60e01b6001600160e01b03198316145b92915050565b610d60611fe0565b6001600160601b03166001600160a01b03909116600160601b026bffffffffffffffffffffffff191617602255565b606060038054610d9e90613164565b80601f0160208091040260200160405190810160405280929190818152602001828054610dca90613164565b8015610e175780601f10610dec57610100808354040283529160200191610e17565b820191906000526020600020905b815481529060010190602001808311610dfa57829003601f168201915b5050505050905090565b610e29611fe0565b601a55565b6000610e398261203a565b610e56576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610e7d826117a9565b9050336001600160a01b03821614610eb657610e998133610c5d565b610eb6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600254600154036000190190565b6001600160a01b0381166000908152600b6020526040902054610f555760405162461bcd60e51b815260040161042f9061319e565b6000610f6082611aee565b905080600003610f825760405162461bcd60e51b815260040161042f906131e4565b80600a6000828254610f949190613245565b90915550506001600160a01b0382166000908152600c60205260409020805482019055610fc1828261206f565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b600061101282612188565b9050836001600160a01b0316816001600160a01b0316146110455760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546110718187335b6001600160a01b039081169116811491141790565b61109c5761107f8633610c5d565b61109c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110c357604051633a954ecd60e21b815260040160405180910390fd5b80156110ce57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036111605760018401600081815260056020526040812054900361115e57600154811461115e5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111b2611fe0565b601555565b6022546000908190600160601b90046001600160a01b03166111d884611abc565b915091509250929050565b6111fe83838360405180602001604052806000815250611d16565b505050565b3361120d826117a9565b6001600160a01b03161461126d5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920746865206f776e65722063616e206275726e2074686520746f6b656044820152603760f91b606482015260840161042f565b611276816121f7565b50565b6001600160a01b0381166000908152600b60205260409020546112ae5760405162461bcd60e51b815260040161042f9061319e565b60006112ba8383611d6d565b9050806000036112dc5760405162461bcd60e51b815260040161042f906131e4565b6001600160a01b0383166000908152600e602052604081208054839290611304908490613245565b90915550506001600160a01b038084166000908152600f6020908152604080832093861683529290522080548201905561133f838383612202565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b3233146113a95760405162461bcd60e51b815260040161042f90613258565b601a54600260115460ff1660048111156113c5576113c5613126565b146114125760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161042f565b336001600160a01b0386161461143a5760405162461bcd60e51b815260040161042f9061328f565b611445338484612254565b6114835760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161042f565b601754336000908152601f60205260409020546114a1908690613245565b11156114bf5760405162461bcd60e51b815260040161042f906132c6565b601454846114cb610f12565b6114d59190613245565b11156114f35760405162461bcd60e51b815260040161042f906132fd565b601254846114ff610f12565b6115099190613245565b11156115275760405162461bcd60e51b815260040161042f906132fd565b611531848261332a565b3410156115505760405162461bcd60e51b815260040161042f90613341565b336000908152601f60205260408120805486929061156f908490613245565b9091555061157f9050858561229b565b5050505050565b61158e611fe0565b601655565b3233146115b25760405162461bcd60e51b815260040161042f90613258565b601954600160115460ff1660048111156115ce576115ce613126565b1461161b5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161042f565b336001600160a01b038616146116435760405162461bcd60e51b815260040161042f9061328f565b61164e3384846122b5565b61168b5760405162461bcd60e51b815260206004820152600e60248201526d2737ba1027a3903634b9ba32b21760911b604482015260640161042f565b601854336000908152601f60205260409020546116a9908690613245565b11156116c75760405162461bcd60e51b815260040161042f906132c6565b601554846116d3610f12565b6116dd9190613245565b11156116fb5760405162461bcd60e51b815260040161042f906132fd565b60125484611707610f12565b6117119190613245565b111561172f5760405162461bcd60e51b815260040161042f906132fd565b611739848261332a565b3410156117585760405162461bcd60e51b815260040161042f90613341565b3360009081526020805260408120805486929061156f908490613245565b61177e611fe0565b60005b60215481101561127657611797610598826119d0565b806117a18161336c565b915050611781565b6000610d5282612188565b601080546117c190613164565b80601f01602080910402602001604051908101604052809291908181526020018280546117ed90613164565b801561183a5780601f1061180f5761010080835404028352916020019161183a565b820191906000526020600020905b81548152906001019060200180831161181d57829003601f168201915b505050505081565b60006001600160a01b03821661186b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b611899611fe0565b6118a360006122fc565b565b6118ad611fe0565b80518251146118f75760405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b604482015260640161042f565b60005b82518110156111fe5760125482828151811061191857611918613385565b6020026020010151611928610f12565b6119329190613245565b11156119755760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b604482015260640161042f565b6119b183828151811061198a5761198a613385565b60200260200101518383815181106119a4576119a4613385565b602002602001015161229b565b806119bb8161336c565b9150506118fa565b6119cb611fe0565b601b55565b6000600d82815481106119e5576119e5613385565b6000918252602090912001546001600160a01b031692915050565b606060048054610d9e90613164565b611a17611fe0565b6010611a2382826133e1565b5050565b336001600160a01b03831603611a505760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6022546000906001600160601b0316611ad7612710846134a1565b610d52919061332a565b611ae9611fe0565b601855565b600080611afa600a5490565b611b049047613245565b9050611b2f8382611b2a866001600160a01b03166000908152600c602052604090205490565b61234c565b9392505050565b611b3e611fe0565b601d55565b611b4b611fe0565b601455565b323314611b6f5760405162461bcd60e51b815260040161042f90613258565b601b54336001600160a01b03841614611b9a5760405162461bcd60e51b815260040161042f9061328f565b600360115460ff166004811115611bb357611bb3613126565b14611c005760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161042f565b60135482611c0c610f12565b611c169190613245565b1115611c345760405162461bcd60e51b815260040161042f906132fd565b60125482611c40610f12565b611c4a9190613245565b1115611c685760405162461bcd60e51b815260040161042f906132fd565b601654336000908152601e6020526040902054611c86908490613245565b1115611ca45760405162461bcd60e51b815260040161042f906132c6565b611cae828261332a565b341015611ccd5760405162461bcd60e51b815260040161042f90613341565b336000908152601e602052604081208054849290611cec908490613245565b909155506111fe9050838361229b565b611d04611fe0565b601c55565b611d11611fe0565b601355565b611d21848484611007565b6001600160a01b0383163b15611d5a57611d3d8484848461238a565b611d5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611d68611fe0565b601755565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df091906134c3565b611dfa9190613245565b6001600160a01b038086166000908152600f6020908152604080832093881683529290522054909150611e30908490839061234c565b949350505050565b611e40611fe0565b6012548110611e915760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420696e63726561736520737570706c7921000000000000000000604482015260640161042f565b601255565b6060611ea18261203a565b611eed5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161042f565b6010611ef883612475565b604051602001611f099291906134dc565b6040516020818303038152906040529050919050565b611f27611fe0565b601955565b611f34611fe0565b6001600160a01b038116611f995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042f565b611276816122fc565b611faa611fe0565b806004811115611fbc57611fbc613126565b6011805460ff19166001836004811115611fd857611fd8613126565b021790555050565b6000546001600160a01b031633146118a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042f565b60008160011115801561204e575060015482105b8015610d52575050600090815260056020526040902054600160e01b161590565b804710156120bf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161042f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461210c576040519150601f19603f3d011682016040523d82523d6000602084013e612111565b606091505b50509050806111fe5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161042f565b600081806001116121de576001548110156121de5760008181526005602052604081205490600160e01b821690036121dc575b80600003611b2f5750600019016000818152600560205260409020546121bb565b505b604051636f96cda160e11b815260040160405180910390fd5b611276816000612508565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526111fe908490612653565b6000611e3061226285612728565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061276792505050565b611a23828260405180602001604052806000815250612776565b6000611e306122c385612728565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127dc92505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391612376908661332a565b61238091906134a1565b611e309190613573565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123bf903390899088908890600401613586565b6020604051808303816000875af19250505080156123fa575060408051601f3d908101601f191682019092526123f7918101906135c3565b60015b612458573d808015612428576040519150601f19603f3d011682016040523d82523d6000602084013e61242d565b606091505b508051600003612450576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606000612482836127eb565b600101905060008167ffffffffffffffff8111156124a2576124a2612e31565b6040519080825280601f01601f1916602001820160405280156124cc576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124d657509392505050565b600061251383612188565b90508060008061253186600090815260076020526040902080549091565b9150915084156125715761254681843361105c565b612571576125548333610c5d565b61257157604051632ce44b5f60e11b815260040160405180910390fd5b801561257c57600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b8516900361260a576001860160008181526005602052604081205490036126085760015481146126085760008181526005602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060028054600101905550505050565b60006126a8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128c39092919063ffffffff16565b90508051600014806126c95750808060200190518101906126c991906135e0565b6111fe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161042f565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611b2f82601c54856128d2565b61278083836128e8565b6001600160a01b0383163b156111fe576001548281035b6127aa600086838060010194508661238a565b6127c7576040516368d2bf6b60e11b815260040160405180910390fd5b81811061279757816001541461157f57600080fd5b6000611b2f82601d54856128d2565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061282a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612856576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061287457662386f26fc10000830492506010015b6305f5e100831061288c576305f5e100830492506008015b61271083106128a057612710830492506004015b606483106128b2576064830492506002015b600a8310610d525760010192915050565b6060611e3084846000856129c8565b6000826128df8584612aa3565b14949350505050565b6001546001600160a01b03831661291157604051622e076360e81b815260040160405180910390fd5b816000036129325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061297c5760015550505050565b606082471015612a295760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161042f565b600080866001600160a01b03168587604051612a4591906135fd565b60006040518083038185875af1925050503d8060008114612a82576040519150601f19603f3d011682016040523d82523d6000602084013e612a87565b606091505b5091509150612a9887838387612af0565b979650505050505050565b600081815b8451811015612ae857612ad482868381518110612ac757612ac7613385565b6020026020010151612b69565b915080612ae08161336c565b915050612aa8565b509392505050565b60608315612b5f578251600003612b58576001600160a01b0385163b612b585760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161042f565b5081611e30565b611e308383612b98565b6000818310612b85576000828152602084905260409020611b2f565b6000838152602083905260409020611b2f565b815115612ba85781518083602001fd5b8060405162461bcd60e51b815260040161042f9190612c9f565b6001600160e01b03198116811461127657600080fd5b600060208284031215612bea57600080fd5b8135611b2f81612bc2565b6001600160a01b038116811461127657600080fd5b60008060408385031215612c1d57600080fd5b8235612c2881612bf5565b915060208301356001600160601b0381168114612c4457600080fd5b809150509250929050565b60005b83811015612c6a578181015183820152602001612c52565b50506000910152565b60008151808452612c8b816020860160208601612c4f565b601f01601f19169290920160200192915050565b602081526000611b2f6020830184612c73565b600060208284031215612cc457600080fd5b5035919050565b60008060408385031215612cde57600080fd5b8235612ce981612bf5565b946020939093013593505050565b600060208284031215612d0957600080fd5b8135611b2f81612bf5565b600080600060608486031215612d2957600080fd5b8335612d3481612bf5565b92506020840135612d4481612bf5565b929592945050506040919091013590565b60008060408385031215612d6857600080fd5b50508035926020909101359150565b60008060408385031215612d8a57600080fd5b8235612d9581612bf5565b91506020830135612c4481612bf5565b60008060008060608587031215612dbb57600080fd5b8435612dc681612bf5565b935060208501359250604085013567ffffffffffffffff80821115612dea57600080fd5b818701915087601f830112612dfe57600080fd5b813581811115612e0d57600080fd5b8860208260051b8501011115612e2257600080fd5b95989497505060200194505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e7057612e70612e31565b604052919050565b600067ffffffffffffffff821115612e9257612e92612e31565b5060051b60200190565b600082601f830112612ead57600080fd5b81356020612ec2612ebd83612e78565b612e47565b82815260059290921b84018101918181019086841115612ee157600080fd5b8286015b84811015612efc5780358352918301918301612ee5565b509695505050505050565b60008060408385031215612f1a57600080fd5b823567ffffffffffffffff80821115612f3257600080fd5b818501915085601f830112612f4657600080fd5b81356020612f56612ebd83612e78565b82815260059290921b84018101918181019089841115612f7557600080fd5b948201945b83861015612f9c578535612f8d81612bf5565b82529482019490820190612f7a565b96505086013592505080821115612fb257600080fd5b50612fbf85828601612e9c565b9150509250929050565b600067ffffffffffffffff831115612fe357612fe3612e31565b612ff6601f8401601f1916602001612e47565b905082815283838301111561300a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561303357600080fd5b813567ffffffffffffffff81111561304a57600080fd5b8201601f8101841361305b57600080fd5b611e3084823560208401612fc9565b801515811461127657600080fd5b6000806040838503121561308b57600080fd5b823561309681612bf5565b91506020830135612c448161306a565b600080600080608085870312156130bc57600080fd5b84356130c781612bf5565b935060208501356130d781612bf5565b925060408501359150606085013567ffffffffffffffff8111156130fa57600080fd5b8501601f8101871361310b57600080fd5b61311a87823560208401612fc9565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016005831061315e57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061317857607f821691505b60208210810361319857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d5257610d5261322f565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252601a908201527f4d696e74207769746820796f7572206f776e2077616c6c65742e000000000000604082015260600190565b6020808252601c908201527f4d6178207065722077616c6c6574206c696d6974207265616368656400000000604082015260600190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b8082028115828204841417610d5257610d5261322f565b6020808252601190820152704e6f7420656e6f756768742066756e647360781b604082015260600190565b60006001820161337e5761337e61322f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156111fe57600081815260208120601f850160051c810160208610156133c25750805b601f850160051c820191505b818110156111a2578281556001016133ce565b815167ffffffffffffffff8111156133fb576133fb612e31565b61340f816134098454613164565b8461339b565b602080601f831160018114613444576000841561342c5750858301515b600019600386901b1c1916600185901b1785556111a2565b600085815260208120601f198616915b8281101561347357888601518255948401946001909101908401613454565b50858210156134915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826134be57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156134d557600080fd5b5051919050565b60008084546134ea81613164565b60018281168015613502576001811461351757613546565b60ff1984168752821515830287019450613546565b8860005260208060002060005b8581101561353d5781548a820152908401908201613524565b50505082870194505b50505050835161355a818360208801612c4f565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610d5257610d5261322f565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135b990830184612c73565b9695505050505050565b6000602082840312156135d557600080fd5b8151611b2f81612bc2565b6000602082840312156135f257600080fd5b8151611b2f8161306a565b6000825161360f818460208701612c4f565b919091019291505056fea2646970667358221220f9a749b2cb5b30a803ac730eba24bacc8ca1d423b07220bd7192c7ab7837af4a64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0bc3a900986afbbe577621dfa43a97c2c46c02eb5aa9a24736b3f479ff3e36e3835c378d85f50664068bda1d451c25012808ab6ed9a4f8cb4adf62d7df1ce3338000000000000000000000000000000000000000000000000000000000000000300000000000000000000000032def712340c617d940bb11666528b1b6baea1d1000000000000000000000000f46515bf134f101f0bb3bf16329c29eb88faff6e0000000000000000000000006469dd0fc003405637c8a15db65dee1686eff21f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656961666c6a326a6f36796f7835676c77776b37667272613636336e776969707473786b616671336b347a6d616737787732716e61342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103f35760003560e01c80638b83209b11610208578063ad6cb31911610118578063cbccefb2116100ab578063e33b7de31161007a578063e33b7de314610c2d578063e985e9c514610c42578063ebb6ab4414610c8b578063f2fde38b14610cab578063f8dcbddb14610ccb57600080fd5b8063cbccefb214610b84578063ce7c2ac214610bab578063d6492d8114610be1578063d79779b214610bf757600080fd5b8063c2dd0832116100e7578063c2dd083214610b0e578063c45ac05014610b24578063c715381614610b44578063c87b56dd14610b6457600080fd5b8063ad6cb31914610a98578063b74ce1f014610aae578063b88d4fde14610ace578063c1612d4114610aee57600080fd5b8063a22cb4651161019b578063a58fdc111161016a578063a58fdc11146109f9578063aac0d2f614610a19578063ac5ae11b14610a39578063ac6a635914610a4c578063ad3e31b714610a7857600080fd5b8063a22cb46514610979578063a2e6961314610999578063a3237827146109b9578063a3f8eace146109d957600080fd5b806395d89b41116101d757806395d89b41146108f85780639852595c1461090d5780639b6860c814610943578063a0bcfc7f1461095957600080fd5b80638b83209b146108605780638da5cb5b146108805780638eb478a61461089e578063952aeab8146108cb57600080fd5b806342966c681161030357806364affb4011610296578063715018a611610265578063715018a6146107df578063734c66bd146107f45780637705f9b51461080a578063791a25191461082a578063828122ab1461084a57600080fd5b806364affb401461077e5780636c0360eb1461079457806370a08231146107a9578063710e9294146107c957600080fd5b806355cf5912116102d257806355cf5912146107165780635af79e38146107365780635be7fde8146107495780636352211e1461075e57600080fd5b806342966c68146106ad57806348b75044146106cd5780634b11faaf146106ed578063509033b41461070057600080fd5b806318160ddd116103865780632a55205a116103555780632a55205a146105dd57806332cb6b0c1461061c5780633a98ef3914610632578063406072a91461064757806342842e0e1461068d57600080fd5b806318160ddd14610568578063191655871461057d57806323b872dd1461059d57806323d2f9ec146105bd57600080fd5b8063081812fc116103c2578063081812fc146104d657806308ab701c1461050e578063095ea7b31461053257806317d5e67a1461055257600080fd5b806301ffc9a71461043d57806302fa7c471461047257806306fdde031461049457806308059439146104b657600080fd5b366104385760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b600080fd5b34801561044957600080fd5b5061045d610458366004612bd8565b610ceb565b60405190151581526020015b60405180910390f35b34801561047e57600080fd5b5061049261048d366004612c0a565b610d58565b005b3480156104a057600080fd5b506104a9610d8f565b6040516104699190612c9f565b3480156104c257600080fd5b506104926104d1366004612cb2565b610e21565b3480156104e257600080fd5b506104f66104f1366004612cb2565b610e2e565b6040516001600160a01b039091168152602001610469565b34801561051a57600080fd5b5061052460145481565b604051908152602001610469565b34801561053e57600080fd5b5061049261054d366004612ccb565b610e72565b34801561055e57600080fd5b5061052460135481565b34801561057457600080fd5b50610524610f12565b34801561058957600080fd5b50610492610598366004612cf7565b610f20565b3480156105a957600080fd5b506104926105b8366004612d14565b611007565b3480156105c957600080fd5b506104926105d8366004612cb2565b6111aa565b3480156105e957600080fd5b506105fd6105f8366004612d55565b6111b7565b604080516001600160a01b039093168352602083019190915201610469565b34801561062857600080fd5b5061052460125481565b34801561063e57600080fd5b50600954610524565b34801561065357600080fd5b50610524610662366004612d77565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561069957600080fd5b506104926106a8366004612d14565b6111e3565b3480156106b957600080fd5b506104926106c8366004612cb2565b611203565b3480156106d957600080fd5b506104926106e8366004612d77565b611279565b6104926106fb366004612da5565b61138a565b34801561070c57600080fd5b5061052460195481565b34801561072257600080fd5b50610492610731366004612cb2565b611586565b610492610744366004612da5565b611593565b34801561075557600080fd5b50610492611776565b34801561076a57600080fd5b506104f6610779366004612cb2565b6117a9565b34801561078a57600080fd5b5061052460165481565b3480156107a057600080fd5b506104a96117b4565b3480156107b557600080fd5b506105246107c4366004612cf7565b611842565b3480156107d557600080fd5b5061052460155481565b3480156107eb57600080fd5b50610492611891565b34801561080057600080fd5b50610524601a5481565b34801561081657600080fd5b50610492610825366004612f07565b6118a5565b34801561083657600080fd5b50610492610845366004612cb2565b6119c3565b34801561085657600080fd5b5061052460175481565b34801561086c57600080fd5b506104f661087b366004612cb2565b6119d0565b34801561088c57600080fd5b506000546001600160a01b03166104f6565b3480156108aa57600080fd5b506105246108b9366004612cf7565b601e6020526000908152604090205481565b3480156108d757600080fd5b506105246108e6366004612cf7565b601f6020526000908152604090205481565b34801561090457600080fd5b506104a9611a00565b34801561091957600080fd5b50610524610928366004612cf7565b6001600160a01b03166000908152600c602052604090205490565b34801561094f57600080fd5b50610524601b5481565b34801561096557600080fd5b50610492610974366004613021565b611a0f565b34801561098557600080fd5b50610492610994366004613078565b611a27565b3480156109a557600080fd5b506105246109b4366004612cb2565b611abc565b3480156109c557600080fd5b506104926109d4366004612cb2565b611ae1565b3480156109e557600080fd5b506105246109f4366004612cf7565b611aee565b348015610a0557600080fd5b50610492610a14366004612cb2565b611b36565b348015610a2557600080fd5b50610492610a34366004612cb2565b611b43565b610492610a47366004612ccb565b611b50565b348015610a5857600080fd5b50610524610a67366004612cf7565b602080526000908152604090205481565b348015610a8457600080fd5b50610492610a93366004612cb2565b611cfc565b348015610aa457600080fd5b50610524601d5481565b348015610aba57600080fd5b50610492610ac9366004612cb2565b611d09565b348015610ada57600080fd5b50610492610ae93660046130a6565b611d16565b348015610afa57600080fd5b50610492610b09366004612cb2565b611d60565b348015610b1a57600080fd5b5061052460185481565b348015610b3057600080fd5b50610524610b3f366004612d77565b611d6d565b348015610b5057600080fd5b50610492610b5f366004612cb2565b611e38565b348015610b7057600080fd5b506104a9610b7f366004612cb2565b611e96565b348015610b9057600080fd5b50601154610b9e9060ff1681565b604051610469919061313c565b348015610bb757600080fd5b50610524610bc6366004612cf7565b6001600160a01b03166000908152600b602052604090205490565b348015610bed57600080fd5b50610524601c5481565b348015610c0357600080fd5b50610524610c12366004612cf7565b6001600160a01b03166000908152600e602052604090205490565b348015610c3957600080fd5b50600a54610524565b348015610c4e57600080fd5b5061045d610c5d366004612d77565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610c9757600080fd5b50610492610ca6366004612cb2565b611f1f565b348015610cb757600080fd5b50610492610cc6366004612cf7565b611f2c565b348015610cd757600080fd5b50610492610ce6366004612cb2565b611fa2565b60006301ffc9a760e01b6001600160e01b031983161480610d1c57506380ac58cd60e01b6001600160e01b03198316145b80610d37575063152a902d60e11b6001600160e01b03198316145b80610d525750635b5e139f60e01b6001600160e01b03198316145b92915050565b610d60611fe0565b6001600160601b03166001600160a01b03909116600160601b026bffffffffffffffffffffffff191617602255565b606060038054610d9e90613164565b80601f0160208091040260200160405190810160405280929190818152602001828054610dca90613164565b8015610e175780601f10610dec57610100808354040283529160200191610e17565b820191906000526020600020905b815481529060010190602001808311610dfa57829003601f168201915b5050505050905090565b610e29611fe0565b601a55565b6000610e398261203a565b610e56576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610e7d826117a9565b9050336001600160a01b03821614610eb657610e998133610c5d565b610eb6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600254600154036000190190565b6001600160a01b0381166000908152600b6020526040902054610f555760405162461bcd60e51b815260040161042f9061319e565b6000610f6082611aee565b905080600003610f825760405162461bcd60e51b815260040161042f906131e4565b80600a6000828254610f949190613245565b90915550506001600160a01b0382166000908152600c60205260409020805482019055610fc1828261206f565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b600061101282612188565b9050836001600160a01b0316816001600160a01b0316146110455760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546110718187335b6001600160a01b039081169116811491141790565b61109c5761107f8633610c5d565b61109c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110c357604051633a954ecd60e21b815260040160405180910390fd5b80156110ce57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036111605760018401600081815260056020526040812054900361115e57600154811461115e5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111b2611fe0565b601555565b6022546000908190600160601b90046001600160a01b03166111d884611abc565b915091509250929050565b6111fe83838360405180602001604052806000815250611d16565b505050565b3361120d826117a9565b6001600160a01b03161461126d5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920746865206f776e65722063616e206275726e2074686520746f6b656044820152603760f91b606482015260840161042f565b611276816121f7565b50565b6001600160a01b0381166000908152600b60205260409020546112ae5760405162461bcd60e51b815260040161042f9061319e565b60006112ba8383611d6d565b9050806000036112dc5760405162461bcd60e51b815260040161042f906131e4565b6001600160a01b0383166000908152600e602052604081208054839290611304908490613245565b90915550506001600160a01b038084166000908152600f6020908152604080832093861683529290522080548201905561133f838383612202565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b3233146113a95760405162461bcd60e51b815260040161042f90613258565b601a54600260115460ff1660048111156113c5576113c5613126565b146114125760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161042f565b336001600160a01b0386161461143a5760405162461bcd60e51b815260040161042f9061328f565b611445338484612254565b6114835760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161042f565b601754336000908152601f60205260409020546114a1908690613245565b11156114bf5760405162461bcd60e51b815260040161042f906132c6565b601454846114cb610f12565b6114d59190613245565b11156114f35760405162461bcd60e51b815260040161042f906132fd565b601254846114ff610f12565b6115099190613245565b11156115275760405162461bcd60e51b815260040161042f906132fd565b611531848261332a565b3410156115505760405162461bcd60e51b815260040161042f90613341565b336000908152601f60205260408120805486929061156f908490613245565b9091555061157f9050858561229b565b5050505050565b61158e611fe0565b601655565b3233146115b25760405162461bcd60e51b815260040161042f90613258565b601954600160115460ff1660048111156115ce576115ce613126565b1461161b5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161042f565b336001600160a01b038616146116435760405162461bcd60e51b815260040161042f9061328f565b61164e3384846122b5565b61168b5760405162461bcd60e51b815260206004820152600e60248201526d2737ba1027a3903634b9ba32b21760911b604482015260640161042f565b601854336000908152601f60205260409020546116a9908690613245565b11156116c75760405162461bcd60e51b815260040161042f906132c6565b601554846116d3610f12565b6116dd9190613245565b11156116fb5760405162461bcd60e51b815260040161042f906132fd565b60125484611707610f12565b6117119190613245565b111561172f5760405162461bcd60e51b815260040161042f906132fd565b611739848261332a565b3410156117585760405162461bcd60e51b815260040161042f90613341565b3360009081526020805260408120805486929061156f908490613245565b61177e611fe0565b60005b60215481101561127657611797610598826119d0565b806117a18161336c565b915050611781565b6000610d5282612188565b601080546117c190613164565b80601f01602080910402602001604051908101604052809291908181526020018280546117ed90613164565b801561183a5780601f1061180f5761010080835404028352916020019161183a565b820191906000526020600020905b81548152906001019060200180831161181d57829003601f168201915b505050505081565b60006001600160a01b03821661186b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b611899611fe0565b6118a360006122fc565b565b6118ad611fe0565b80518251146118f75760405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b604482015260640161042f565b60005b82518110156111fe5760125482828151811061191857611918613385565b6020026020010151611928610f12565b6119329190613245565b11156119755760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b604482015260640161042f565b6119b183828151811061198a5761198a613385565b60200260200101518383815181106119a4576119a4613385565b602002602001015161229b565b806119bb8161336c565b9150506118fa565b6119cb611fe0565b601b55565b6000600d82815481106119e5576119e5613385565b6000918252602090912001546001600160a01b031692915050565b606060048054610d9e90613164565b611a17611fe0565b6010611a2382826133e1565b5050565b336001600160a01b03831603611a505760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6022546000906001600160601b0316611ad7612710846134a1565b610d52919061332a565b611ae9611fe0565b601855565b600080611afa600a5490565b611b049047613245565b9050611b2f8382611b2a866001600160a01b03166000908152600c602052604090205490565b61234c565b9392505050565b611b3e611fe0565b601d55565b611b4b611fe0565b601455565b323314611b6f5760405162461bcd60e51b815260040161042f90613258565b601b54336001600160a01b03841614611b9a5760405162461bcd60e51b815260040161042f9061328f565b600360115460ff166004811115611bb357611bb3613126565b14611c005760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161042f565b60135482611c0c610f12565b611c169190613245565b1115611c345760405162461bcd60e51b815260040161042f906132fd565b60125482611c40610f12565b611c4a9190613245565b1115611c685760405162461bcd60e51b815260040161042f906132fd565b601654336000908152601e6020526040902054611c86908490613245565b1115611ca45760405162461bcd60e51b815260040161042f906132c6565b611cae828261332a565b341015611ccd5760405162461bcd60e51b815260040161042f90613341565b336000908152601e602052604081208054849290611cec908490613245565b909155506111fe9050838361229b565b611d04611fe0565b601c55565b611d11611fe0565b601355565b611d21848484611007565b6001600160a01b0383163b15611d5a57611d3d8484848461238a565b611d5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611d68611fe0565b601755565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df091906134c3565b611dfa9190613245565b6001600160a01b038086166000908152600f6020908152604080832093881683529290522054909150611e30908490839061234c565b949350505050565b611e40611fe0565b6012548110611e915760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420696e63726561736520737570706c7921000000000000000000604482015260640161042f565b601255565b6060611ea18261203a565b611eed5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161042f565b6010611ef883612475565b604051602001611f099291906134dc565b6040516020818303038152906040529050919050565b611f27611fe0565b601955565b611f34611fe0565b6001600160a01b038116611f995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042f565b611276816122fc565b611faa611fe0565b806004811115611fbc57611fbc613126565b6011805460ff19166001836004811115611fd857611fd8613126565b021790555050565b6000546001600160a01b031633146118a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042f565b60008160011115801561204e575060015482105b8015610d52575050600090815260056020526040902054600160e01b161590565b804710156120bf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161042f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461210c576040519150601f19603f3d011682016040523d82523d6000602084013e612111565b606091505b50509050806111fe5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161042f565b600081806001116121de576001548110156121de5760008181526005602052604081205490600160e01b821690036121dc575b80600003611b2f5750600019016000818152600560205260409020546121bb565b505b604051636f96cda160e11b815260040160405180910390fd5b611276816000612508565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526111fe908490612653565b6000611e3061226285612728565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061276792505050565b611a23828260405180602001604052806000815250612776565b6000611e306122c385612728565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127dc92505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391612376908661332a565b61238091906134a1565b611e309190613573565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123bf903390899088908890600401613586565b6020604051808303816000875af19250505080156123fa575060408051601f3d908101601f191682019092526123f7918101906135c3565b60015b612458573d808015612428576040519150601f19603f3d011682016040523d82523d6000602084013e61242d565b606091505b508051600003612450576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606000612482836127eb565b600101905060008167ffffffffffffffff8111156124a2576124a2612e31565b6040519080825280601f01601f1916602001820160405280156124cc576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124d657509392505050565b600061251383612188565b90508060008061253186600090815260076020526040902080549091565b9150915084156125715761254681843361105c565b612571576125548333610c5d565b61257157604051632ce44b5f60e11b815260040160405180910390fd5b801561257c57600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b8516900361260a576001860160008181526005602052604081205490036126085760015481146126085760008181526005602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060028054600101905550505050565b60006126a8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128c39092919063ffffffff16565b90508051600014806126c95750808060200190518101906126c991906135e0565b6111fe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161042f565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611b2f82601c54856128d2565b61278083836128e8565b6001600160a01b0383163b156111fe576001548281035b6127aa600086838060010194508661238a565b6127c7576040516368d2bf6b60e11b815260040160405180910390fd5b81811061279757816001541461157f57600080fd5b6000611b2f82601d54856128d2565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061282a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612856576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061287457662386f26fc10000830492506010015b6305f5e100831061288c576305f5e100830492506008015b61271083106128a057612710830492506004015b606483106128b2576064830492506002015b600a8310610d525760010192915050565b6060611e3084846000856129c8565b6000826128df8584612aa3565b14949350505050565b6001546001600160a01b03831661291157604051622e076360e81b815260040160405180910390fd5b816000036129325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061297c5760015550505050565b606082471015612a295760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161042f565b600080866001600160a01b03168587604051612a4591906135fd565b60006040518083038185875af1925050503d8060008114612a82576040519150601f19603f3d011682016040523d82523d6000602084013e612a87565b606091505b5091509150612a9887838387612af0565b979650505050505050565b600081815b8451811015612ae857612ad482868381518110612ac757612ac7613385565b6020026020010151612b69565b915080612ae08161336c565b915050612aa8565b509392505050565b60608315612b5f578251600003612b58576001600160a01b0385163b612b585760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161042f565b5081611e30565b611e308383612b98565b6000818310612b85576000828152602084905260409020611b2f565b6000838152602083905260409020611b2f565b815115612ba85781518083602001fd5b8060405162461bcd60e51b815260040161042f9190612c9f565b6001600160e01b03198116811461127657600080fd5b600060208284031215612bea57600080fd5b8135611b2f81612bc2565b6001600160a01b038116811461127657600080fd5b60008060408385031215612c1d57600080fd5b8235612c2881612bf5565b915060208301356001600160601b0381168114612c4457600080fd5b809150509250929050565b60005b83811015612c6a578181015183820152602001612c52565b50506000910152565b60008151808452612c8b816020860160208601612c4f565b601f01601f19169290920160200192915050565b602081526000611b2f6020830184612c73565b600060208284031215612cc457600080fd5b5035919050565b60008060408385031215612cde57600080fd5b8235612ce981612bf5565b946020939093013593505050565b600060208284031215612d0957600080fd5b8135611b2f81612bf5565b600080600060608486031215612d2957600080fd5b8335612d3481612bf5565b92506020840135612d4481612bf5565b929592945050506040919091013590565b60008060408385031215612d6857600080fd5b50508035926020909101359150565b60008060408385031215612d8a57600080fd5b8235612d9581612bf5565b91506020830135612c4481612bf5565b60008060008060608587031215612dbb57600080fd5b8435612dc681612bf5565b935060208501359250604085013567ffffffffffffffff80821115612dea57600080fd5b818701915087601f830112612dfe57600080fd5b813581811115612e0d57600080fd5b8860208260051b8501011115612e2257600080fd5b95989497505060200194505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e7057612e70612e31565b604052919050565b600067ffffffffffffffff821115612e9257612e92612e31565b5060051b60200190565b600082601f830112612ead57600080fd5b81356020612ec2612ebd83612e78565b612e47565b82815260059290921b84018101918181019086841115612ee157600080fd5b8286015b84811015612efc5780358352918301918301612ee5565b509695505050505050565b60008060408385031215612f1a57600080fd5b823567ffffffffffffffff80821115612f3257600080fd5b818501915085601f830112612f4657600080fd5b81356020612f56612ebd83612e78565b82815260059290921b84018101918181019089841115612f7557600080fd5b948201945b83861015612f9c578535612f8d81612bf5565b82529482019490820190612f7a565b96505086013592505080821115612fb257600080fd5b50612fbf85828601612e9c565b9150509250929050565b600067ffffffffffffffff831115612fe357612fe3612e31565b612ff6601f8401601f1916602001612e47565b905082815283838301111561300a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561303357600080fd5b813567ffffffffffffffff81111561304a57600080fd5b8201601f8101841361305b57600080fd5b611e3084823560208401612fc9565b801515811461127657600080fd5b6000806040838503121561308b57600080fd5b823561309681612bf5565b91506020830135612c448161306a565b600080600080608085870312156130bc57600080fd5b84356130c781612bf5565b935060208501356130d781612bf5565b925060408501359150606085013567ffffffffffffffff8111156130fa57600080fd5b8501601f8101871361310b57600080fd5b61311a87823560208401612fc9565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016005831061315e57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061317857607f821691505b60208210810361319857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d5257610d5261322f565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252601a908201527f4d696e74207769746820796f7572206f776e2077616c6c65742e000000000000604082015260600190565b6020808252601c908201527f4d6178207065722077616c6c6574206c696d6974207265616368656400000000604082015260600190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b8082028115828204841417610d5257610d5261322f565b6020808252601190820152704e6f7420656e6f756768742066756e647360781b604082015260600190565b60006001820161337e5761337e61322f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156111fe57600081815260208120601f850160051c810160208610156133c25750805b601f850160051c820191505b818110156111a2578281556001016133ce565b815167ffffffffffffffff8111156133fb576133fb612e31565b61340f816134098454613164565b8461339b565b602080601f831160018114613444576000841561342c5750858301515b600019600386901b1c1916600185901b1785556111a2565b600085815260208120601f198616915b8281101561347357888601518255948401946001909101908401613454565b50858210156134915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826134be57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156134d557600080fd5b5051919050565b60008084546134ea81613164565b60018281168015613502576001811461351757613546565b60ff1984168752821515830287019450613546565b8860005260208060002060005b8581101561353d5781548a820152908401908201613524565b50505082870194505b50505050835161355a818360208801612c4f565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610d5257610d5261322f565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135b990830184612c73565b9695505050505050565b6000602082840312156135d557600080fd5b8151611b2f81612bc2565b6000602082840312156135f257600080fd5b8151611b2f8161306a565b6000825161360f818460208701612c4f565b919091019291505056fea2646970667358221220f9a749b2cb5b30a803ac730eba24bacc8ca1d423b07220bd7192c7ab7837af4a64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0bc3a900986afbbe577621dfa43a97c2c46c02eb5aa9a24736b3f479ff3e36e3835c378d85f50664068bda1d451c25012808ab6ed9a4f8cb4adf62d7df1ce3338000000000000000000000000000000000000000000000000000000000000000300000000000000000000000032def712340c617d940bb11666528b1b6baea1d1000000000000000000000000f46515bf134f101f0bb3bf16329c29eb88faff6e0000000000000000000000006469dd0fc003405637c8a15db65dee1686eff21f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656961666c6a326a6f36796f7835676c77776b37667272613636336e776969707473786b616671336b347a6d616737787732716e61342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 750
Arg [1] : _team (address[]): 0x32DeF712340C617D940BB11666528b1b6BaEa1d1,0xF46515Bf134f101F0bb3Bf16329C29eB88fAfF6E,0x6469Dd0fC003405637C8A15DB65deE1686EFf21F
Arg [2] : _teamShares (uint256[]): 25,15,60
Arg [3] : _baseURI (string): ipfs://bafybeiaflj2jo6yox5glwwk7frra663nwiiptsxkafq3k4zmag7xw2qna4/
Arg [4] : _merkleRootWL (bytes32): 0xbc3a900986afbbe577621dfa43a97c2c46c02eb5aa9a24736b3f479ff3e36e38
Arg [5] : _merkleRootOG (bytes32): 0x35c378d85f50664068bda1d451c25012808ab6ed9a4f8cb4adf62d7df1ce3338

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : bc3a900986afbbe577621dfa43a97c2c46c02eb5aa9a24736b3f479ff3e36e38
Arg [5] : 35c378d85f50664068bda1d451c25012808ab6ed9a4f8cb4adf62d7df1ce3338
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 00000000000000000000000032def712340c617d940bb11666528b1b6baea1d1
Arg [8] : 000000000000000000000000f46515bf134f101f0bb3bf16329c29eb88faff6e
Arg [9] : 0000000000000000000000006469dd0fc003405637c8a15db65dee1686eff21f
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [13] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [15] : 697066733a2f2f6261667962656961666c6a326a6f36796f7835676c77776b37
Arg [16] : 667272613636336e776969707473786b616671336b347a6d616737787732716e
Arg [17] : 61342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

106222:9193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115378:26;;-1:-1:-1;;;115378:26:0;;216:2:1;115378:26:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:46;330:18;;115378:26:0;;;;;;;;106222:9193;;;;14586:678;;;;;;;;;;-1:-1:-1;14586:678:0;;;;;:::i;:::-;;:::i;:::-;;;910:14:1;;903:22;885:41;;873:2;858:18;14586:678:0;;;;;;;;114939:205;;;;;;;;;;-1:-1:-1;114939:205:0;;;;;:::i;:::-;;:::i;:::-;;20296:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;112428:110::-;;;;;;;;;;-1:-1:-1;112428:110:0;;;;;:::i;:::-;;:::i;22248:204::-;;;;;;;;;;-1:-1:-1;22248:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2618:32:1;;;2600:51;;2588:2;2573:18;22248:204:0;2454:203:1;106590:34:0;;;;;;;;;;;;;;;;;;;2808:25:1;;;2796:2;2781:18;106590:34:0;2662:177:1;21790:392:0;;;;;;;;;;-1:-1:-1;21790:392:0;;;;;:::i;:::-;;:::i;106545:38::-;;;;;;;;;;;;;;;;13640:315;;;;;;;;;;;;;:::i;100621:671::-;;;;;;;;;;-1:-1:-1;100621:671:0;;;;;:::i;:::-;;:::i;31517:2800::-;;;;;;;;;;-1:-1:-1;31517:2800:0;;;;;:::i;:::-;;:::i;111852:112::-;;;;;;;;;;-1:-1:-1;111852:112:0;;;;;:::i;:::-;;:::i;114521:228::-;;;;;;;;;;-1:-1:-1;114521:228:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4330:32:1;;;4312:51;;4394:2;4379:18;;4372:34;;;;4285:18;114521:228:0;4138:274:1;106506:32:0;;;;;;;;;;;;;;;;98231:91;;;;;;;;;;-1:-1:-1;98302:12:0;;98231:91;;99360:135;;;;;;;;;;-1:-1:-1;99360:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;99457:21:0;;;99430:7;99457:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;99360:135;23142:185;;;;;;;;;;-1:-1:-1;23142:185:0;;;;;:::i;:::-;;:::i;110834:197::-;;;;;;;;;;-1:-1:-1;110834:197:0;;;;;:::i;:::-;;:::i;101560:792::-;;;;;;;;;;-1:-1:-1;101560:792:0;;;;;:::i;:::-;;:::i;108938:993::-;;;;;;:::i;:::-;;:::i;106812:41::-;;;;;;;;;;;;;;;;112250:170;;;;;;;;;;-1:-1:-1;112250:170:0;;;;;:::i;:::-;;:::i;107992:938::-;;;;;;:::i;:::-;;:::i;115170:153::-;;;;;;;;;;;;;:::i;20085:144::-;;;;;;;;;;-1:-1:-1;20085:144:0;;;;;:::i;:::-;;:::i;106674:43::-;;;;;;;;;;;;;;;;106444:21;;;;;;;;;;;;;:::i;15328:224::-;;;;;;;;;;-1:-1:-1;15328:224:0;;;;;:::i;:::-;;:::i;106631:34::-;;;;;;;;;;;;;;;;105326:103;;;;;;;;;;;;;:::i;106860:41::-;;;;;;;;;;;;;;;;111039:364;;;;;;;;;;-1:-1:-1;111039:364:0;;;;;:::i;:::-;;:::i;112664:126::-;;;;;;;;;;-1:-1:-1;112664:126:0;;;;;:::i;:::-;;:::i;106724:36::-;;;;;;;;;;;;;;;;99586:100;;;;;;;;;;-1:-1:-1;99586:100:0;;;;;:::i;:::-;;:::i;104685:87::-;;;;;;;;;;-1:-1:-1;104731:7:0;104758:6;-1:-1:-1;;;;;104758:6:0;104685:87;;107032:60;;;;;;;;;;-1:-1:-1;107032:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;107099:56;;;;;;;;;;-1:-1:-1;107099:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;20465:104;;;;;;;;;;;;;:::i;99082:109::-;;;;;;;;;;-1:-1:-1;99082:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;99165:18:0;99138:7;99165:18;;;:9;:18;;;;;;;99082:109;106908:45;;;;;;;;;;;;;;;;112798:100;;;;;;;;;;-1:-1:-1;112798:100:0;;;;;:::i;:::-;;:::i;22524:306::-;;;;;;;;;;-1:-1:-1;22524:306:0;;;;;:::i;:::-;;:::i;114757:174::-;;;;;;;;;;-1:-1:-1;114757:174:0;;;;;:::i;:::-;;:::i;112111:131::-;;;;;;;;;;-1:-1:-1;112111:131:0;;;;;:::i;:::-;;:::i;99776:225::-;;;;;;;;;;-1:-1:-1;99776:225:0;;;;;:::i;:::-;;:::i;114005:114::-;;;;;;;;;;-1:-1:-1;114005:114:0;;;;;:::i;:::-;;:::i;111732:112::-;;;;;;;;;;-1:-1:-1;111732:112:0;;;;;:::i;:::-;;:::i;109939:887::-;;;;;;:::i;:::-;;:::i;107162:56::-;;;;;;;;;;-1:-1:-1;107162:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;113336:114;;;;;;;;;;-1:-1:-1;113336:114:0;;;;;:::i;:::-;;:::i;106996:27::-;;;;;;;;;;;;;;;;111596:128;;;;;;;;;;-1:-1:-1;111596:128:0;;;;;:::i;:::-;;:::i;23398:399::-;;;;;;;;;;-1:-1:-1;23398:399:0;;;;;:::i;:::-;;:::i;111972:131::-;;;;;;;;;;-1:-1:-1;111972:131:0;;;;;:::i;:::-;;:::i;106767:36::-;;;;;;;;;;;;;;;;100161:260;;;;;;;;;;-1:-1:-1;100161:260:0;;;;;:::i;:::-;;:::i;111413:175::-;;;;;;;;;;-1:-1:-1;111413:175:0;;;;;:::i;:::-;;:::i;113009:302::-;;;;;;;;;;-1:-1:-1;113009:302:0;;;;;:::i;:::-;;:::i;106474:23::-;;;;;;;;;;-1:-1:-1;106474:23:0;;;;;;;;;;;;;;;:::i;98878:105::-;;;;;;;;;;-1:-1:-1;98878:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;98959:16:0;98932:7;98959:16;;;:7;:16;;;;;;;98878:105;106962:27;;;;;;;;;;;;;;;;98668:119;;;;;;;;;;-1:-1:-1;98668:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;98753:26:0;98726:7;98753:26;;;:19;:26;;;;;;;98668:119;98416:95;;;;;;;;;;-1:-1:-1;98489:14:0;;98416:95;;22907:164;;;;;;;;;;-1:-1:-1;22907:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23028:25:0;;;23004:4;23028:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22907:164;112546:110;;;;;;;;;;-1:-1:-1;112546:110:0;;;;;:::i;:::-;;:::i;105584:201::-;;;;;;;;;;-1:-1:-1;105584:201:0;;;;;:::i;:::-;;:::i;112906:95::-;;;;;;;;;;-1:-1:-1;112906:95:0;;;;;:::i;:::-;;:::i;14586:678::-;14671:4;-1:-1:-1;;;;;;;;;14971:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15048:25:0;;;14971:102;:179;;;-1:-1:-1;;;;;;;;;;15125:25:0;;;14971:179;:242;;;-1:-1:-1;;;;;;;;;;15188:25:0;;;14971:242;14951:262;14586:678;-1:-1:-1;;14586:678:0:o;114939:205::-;104571:13;:11;:13::i;:::-;-1:-1:-1;;;;;115098:38:0::1;-1:-1:-1::0;;;;;115060:27:0;;::::1;-1:-1:-1::0;;;115060:27:0::1;-1:-1:-1::0;;115098:38:0;::::1;115060:15;115098:38:::0;114939:205::o;20296:100::-;20350:13;20383:5;20376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20296:100;:::o;112428:110::-;104571:13;:11;:13::i;:::-;112504:11:::1;:26:::0;112428:110::o;22248:204::-;22316:7;22341:16;22349:7;22341;:16::i;:::-;22336:64;;22366:34;;-1:-1:-1;;;22366:34:0;;;;;;;;;;;22336:64;-1:-1:-1;22420:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22420:24:0;;22248:204::o;21790:392::-;21871:13;21887:16;21895:7;21887;:16::i;:::-;21871:32;-1:-1:-1;42700:10:0;-1:-1:-1;;;;;21918:28:0;;;21914:175;;21966:44;21983:5;42700:10;22907:164;:::i;21966:44::-;21961:128;;22038:35;;-1:-1:-1;;;22038:35:0;;;;;;;;;;;21961:128;22101:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22101:29:0;-1:-1:-1;;;;;22101:29:0;;;;;;;;;22146:28;;22101:24;;22146:28;;;;;;;21860:322;21790:392;;:::o;13640:315::-;13906:12;;13247:1;13890:13;:28;-1:-1:-1;;13890:46:0;;13640:315::o;100621:671::-;-1:-1:-1;;;;;100697:16:0;;100716:1;100697:16;;;:7;:16;;;;;;100689:71;;;;-1:-1:-1;;;100689:71:0;;;;;;;:::i;:::-;100773:15;100791:19;100802:7;100791:10;:19::i;:::-;100773:37;;100831:7;100842:1;100831:12;100823:68;;;;-1:-1:-1;;;100823:68:0;;;;;;;:::i;:::-;101104:7;101086:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;101147:18:0;;;;;;:9;:18;;;;;:29;;;;;;101200:35;101157:7;101169;101200:17;:35::i;:::-;101251:33;;;-1:-1:-1;;;;;4330:32:1;;4312:51;;4394:2;4379:18;;4372:34;;;101251:33:0;;4285:18:1;101251:33:0;;;;;;;100678:614;100621:671;:::o;31517:2800::-;31651:27;31681;31700:7;31681:18;:27::i;:::-;31651:57;;31766:4;-1:-1:-1;;;;;31725:45:0;31741:19;-1:-1:-1;;;;;31725:45:0;;31721:86;;31779:28;;-1:-1:-1;;;31779:28:0;;;;;;;;;;;31721:86;31821:27;30247:21;;;30074:15;30289:4;30282:36;30371:4;30355:21;;30461:26;;32005:62;30461:26;32041:4;42700:10;32047:19;-1:-1:-1;;;;;31066:31:0;;;30912:26;;31193:19;;31214:30;;31190:55;;30618:645;32005:62;32000:174;;32087:43;32104:4;42700:10;22907:164;:::i;32087:43::-;32082:92;;32139:35;;-1:-1:-1;;;32139:35:0;;;;;;;;;;;32082:92;-1:-1:-1;;;;;32191:16:0;;32187:52;;32216:23;;-1:-1:-1;;;32216:23:0;;;;;;;;;;;32187:52;32388:15;32385:160;;;32528:1;32507:19;32500:30;32385:160;-1:-1:-1;;;;;32923:24:0;;;;;;;:18;:24;;;;;;32921:26;;-1:-1:-1;;32921:26:0;;;32992:22;;;;;;;;;32990:24;;-1:-1:-1;32990:24:0;;;19984:11;19960:22;19956:40;19943:62;-1:-1:-1;;;19943:62:0;33285:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33579:46:0;;:51;;33575:626;;33683:1;33673:11;;33651:19;33806:30;;;:17;:30;;;;;;:35;;33802:384;;33944:13;;33929:11;:28;33925:242;;34091:30;;;;:17;:30;;;;;:52;;;33925:242;33632:569;33575:626;34248:7;34244:2;-1:-1:-1;;;;;34229:27:0;34238:4;-1:-1:-1;;;;;34229:27:0;;;;;;;;;;;34267:42;31640:2677;;;31517:2800;;;:::o;111852:112::-;104571:13;:11;:13::i;:::-;111928:12:::1;:28:::0;111852:112::o;114521:228::-;114695:15;;114630:16;;;;-1:-1:-1;;;114695:15:0;;-1:-1:-1;;;;;114695:15:0;114712:28;114729:10;114712:16;:28::i;:::-;114687:54;;;;114521:228;;;;;:::o;23142:185::-;23280:39;23297:4;23303:2;23307:7;23280:39;;;;;;;;;;;;:16;:39::i;:::-;23142:185;;;:::o;110834:197::-;110927:10;110907:16;110915:7;110907;:16::i;:::-;-1:-1:-1;;;;;110907:30:0;;110885:113;;;;-1:-1:-1;;;110885:113:0;;14021:2:1;110885:113:0;;;14003:21:1;14060:2;14040:18;;;14033:30;14099:34;14079:18;;;14072:62;-1:-1:-1;;;14150:18:1;;;14143:31;14191:19;;110885:113:0;13819:397:1;110885:113:0;111009:14;111015:7;111009:5;:14::i;:::-;110834:197;:::o;101560:792::-;-1:-1:-1;;;;;101642:16:0;;101661:1;101642:16;;;:7;:16;;;;;;101634:71;;;;-1:-1:-1;;;101634:71:0;;;;;;;:::i;:::-;101718:15;101736:26;101747:5;101754:7;101736:10;:26::i;:::-;101718:44;;101783:7;101794:1;101783:12;101775:68;;;;-1:-1:-1;;;101775:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;102098:26:0;;;;;;:19;:26;;;;;:37;;102128:7;;102098:26;:37;;102128:7;;102098:37;:::i;:::-;;;;-1:-1:-1;;;;;;;102171:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;:41;;;;;;102236:47;102186:5;102193:7;102205;102236:22;:47::i;:::-;102299:45;;;-1:-1:-1;;;;;4330:32:1;;;4312:51;;4394:2;4379:18;;4372:34;;;102299:45:0;;;;;4285:18:1;102299:45:0;;;;;;;101623:729;101560:792;;:::o;108938:993::-;107906:9;107919:10;107906:23;107898:66;;;;-1:-1:-1;;;107898:66:0;;;;;;;:::i;:::-;109116:11:::1;::::0;109175:18:::1;109160:11;::::0;::::1;;:33;::::0;::::1;;;;;;:::i;:::-;;109138:114;;;::::0;-1:-1:-1;;;109138:114:0;;14782:2:1;109138:114:0::1;::::0;::::1;14764:21:1::0;14821:2;14801:18;;;14794:30;14860:33;14840:18;;;14833:61;14911:18;;109138:114:0::1;14580:355:1::0;109138:114:0::1;109271:10;-1:-1:-1::0;;;;;109271:22:0;::::1;;109263:61;;;;-1:-1:-1::0;;;109263:61:0::1;;;;;;;:::i;:::-;109343:33;109357:10;109369:6;;109343:13;:33::i;:::-;109335:61;;;::::0;-1:-1:-1;;;109335:61:0;;15497:2:1;109335:61:0::1;::::0;::::1;15479:21:1::0;15536:2;15516:18;;;15509:30;-1:-1:-1;;;15555:18:1;;;15548:45;15610:18;;109335:61:0::1;15295:339:1::0;109335:61:0::1;109478:17;::::0;109451:10:::1;109429:33;::::0;;;:21:::1;:33;::::0;;;;;:45:::1;::::0;109465:9;;109429:45:::1;:::i;:::-;:66;;109407:144;;;;-1:-1:-1::0;;;109407:144:0::1;;;;;;;:::i;:::-;109613:12;;109600:9;109584:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:41;;109562:110;;;;-1:-1:-1::0;;;109562:110:0::1;;;;;;;:::i;:::-;109720:10;;109707:9;109691:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;109683:71;;;;-1:-1:-1::0;;;109683:71:0::1;;;;;;;:::i;:::-;109786:17;109794:9:::0;109786:5;:17:::1;:::i;:::-;109773:9;:30;;109765:60;;;;-1:-1:-1::0;;;109765:60:0::1;;;;;;;:::i;:::-;109858:10;109836:33;::::0;;;:21:::1;:33;::::0;;;;:46;;109873:9;;109836:33;:46:::1;::::0;109873:9;;109836:46:::1;:::i;:::-;::::0;;;-1:-1:-1;109893:30:0::1;::::0;-1:-1:-1;109903:8:0;109913:9;109893::::1;:30::i;:::-;109089:842;108938:993:::0;;;;:::o;112250:170::-;104571:13;:11;:13::i;:::-;112366:21:::1;:46:::0;112250:170::o;107992:938::-;107906:9;107919:10;107906:23;107898:66;;;;-1:-1:-1;;;107898:66:0;;;;;;;:::i;:::-;108163:11:::1;::::0;108208::::1;108193;::::0;::::1;;:26;::::0;::::1;;;;;;:::i;:::-;;108185:70;;;::::0;-1:-1:-1;;;108185:70:0;;14782:2:1;108185:70:0::1;::::0;::::1;14764:21:1::0;14821:2;14801:18;;;14794:30;14860:33;14840:18;;;14833:61;14911:18;;108185:70:0::1;14580:355:1::0;108185:70:0::1;108274:10;-1:-1:-1::0;;;;;108274:22:0;::::1;;108266:61;;;;-1:-1:-1::0;;;108266:61:0::1;;;;;;;:::i;:::-;108346:30;108357:10;108369:6;;108346:10;:30::i;:::-;108338:57;;;::::0;-1:-1:-1;;;108338:57:0;;17065:2:1;108338:57:0::1;::::0;::::1;17047:21:1::0;17104:2;17084:18;;;17077:30;-1:-1:-1;;;17123:18:1;;;17116:44;17177:18;;108338:57:0::1;16863:338:1::0;108338:57:0::1;108477:17;::::0;108450:10:::1;108428:33;::::0;;;:21:::1;:33;::::0;;;;;:45:::1;::::0;108464:9;;108428:45:::1;:::i;:::-;:66;;108406:144;;;;-1:-1:-1::0;;;108406:144:0::1;;;;;;;:::i;:::-;108612:12;;108599:9;108583:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:41;;108561:110;;;;-1:-1:-1::0;;;108561:110:0::1;;;;;;;:::i;:::-;108719:10;;108706:9;108690:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;108682:71;;;;-1:-1:-1::0;;;108682:71:0::1;;;;;;;:::i;:::-;108785:17;108793:9:::0;108785:5;:17:::1;:::i;:::-;108772:9;:30;;108764:60;;;;-1:-1:-1::0;;;108764:60:0::1;;;;;;;:::i;:::-;108857:10;108835:33;::::0;;;:21:::1;:33:::0;;;;;:46;;108872:9;;108835:33;:46:::1;::::0;108872:9;;108835:46:::1;:::i;115170:153::-:0;104571:13;:11;:13::i;:::-;115227:9:::1;115222:94;115246:10;;115242:1;:14;115222:94;;;115278:26;115294:8;115300:1;115294:5;:8::i;115278:26::-;115258:3:::0;::::1;::::0;::::1;:::i;:::-;;;;115222:94;;20085:144:::0;20149:7;20192:27;20211:7;20192:18;:27::i;106444:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15328:224::-;15392:7;-1:-1:-1;;;;;15416:19:0;;15412:60;;15444:28;;-1:-1:-1;;;15444:28:0;;;;;;;;;;;15412:60;-1:-1:-1;;;;;;15490:25:0;;;;;:18;:25;;;;;;9820:13;15490:54;;15328:224::o;105326:103::-;104571:13;:11;:13::i;:::-;105391:30:::1;105418:1;105391:18;:30::i;:::-;105326:103::o:0;111039:364::-;104571:13;:11;:13::i;:::-;111155:9:::1;:16;111141:3;:10;:30;111133:65;;;::::0;-1:-1:-1;;;111133:65:0;;17548:2:1;111133:65:0::1;::::0;::::1;17530:21:1::0;17587:2;17567:18;;;17560:30;-1:-1:-1;;;17606:18:1;;;17599:52;17668:18;;111133:65:0::1;17346:346:1::0;111133:65:0::1;111214:9;111209:187;111233:3;:10;111229:1;:14;111209:187;;;111305:10;;111289:9;111299:1;111289:12;;;;;;;;:::i;:::-;;;;;;;111273:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;111265:73;;;::::0;-1:-1:-1;;;111265:73:0;;18031:2:1;111265:73:0::1;::::0;::::1;18013:21:1::0;18070:2;18050:18;;;18043:30;-1:-1:-1;;;18089:18:1;;;18082:48;18147:18;;111265:73:0::1;17829:342:1::0;111265:73:0::1;111353:31;111363:3;111367:1;111363:6;;;;;;;;:::i;:::-;;;;;;;111371:9;111381:1;111371:12;;;;;;;;:::i;:::-;;;;;;;111353:9;:31::i;:::-;111245:3:::0;::::1;::::0;::::1;:::i;:::-;;;;111209:187;;112664:126:::0;104571:13;:11;:13::i;:::-;112748:15:::1;:34:::0;112664:126::o;99586:100::-;99637:7;99664;99672:5;99664:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;99664:14:0;;99586:100;-1:-1:-1;;99586:100:0:o;20465:104::-;20521:13;20554:7;20547:14;;;;;:::i;112798:100::-;104571:13;:11;:13::i;:::-;112872:7:::1;:18;112882:8:::0;112872:7;:18:::1;:::i;:::-;;112798:100:::0;:::o;22524:306::-;42700:10;-1:-1:-1;;;;;22623:31:0;;;22619:61;;22663:17;;-1:-1:-1;;;22663:17:0;;;;;;;;;;;22619:61;42700:10;22691:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22691:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22691:60:0;;;;;;;;;;22767:55;;885:41:1;;;22691:49:0;;42700:10;22767:55;;858:18:1;22767:55:0;;;;;;;22524:306;;:::o;114757:174::-;114906:17;;114851:7;;-1:-1:-1;;;;;114906:17:0;114884:18;114897:5;114884:10;:18;:::i;:::-;114883:40;;;;:::i;112111:131::-;104571:13;:11;:13::i;:::-;112196:17:::1;:38:::0;112111:131::o;99776:225::-;99834:7;99854:21;99902:15;98489:14;;;98416:95;99902:15;99878:39;;:21;:39;:::i;:::-;99854:63;;99935:58;99951:7;99960:13;99975:17;99984:7;-1:-1:-1;;;;;99165:18:0;99138:7;99165:18;;;:9;:18;;;;;;;99082:109;99975:17;99935:15;:58::i;:::-;99928:65;99776:225;-1:-1:-1;;;99776:225:0:o;114005:114::-;104571:13;:11;:13::i;:::-;114083:12:::1;:28:::0;114005:114::o;111732:112::-;104571:13;:11;:13::i;:::-;111808:12:::1;:28:::0;111732:112::o;109939:887::-;107906:9;107919:10;107906:23;107898:66;;;;-1:-1:-1;;;107898:66:0;;;;;;;:::i;:::-;110089:15:::1;::::0;110123:10:::1;-1:-1:-1::0;;;;;110123:22:0;::::1;;110115:61;;;;-1:-1:-1::0;;;110115:61:0::1;;;;;;;:::i;:::-;110210:15;110195:11;::::0;::::1;;:30;::::0;::::1;;;;;;:::i;:::-;;110187:71;;;::::0;-1:-1:-1;;;110187:71:0;;20936:2:1;110187:71:0::1;::::0;::::1;20918:21:1::0;20975:2;20955:18;;;20948:30;21014;20994:18;;;20987:58;21062:18;;110187:71:0::1;20734:352:1::0;110187:71:0::1;110320:16;;110307:9;110291:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:45;;110269:114;;;;-1:-1:-1::0;;;110269:114:0::1;;;;;;;:::i;:::-;110431:10;;110418:9;110402:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;110394:71;;;;-1:-1:-1::0;;;110394:71:0::1;;;;;;;:::i;:::-;110568:21;::::0;110524:10:::1;110498:37;::::0;;;:25:::1;:37;::::0;;;;;:49:::1;::::0;110538:9;;110498:49:::1;:::i;:::-;:91;;110476:169;;;;-1:-1:-1::0;;;110476:169:0::1;;;;;;;:::i;:::-;110677:17;110685:9:::0;110677:5;:17:::1;:::i;:::-;110664:9;:30;;110656:60;;;;-1:-1:-1::0;;;110656:60:0::1;;;;;;;:::i;:::-;110753:10;110727:37;::::0;;;:25:::1;:37;::::0;;;;:50;;110768:9;;110727:37;:50:::1;::::0;110768:9;;110727:50:::1;:::i;:::-;::::0;;;-1:-1:-1;110788:30:0::1;::::0;-1:-1:-1;110798:8:0;110808:9;110788::::1;:30::i;113336:114::-:0;104571:13;:11;:13::i;:::-;113414:12:::1;:28:::0;113336:114::o;111596:128::-;104571:13;:11;:13::i;:::-;111680:16:::1;:36:::0;111596:128::o;23398:399::-;23565:31;23578:4;23584:2;23588:7;23565:12;:31::i;:::-;-1:-1:-1;;;;;23611:14:0;;;:19;23607:183;;23650:56;23681:4;23687:2;23691:7;23700:5;23650:30;:56::i;:::-;23645:145;;23734:40;;-1:-1:-1;;;23734:40:0;;;;;;;;;;;23645:145;23398:399;;;;:::o;111972:131::-;104571:13;:11;:13::i;:::-;112057:17:::1;:38:::0;111972:131::o;100161:260::-;-1:-1:-1;;;;;98753:26:0;;100233:7;98753:26;;;:19;:26;;;;;;100233:7;;100277:30;;-1:-1:-1;;;100277:30:0;;100301:4;100277:30;;;2600:51:1;-1:-1:-1;;;;;100277:15:0;;;;;2573:18:1;;100277:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;99457:21:0;;;99430:7;99457:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;100253:77;;-1:-1:-1;100348:65:0;;100364:7;;100253:77;;99935:15;:58::i;100348:65::-;100341:72;100161:260;-1:-1:-1;;;;100161:260:0:o;111413:175::-;104571:13;:11;:13::i;:::-;111507:10:::1;;111493:11;:24;111485:60;;;::::0;-1:-1:-1;;;111485:60:0;;21482:2:1;111485:60:0::1;::::0;::::1;21464:21:1::0;21521:2;21501:18;;;21494:30;21560:25;21540:18;;;21533:53;21603:18;;111485:60:0::1;21280:347:1::0;111485:60:0::1;111556:10;:24:::0;111413:175::o;113009:302::-;113128:13;113167:17;113175:8;113167:7;:17::i;:::-;113159:61;;;;-1:-1:-1;;;113159:61:0;;21834:2:1;113159:61:0;;;21816:21:1;21873:2;21853:18;;;21846:30;21912:33;21892:18;;;21885:61;21963:18;;113159:61:0;21632:355:1;113159:61:0;113264:7;113273:19;:8;:17;:19::i;:::-;113247:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;113233:70;;113009:302;;;:::o;112546:110::-;104571:13;:11;:13::i;:::-;112622:11:::1;:26:::0;112546:110::o;105584:201::-;104571:13;:11;:13::i;:::-;-1:-1:-1;;;;;105673:22:0;::::1;105665:73;;;::::0;-1:-1:-1;;;105665:73:0;;23386:2:1;105665:73:0::1;::::0;::::1;23368:21:1::0;23425:2;23405:18;;;23398:30;23464:34;23444:18;;;23437:62;-1:-1:-1;;;23515:18:1;;;23508:36;23561:19;;105665:73:0::1;23184:402:1::0;105665:73:0::1;105749:28;105768:8;105749:18;:28::i;112906:95::-:0;104571:13;:11;:13::i;:::-;112987:5:::1;112982:11;;;;;;;;:::i;:::-;112968;:25:::0;;-1:-1:-1;;112968:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;112906:95:::0;:::o;104850:132::-;104731:7;104758:6;-1:-1:-1;;;;;104758:6:0;42700:10;104914:23;104906:68;;;;-1:-1:-1;;;104906:68:0;;23793:2:1;104906:68:0;;;23775:21:1;;;23812:18;;;23805:30;23871:34;23851:18;;;23844:62;23923:18;;104906:68:0;23591:356:1;24052:273:0;24109:4;24165:7;13247:1;24146:26;;:66;;;;;24199:13;;24189:7;:23;24146:66;:152;;;;-1:-1:-1;;24250:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24250:43:0;:48;;24052:273::o;64844:317::-;64959:6;64934:21;:31;;64926:73;;;;-1:-1:-1;;;64926:73:0;;24154:2:1;64926:73:0;;;24136:21:1;24193:2;24173:18;;;24166:30;24232:31;24212:18;;;24205:59;24281:18;;64926:73:0;23952:353:1;64926:73:0;65013:12;65031:9;-1:-1:-1;;;;;65031:14:0;65053:6;65031:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65012:52;;;65083:7;65075:78;;;;-1:-1:-1;;;65075:78:0;;24722:2:1;65075:78:0;;;24704:21:1;24761:2;24741:18;;;24734:30;24800:34;24780:18;;;24773:62;24871:28;24851:18;;;24844:56;24917:19;;65075:78:0;24520:422:1;17002:1129:0;17069:7;17104;;13247:1;17153:23;17149:915;;17206:13;;17199:4;:20;17195:869;;;17244:14;17261:23;;;:17;:23;;;;;;;-1:-1:-1;;;17350:23:0;;:28;;17346:699;;17869:113;17876:6;17886:1;17876:11;17869:113;;-1:-1:-1;;;17947:6:0;17929:25;;;;:17;:25;;;;;;17869:113;;17346:699;17221:843;17195:869;18092:31;;-1:-1:-1;;;18092:31:0;;;;;;;;;;;34395:89;34455:21;34461:7;34470:5;34455;:21::i;77859:177::-;77969:58;;;-1:-1:-1;;;;;4330:32:1;;77969:58:0;;;4312:51:1;4379:18;;;;4372:34;;;77969:58:0;;;;;;;;;;4285:18:1;;;;77969:58:0;;;;;;;;-1:-1:-1;;;;;77969:58:0;-1:-1:-1;;;77969:58:0;;;77942:86;;77962:5;;77942:19;:86::i;113458:188::-;113576:4;113605:33;113615:14;113620:8;113615:4;:14::i;:::-;113631:6;;113605:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;113605:9:0;;-1:-1:-1;;;113605:33:0:i;24409:104::-;24478:27;24488:2;24492:8;24478:27;;;;;;;;;;;;:9;:27::i;114127:185::-;114242:4;114271:33;114281:14;114286:8;114281:4;:14::i;:::-;114297:6;;114271:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;114271:9:0;;-1:-1:-1;;;114271:33:0:i;105945:191::-;106019:16;106038:6;;-1:-1:-1;;;;;106055:17:0;;;-1:-1:-1;;;;;;106055:17:0;;;;;;106088:40;;106038:6;;;;;;;106088:40;;106019:16;106088:40;106008:128;105945:191;:::o;102530:248::-;102740:12;;-1:-1:-1;;;;;102720:16:0;;102676:7;102720:16;;;:7;:16;;;;;;102676:7;;102755:15;;102704:32;;:13;:32;:::i;:::-;102703:49;;;;:::i;:::-;:67;;;;:::i;38268:716::-;38452:88;;-1:-1:-1;;;38452:88:0;;38431:4;;-1:-1:-1;;;;;38452:45:0;;;;;:88;;42700:10;;38519:4;;38525:7;;38534:5;;38452:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38452:88:0;;;;;;;;-1:-1:-1;;38452:88:0;;;;;;;;;;;;:::i;:::-;;;38448:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38735:6;:13;38752:1;38735:18;38731:235;;38781:40;;-1:-1:-1;;;38781:40:0;;;;;;;;;;;38731:235;38924:6;38918:13;38909:6;38905:2;38901:15;38894:38;38448:529;-1:-1:-1;;;;;;38611:64:0;-1:-1:-1;;;38611:64:0;;-1:-1:-1;38268:716:0;;;;;;:::o;59709:::-;59765:13;59816:14;59833:17;59844:5;59833:10;:17::i;:::-;59853:1;59833:21;59816:38;;59869:20;59903:6;59892:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59892:18:0;-1:-1:-1;59869:41:0;-1:-1:-1;60034:28:0;;;60050:2;60034:28;60091:288;-1:-1:-1;;60123:5:0;-1:-1:-1;;;60260:2:0;60249:14;;60244:30;60123:5;60231:44;60321:2;60312:11;;;-1:-1:-1;60342:21:0;60091:288;60342:21;-1:-1:-1;60400:6:0;59709:716;-1:-1:-1;;;59709:716:0:o;34713:3063::-;34793:27;34823;34842:7;34823:18;:27::i;:::-;34793:57;-1:-1:-1;34793:57:0;34863:12;;34985:28;35005:7;29948:27;30247:21;;;30074:15;30289:4;30282:36;30371:4;30355:21;;30461:26;;30355:21;;29853:652;34985:28;34928:85;;;;35030:13;35026:310;;;35151:62;35170:15;35187:4;42700:10;35193:19;42613:105;35151:62;35146:178;;35237:43;35254:4;42700:10;22907:164;:::i;35237:43::-;35232:92;;35289:35;;-1:-1:-1;;;35289:35:0;;;;;;;;;;;35232:92;35492:15;35489:160;;;35632:1;35611:19;35604:30;35489:160;-1:-1:-1;;;;;36250:24:0;;;;;;:18;:24;;;;;:59;;36278:31;36250:59;;;19984:11;19960:22;19956:40;19943:62;-1:-1:-1;;;19943:62:0;36547:26;;;;:17;:26;;;;;:203;;;;-1:-1:-1;;;36870:46:0;;:51;;36866:626;;36974:1;36964:11;;36942:19;37097:30;;;:17;:30;;;;;;:35;;37093:384;;37235:13;;37220:11;:28;37216:242;;37382:30;;;;:17;:30;;;;;:52;;;37216:242;36923:569;36866:626;37520:35;;37547:7;;37543:1;;-1:-1:-1;;;;;37520:35:0;;;;;37543:1;;37520:35;-1:-1:-1;;37743:12:0;:14;;;;;;-1:-1:-1;;;;34713:3063:0:o;82182:649::-;82606:23;82632:69;82660:4;82632:69;;;;;;;;;;;;;;;;;82640:5;-1:-1:-1;;;;;82632:27:0;;;:69;;;;;:::i;:::-;82606:95;;82720:10;:17;82741:1;82720:22;:56;;;;82757:10;82746:30;;;;;;;;;;;;:::i;:::-;82712:111;;;;-1:-1:-1;;;82712:111:0;;26280:2:1;82712:111:0;;;26262:21:1;26319:2;26299:18;;;26292:30;26358:34;26338:18;;;26331:62;-1:-1:-1;;;26409:18:1;;;26402:40;26459:19;;82712:111:0;26078:406:1;113654:127:0;113746:26;;-1:-1:-1;;26638:2:1;26634:15;;;26630:53;113746:26:0;;;26618:66:1;113709:7:0;;26700:12:1;;113746:26:0;;;;;;;;;;;;113736:37;;;;;;113729:44;;113654:127;;;:::o;113789:193::-;113898:4;113927:47;113946:6;113954:12;;113968:5;113927:18;:47::i;24929:681::-;25052:19;25058:2;25062:8;25052:5;:19::i;:::-;-1:-1:-1;;;;;25113:14:0;;;:19;25109:483;;25167:13;;25215:14;;;25248:233;25279:62;25318:1;25322:2;25326:7;;;;;;25335:5;25279:30;:62::i;:::-;25274:167;;25377:40;;-1:-1:-1;;;25377:40:0;;;;;;;;;;;25274:167;25476:3;25468:5;:11;25248:233;;25563:3;25546:13;;:20;25542:34;;25568:8;;;114320:193;114429:4;114458:47;114477:6;114485:12;;114499:5;114458:18;:47::i;56543:948::-;56596:7;;-1:-1:-1;;;56674:17:0;;56670:106;;-1:-1:-1;;;56712:17:0;;;-1:-1:-1;56758:2:0;56748:12;56670:106;56803:8;56794:5;:17;56790:106;;56841:8;56832:17;;;-1:-1:-1;56878:2:0;56868:12;56790:106;56923:8;56914:5;:17;56910:106;;56961:8;56952:17;;;-1:-1:-1;56998:2:0;56988:12;56910:106;57043:7;57034:5;:16;57030:103;;57080:7;57071:16;;;-1:-1:-1;57116:1:0;57106:11;57030:103;57160:7;57151:5;:16;57147:103;;57197:7;57188:16;;;-1:-1:-1;57233:1:0;57223:11;57147:103;57277:7;57268:5;:16;57264:103;;57314:7;57305:16;;;-1:-1:-1;57350:1:0;57340:11;57264:103;57394:7;57385:5;:16;57381:68;;57432:1;57422:11;57477:6;56543:948;-1:-1:-1;;56543:948:0:o;66340:229::-;66477:12;66509:52;66531:6;66539:4;66545:1;66548:12;66509:21;:52::i;85173:156::-;85264:4;85317;85288:25;85301:5;85308:4;85288:12;:25::i;:::-;:33;;85173:156;-1:-1:-1;;;;85173:156:0:o;25883:1529::-;25971:13;;-1:-1:-1;;;;;25999:16:0;;25995:48;;26024:19;;-1:-1:-1;;;26024:19:0;;;;;;;;;;;25995:48;26058:8;26070:1;26058:13;26054:44;;26080:18;;-1:-1:-1;;;26080:18:0;;;;;;;;;;;26054:44;-1:-1:-1;;;;;26586:22:0;;;;;;:18;:22;;9957:2;26586:22;;:70;;26624:31;26612:44;;26586:70;;;19984:11;19960:22;19956:40;-1:-1:-1;21694:15:0;;21669:23;21665:45;19953:51;19943:62;26899:31;;;;:17;:31;;;;;:173;26917:12;27148:23;;;27186:101;27213:35;;27238:9;;;;;-1:-1:-1;;;;;27213:35:0;;;27230:1;;27213:35;;27230:1;;27213:35;27282:3;27272:7;:13;27186:101;;27303:13;:19;-1:-1:-1;23142:185:0;;;:::o;67426:455::-;67596:12;67654:5;67629:21;:30;;67621:81;;;;-1:-1:-1;;;67621:81:0;;26925:2:1;67621:81:0;;;26907:21:1;26964:2;26944:18;;;26937:30;27003:34;26983:18;;;26976:62;-1:-1:-1;;;27054:18:1;;;27047:36;27100:19;;67621:81:0;26723:402:1;67621:81:0;67714:12;67728:23;67755:6;-1:-1:-1;;;;;67755:11:0;67774:5;67781:4;67755:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67713:73;;;;67804:69;67831:6;67839:7;67848:10;67860:12;67804:26;:69::i;:::-;67797:76;67426:455;-1:-1:-1;;;;;;;67426:455:0:o;85972:296::-;86055:7;86098:4;86055:7;86113:118;86137:5;:12;86133:1;:16;86113:118;;;86186:33;86196:12;86210:5;86216:1;86210:8;;;;;;;;:::i;:::-;;;;;;;86186:9;:33::i;:::-;86171:48;-1:-1:-1;86151:3:0;;;;:::i;:::-;;;;86113:118;;;-1:-1:-1;86248:12:0;85972:296;-1:-1:-1;;;85972:296:0:o;69999:644::-;70184:12;70213:7;70209:427;;;70241:10;:17;70262:1;70241:22;70237:290;;-1:-1:-1;;;;;63880:19:0;;;70451:60;;;;-1:-1:-1;;;70451:60:0;;27624:2:1;70451:60:0;;;27606:21:1;27663:2;27643:18;;;27636:30;27702:31;27682:18;;;27675:59;27751:18;;70451:60:0;27422:353:1;70451:60:0;-1:-1:-1;70548:10:0;70541:17;;70209:427;70591:33;70599:10;70611:12;70591:7;:33::i;93410:149::-;93473:7;93504:1;93500;:5;:51;;93635:13;93729:15;;;93765:4;93758:15;;;93812:4;93796:21;;93500:51;;;93635:13;93729:15;;;93765:4;93758:15;;;93812:4;93796:21;;93508:20;93567:268;71185:552;71346:17;;:21;71342:388;;71578:10;71572:17;71635:15;71622:10;71618:2;71614:19;71607:44;71342:388;71705:12;71698:20;;-1:-1:-1;;;71698:20:0;;;;;;;;:::i;359:131:1:-;-1:-1:-1;;;;;;433:32:1;;423:43;;413:71;;480:1;477;470:12;495:245;553:6;606:2;594:9;585:7;581:23;577:32;574:52;;;622:1;619;612:12;574:52;661:9;648:23;680:30;704:5;680:30;:::i;937:131::-;-1:-1:-1;;;;;1012:31:1;;1002:42;;992:70;;1058:1;1055;1048:12;1073:435;1140:6;1148;1201:2;1189:9;1180:7;1176:23;1172:32;1169:52;;;1217:1;1214;1207:12;1169:52;1256:9;1243:23;1275:31;1300:5;1275:31;:::i;:::-;1325:5;-1:-1:-1;1382:2:1;1367:18;;1354:32;-1:-1:-1;;;;;1417:40:1;;1405:53;;1395:81;;1472:1;1469;1462:12;1395:81;1495:7;1485:17;;;1073:435;;;;;:::o;1513:250::-;1598:1;1608:113;1622:6;1619:1;1616:13;1608:113;;;1698:11;;;1692:18;1679:11;;;1672:39;1644:2;1637:10;1608:113;;;-1:-1:-1;;1755:1:1;1737:16;;1730:27;1513:250::o;1768:271::-;1810:3;1848:5;1842:12;1875:6;1870:3;1863:19;1891:76;1960:6;1953:4;1948:3;1944:14;1937:4;1930:5;1926:16;1891:76;:::i;:::-;2021:2;2000:15;-1:-1:-1;;1996:29:1;1987:39;;;;2028:4;1983:50;;1768:271;-1:-1:-1;;1768:271:1:o;2044:220::-;2193:2;2182:9;2175:21;2156:4;2213:45;2254:2;2243:9;2239:18;2231:6;2213:45;:::i;2269:180::-;2328:6;2381:2;2369:9;2360:7;2356:23;2352:32;2349:52;;;2397:1;2394;2387:12;2349:52;-1:-1:-1;2420:23:1;;2269:180;-1:-1:-1;2269:180:1:o;2844:315::-;2912:6;2920;2973:2;2961:9;2952:7;2948:23;2944:32;2941:52;;;2989:1;2986;2979:12;2941:52;3028:9;3015:23;3047:31;3072:5;3047:31;:::i;:::-;3097:5;3149:2;3134:18;;;;3121:32;;-1:-1:-1;;;2844:315:1:o;3164:255::-;3231:6;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3339:9;3326:23;3358:31;3383:5;3358:31;:::i;3424:456::-;3501:6;3509;3517;3570:2;3558:9;3549:7;3545:23;3541:32;3538:52;;;3586:1;3583;3576:12;3538:52;3625:9;3612:23;3644:31;3669:5;3644:31;:::i;:::-;3694:5;-1:-1:-1;3751:2:1;3736:18;;3723:32;3764:33;3723:32;3764:33;:::i;:::-;3424:456;;3816:7;;-1:-1:-1;;;3870:2:1;3855:18;;;;3842:32;;3424:456::o;3885:248::-;3953:6;3961;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;-1:-1:-1;;4053:23:1;;;4123:2;4108:18;;;4095:32;;-1:-1:-1;3885:248:1:o;4417:403::-;4500:6;4508;4561:2;4549:9;4540:7;4536:23;4532:32;4529:52;;;4577:1;4574;4567:12;4529:52;4616:9;4603:23;4635:31;4660:5;4635:31;:::i;:::-;4685:5;-1:-1:-1;4742:2:1;4727:18;;4714:32;4755:33;4714:32;4755:33;:::i;4825:818::-;4929:6;4937;4945;4953;5006:2;4994:9;4985:7;4981:23;4977:32;4974:52;;;5022:1;5019;5012:12;4974:52;5061:9;5048:23;5080:31;5105:5;5080:31;:::i;:::-;5130:5;-1:-1:-1;5182:2:1;5167:18;;5154:32;;-1:-1:-1;5237:2:1;5222:18;;5209:32;5260:18;5290:14;;;5287:34;;;5317:1;5314;5307:12;5287:34;5355:6;5344:9;5340:22;5330:32;;5400:7;5393:4;5389:2;5385:13;5381:27;5371:55;;5422:1;5419;5412:12;5371:55;5462:2;5449:16;5488:2;5480:6;5477:14;5474:34;;;5504:1;5501;5494:12;5474:34;5557:7;5552:2;5542:6;5539:1;5535:14;5531:2;5527:23;5523:32;5520:45;5517:65;;;5578:1;5575;5568:12;5517:65;4825:818;;;;-1:-1:-1;;5609:2:1;5601:11;;-1:-1:-1;;;4825:818:1:o;5900:127::-;5961:10;5956:3;5952:20;5949:1;5942:31;5992:4;5989:1;5982:15;6016:4;6013:1;6006:15;6032:275;6103:2;6097:9;6168:2;6149:13;;-1:-1:-1;;6145:27:1;6133:40;;6203:18;6188:34;;6224:22;;;6185:62;6182:88;;;6250:18;;:::i;:::-;6286:2;6279:22;6032:275;;-1:-1:-1;6032:275:1:o;6312:183::-;6372:4;6405:18;6397:6;6394:30;6391:56;;;6427:18;;:::i;:::-;-1:-1:-1;6472:1:1;6468:14;6484:4;6464:25;;6312:183::o;6500:662::-;6554:5;6607:3;6600:4;6592:6;6588:17;6584:27;6574:55;;6625:1;6622;6615:12;6574:55;6661:6;6648:20;6687:4;6711:60;6727:43;6767:2;6727:43;:::i;:::-;6711:60;:::i;:::-;6805:15;;;6891:1;6887:10;;;;6875:23;;6871:32;;;6836:12;;;;6915:15;;;6912:35;;;6943:1;6940;6933:12;6912:35;6979:2;6971:6;6967:15;6991:142;7007:6;7002:3;6999:15;6991:142;;;7073:17;;7061:30;;7111:12;;;;7024;;6991:142;;;-1:-1:-1;7151:5:1;6500:662;-1:-1:-1;;;;;;6500:662:1:o;7167:1215::-;7285:6;7293;7346:2;7334:9;7325:7;7321:23;7317:32;7314:52;;;7362:1;7359;7352:12;7314:52;7402:9;7389:23;7431:18;7472:2;7464:6;7461:14;7458:34;;;7488:1;7485;7478:12;7458:34;7526:6;7515:9;7511:22;7501:32;;7571:7;7564:4;7560:2;7556:13;7552:27;7542:55;;7593:1;7590;7583:12;7542:55;7629:2;7616:16;7651:4;7675:60;7691:43;7731:2;7691:43;:::i;7675:60::-;7769:15;;;7851:1;7847:10;;;;7839:19;;7835:28;;;7800:12;;;;7875:19;;;7872:39;;;7907:1;7904;7897:12;7872:39;7931:11;;;;7951:217;7967:6;7962:3;7959:15;7951:217;;;8047:3;8034:17;8064:31;8089:5;8064:31;:::i;:::-;8108:18;;7984:12;;;;8146;;;;7951:217;;;8187:5;-1:-1:-1;;8230:18:1;;8217:32;;-1:-1:-1;;8261:16:1;;;8258:36;;;8290:1;8287;8280:12;8258:36;;8313:63;8368:7;8357:8;8346:9;8342:24;8313:63;:::i;:::-;8303:73;;;7167:1215;;;;;:::o;8387:407::-;8452:5;8486:18;8478:6;8475:30;8472:56;;;8508:18;;:::i;:::-;8546:57;8591:2;8570:15;;-1:-1:-1;;8566:29:1;8597:4;8562:40;8546:57;:::i;:::-;8537:66;;8626:6;8619:5;8612:21;8666:3;8657:6;8652:3;8648:16;8645:25;8642:45;;;8683:1;8680;8673:12;8642:45;8732:6;8727:3;8720:4;8713:5;8709:16;8696:43;8786:1;8779:4;8770:6;8763:5;8759:18;8755:29;8748:40;8387:407;;;;;:::o;8799:451::-;8868:6;8921:2;8909:9;8900:7;8896:23;8892:32;8889:52;;;8937:1;8934;8927:12;8889:52;8977:9;8964:23;9010:18;9002:6;8999:30;8996:50;;;9042:1;9039;9032:12;8996:50;9065:22;;9118:4;9110:13;;9106:27;-1:-1:-1;9096:55:1;;9147:1;9144;9137:12;9096:55;9170:74;9236:7;9231:2;9218:16;9213:2;9209;9205:11;9170:74;:::i;9255:118::-;9341:5;9334:13;9327:21;9320:5;9317:32;9307:60;;9363:1;9360;9353:12;9378:382;9443:6;9451;9504:2;9492:9;9483:7;9479:23;9475:32;9472:52;;;9520:1;9517;9510:12;9472:52;9559:9;9546:23;9578:31;9603:5;9578:31;:::i;:::-;9628:5;-1:-1:-1;9685:2:1;9670:18;;9657:32;9698:30;9657:32;9698:30;:::i;10132:795::-;10227:6;10235;10243;10251;10304:3;10292:9;10283:7;10279:23;10275:33;10272:53;;;10321:1;10318;10311:12;10272:53;10360:9;10347:23;10379:31;10404:5;10379:31;:::i;:::-;10429:5;-1:-1:-1;10486:2:1;10471:18;;10458:32;10499:33;10458:32;10499:33;:::i;:::-;10551:7;-1:-1:-1;10605:2:1;10590:18;;10577:32;;-1:-1:-1;10660:2:1;10645:18;;10632:32;10687:18;10676:30;;10673:50;;;10719:1;10716;10709:12;10673:50;10742:22;;10795:4;10787:13;;10783:27;-1:-1:-1;10773:55:1;;10824:1;10821;10814:12;10773:55;10847:74;10913:7;10908:2;10895:16;10890:2;10886;10882:11;10847:74;:::i;:::-;10837:84;;;10132:795;;;;;;;:::o;10932:127::-;10993:10;10988:3;10984:20;10981:1;10974:31;11024:4;11021:1;11014:15;11048:4;11045:1;11038:15;11064:337;11205:2;11190:18;;11238:1;11227:13;;11217:144;;11283:10;11278:3;11274:20;11271:1;11264:31;11318:4;11315:1;11308:15;11346:4;11343:1;11336:15;11217:144;11370:25;;;11064:337;:::o;12066:380::-;12145:1;12141:12;;;;12188;;;12209:61;;12263:4;12255:6;12251:17;12241:27;;12209:61;12316:2;12308:6;12305:14;12285:18;12282:38;12279:161;;12362:10;12357:3;12353:20;12350:1;12343:31;12397:4;12394:1;12387:15;12425:4;12422:1;12415:15;12279:161;;12066:380;;;:::o;12451:402::-;12653:2;12635:21;;;12692:2;12672:18;;;12665:30;12731:34;12726:2;12711:18;;12704:62;-1:-1:-1;;;12797:2:1;12782:18;;12775:36;12843:3;12828:19;;12451:402::o;12858:407::-;13060:2;13042:21;;;13099:2;13079:18;;;13072:30;13138:34;13133:2;13118:18;;13111:62;-1:-1:-1;;;13204:2:1;13189:18;;13182:41;13255:3;13240:19;;12858:407::o;13270:127::-;13331:10;13326:3;13322:20;13319:1;13312:31;13362:4;13359:1;13352:15;13386:4;13383:1;13376:15;13402:125;13467:9;;;13488:10;;;13485:36;;;13501:18;;:::i;14221:354::-;14423:2;14405:21;;;14462:2;14442:18;;;14435:30;14501:32;14496:2;14481:18;;14474:60;14566:2;14551:18;;14221:354::o;14940:350::-;15142:2;15124:21;;;15181:2;15161:18;;;15154:30;15220:28;15215:2;15200:18;;15193:56;15281:2;15266:18;;14940:350::o;15639:352::-;15841:2;15823:21;;;15880:2;15860:18;;;15853:30;15919;15914:2;15899:18;;15892:58;15982:2;15967:18;;15639:352::o;15996:343::-;16198:2;16180:21;;;16237:2;16217:18;;;16210:30;-1:-1:-1;;;16271:2:1;16256:18;;16249:49;16330:2;16315:18;;15996:343::o;16344:168::-;16417:9;;;16448;;16465:15;;;16459:22;;16445:37;16435:71;;16486:18;;:::i;16517:341::-;16719:2;16701:21;;;16758:2;16738:18;;;16731:30;-1:-1:-1;;;16792:2:1;16777:18;;16770:47;16849:2;16834:18;;16517:341::o;17206:135::-;17245:3;17266:17;;;17263:43;;17286:18;;:::i;:::-;-1:-1:-1;17333:1:1;17322:13;;17206:135::o;17697:127::-;17758:10;17753:3;17749:20;17746:1;17739:31;17789:4;17786:1;17779:15;17813:4;17810:1;17803:15;18302:545;18404:2;18399:3;18396:11;18393:448;;;18440:1;18465:5;18461:2;18454:17;18510:4;18506:2;18496:19;18580:2;18568:10;18564:19;18561:1;18557:27;18551:4;18547:38;18616:4;18604:10;18601:20;18598:47;;;-1:-1:-1;18639:4:1;18598:47;18694:2;18689:3;18685:12;18682:1;18678:20;18672:4;18668:31;18658:41;;18749:82;18767:2;18760:5;18757:13;18749:82;;;18812:17;;;18793:1;18782:13;18749:82;;19023:1352;19149:3;19143:10;19176:18;19168:6;19165:30;19162:56;;;19198:18;;:::i;:::-;19227:97;19317:6;19277:38;19309:4;19303:11;19277:38;:::i;:::-;19271:4;19227:97;:::i;:::-;19379:4;;19443:2;19432:14;;19460:1;19455:663;;;;20162:1;20179:6;20176:89;;;-1:-1:-1;20231:19:1;;;20225:26;20176:89;-1:-1:-1;;18980:1:1;18976:11;;;18972:24;18968:29;18958:40;19004:1;19000:11;;;18955:57;20278:81;;19425:944;;19455:663;18249:1;18242:14;;;18286:4;18273:18;;-1:-1:-1;;19491:20:1;;;19609:236;19623:7;19620:1;19617:14;19609:236;;;19712:19;;;19706:26;19691:42;;19804:27;;;;19772:1;19760:14;;;;19639:19;;19609:236;;;19613:3;19873:6;19864:7;19861:19;19858:201;;;19934:19;;;19928:26;-1:-1:-1;;20017:1:1;20013:14;;;20029:3;20009:24;20005:37;20001:42;19986:58;19971:74;;19858:201;-1:-1:-1;;;;;20105:1:1;20089:14;;;20085:22;20072:36;;-1:-1:-1;19023:1352:1:o;20512:217::-;20552:1;20578;20568:132;;20622:10;20617:3;20613:20;20610:1;20603:31;20657:4;20654:1;20647:15;20685:4;20682:1;20675:15;20568:132;-1:-1:-1;20714:9:1;;20512:217::o;21091:184::-;21161:6;21214:2;21202:9;21193:7;21189:23;21185:32;21182:52;;;21230:1;21227;21220:12;21182:52;-1:-1:-1;21253:16:1;;21091:184;-1:-1:-1;21091:184:1:o;21992:1187::-;22269:3;22298:1;22331:6;22325:13;22361:36;22387:9;22361:36;:::i;:::-;22416:1;22433:18;;;22460:133;;;;22607:1;22602:356;;;;22426:532;;22460:133;-1:-1:-1;;22493:24:1;;22481:37;;22566:14;;22559:22;22547:35;;22538:45;;;-1:-1:-1;22460:133:1;;22602:356;22633:6;22630:1;22623:17;22663:4;22708:2;22705:1;22695:16;22733:1;22747:165;22761:6;22758:1;22755:13;22747:165;;;22839:14;;22826:11;;;22819:35;22882:16;;;;22776:10;;22747:165;;;22751:3;;;22941:6;22936:3;22932:16;22925:23;;22426:532;;;;;22989:6;22983:13;23005:68;23064:8;23059:3;23052:4;23044:6;23040:17;23005:68;:::i;:::-;-1:-1:-1;;;23095:18:1;;23122:22;;;23171:1;23160:13;;21992:1187;-1:-1:-1;;;;21992:1187:1:o;24947:128::-;25014:9;;;25035:11;;;25032:37;;;25049:18;;:::i;25080:489::-;-1:-1:-1;;;;;25349:15:1;;;25331:34;;25401:15;;25396:2;25381:18;;25374:43;25448:2;25433:18;;25426:34;;;25496:3;25491:2;25476:18;;25469:31;;;25274:4;;25517:46;;25543:19;;25535:6;25517:46;:::i;:::-;25509:54;25080:489;-1:-1:-1;;;;;;25080:489:1:o;25574:249::-;25643:6;25696:2;25684:9;25675:7;25671:23;25667:32;25664:52;;;25712:1;25709;25702:12;25664:52;25744:9;25738:16;25763:30;25787:5;25763:30;:::i;25828:245::-;25895:6;25948:2;25936:9;25927:7;25923:23;25919:32;25916:52;;;25964:1;25961;25954:12;25916:52;25996:9;25990:16;26015:28;26037:5;26015:28;:::i;27130:287::-;27259:3;27297:6;27291:13;27313:66;27372:6;27367:3;27360:4;27352:6;27348:17;27313:66;:::i;:::-;27395:16;;;;;27130:287;-1:-1:-1;;27130:287:1:o

Swarm Source

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