ETH Price: $2,958.97 (-5.18%)
Gas: 7 Gwei

Token

Tales Of Aleko (TOA)
 

Overview

Max Total Supply

1,000 TOA

Holders

421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TOA
0xdcfa3a7857af364b05c7398b4b9a7f9270c9e841
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:
TOAcontract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-31
*/

// File: testnet_TOA/talesofaleko/lib/openzeppelin-contracts/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: testnet_TOA/talesofaleko/lib/openzeppelin-contracts/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: testnet_TOA/talesofaleko/lib/openzeppelin-contracts/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: testnet_TOA/talesofaleko/lib/openzeppelin-contracts/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: testnet_TOA/talesofaleko/lib/ERC721A/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: testnet_TOA/talesofaleko/lib/ERC721A/contracts/extensions/IERC721ABurnable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

// File: testnet_TOA/talesofaleko/lib/ERC721A/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: testnet_TOA/talesofaleko/lib/ERC721A/contracts/extensions/ERC721ABurnable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

// File: testnet_TOA/talesofaleko/src/TOAcontract.sol


pragma solidity ^0.8.0;







/**

    Tales Of Aleko contract

 */

error SaleClosed();
error WhitelistSaleSoldOut();
error OGSaleSoldOut();
error PublicSaleSoldOut();
error ExceedsWLUserAllowance();
error ExceedsOGUserAllowance();
error ExceedsPubUserAllowance();
error InsufficientEth();
error InvalidWallet();
error AmountError();
error OutOfStock();
error ExceedsMaxSupply();
error ExceedsAllocationMax();
error NoBalance();
error ProvenanceLocked();
error WhitelistSaleClosed();
error PublicSaleClosed();
error OGSaleClosed();
error ReallocationError();


contract TOAcontract is 
    ERC721A,
    ReentrancyGuard,
    Ownable{

        uint256 public constant TOA_MAX_SUPPLY = 1000;
        
        uint256 public TOA_TEAM_ALLOCATION = 50;
        uint256 public TOA_MINT_ALLOCATION = 1;

        address private _ownerAddress;

        uint64 public ogAmountMinted;
        uint64 public wlAmountMinted;

        bool public saleIsLive = false;
        bool public wlLive = false;
        bool public ogLive = false;

        bytes32 public wl_root = 0xc12e87a3387c3a490e80be2905b2a54e6f720ea93a8cc5e0b7a11fb13938286a;
        bytes32 public og_root = 0x07dfbf5e6542ddc13a22e8874f2b419b4c22f18846b227f9d39519bea1fa85b9;

        uint64 public teamAmountMinted;


        // Metadata URI
        string public baseTokenURI = "https://talesofaleko.infura-ipfs.io/ipfs/QmPHaDjdBxYq1gZbMmPd5BR1Ax2N46YVt2ju4AtEMkgCju/";

    constructor()
        ERC721A("Tales Of Aleko","TOA")
        ReentrancyGuard(){
            _ownerAddress = msg.sender;
        }

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

    modifier liveSale {
        if(!saleIsLive) revert SaleClosed();
        _;
    }

    function setRootWl(bytes32 _wl_root) public onlyOwner {
        wl_root = _wl_root;
    }

    function setRootOg(bytes32 _og_root) public onlyOwner {
        og_root = _og_root;
    }

    function setBaseURI(string calldata _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

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

    function teamMint(address user, uint64 tokenQuantity) external onlyOwner {
        if(_totalMinted() + tokenQuantity > TOA_MAX_SUPPLY) revert ExceedsMaxSupply();
        if(teamAmountMinted + tokenQuantity > TOA_TEAM_ALLOCATION) revert ExceedsAllocationMax(); 

        _safeMint(user, tokenQuantity);        
        teamAmountMinted += tokenQuantity;
    }

    function ogMint(bytes32[] calldata merkleProof) external payable 
    liveSale callerIsUser{
        
        
        if(!ogLive) revert OGSaleClosed();
        //Check if the wallet is OG
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkleProof, og_root, leaf),"Invalid Wallet");
        uint64 mintedCount = _getAux(msg.sender);
        require(mintedCount + 1 <= TOA_MINT_ALLOCATION,"Exceeds WLUser Allowance");
        require(_totalMinted()+1 <= TOA_MAX_SUPPLY,"Exceeds Max Supply");
        _safeMint(msg.sender, 1);
        _setAux(msg.sender, mintedCount+1);

    }

    function whitelistMint(bytes32[] calldata merkleProof) external payable 
    liveSale callerIsUser{
        
        //Check WL is live
        if(!wlLive) revert WhitelistSaleClosed();

        //check if wallet is WL
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkleProof, wl_root, leaf),"Invalid Wallet");

        uint64 mintedCount = _getAux(msg.sender);
        require(mintedCount + 1 <= TOA_MINT_ALLOCATION,"Exceeds WLUser Allowance");
        require(_totalMinted()+1 <= TOA_MAX_SUPPLY,"Exceeds Max Supply");
        _safeMint(msg.sender, 1);
        _setAux(msg.sender, mintedCount+1);

    }


    function changeSaleStatus() external onlyOwner {
        saleIsLive = !saleIsLive;
    }

    function changeWhitelistStatus() external onlyOwner {
        wlLive = !wlLive;
    }

    function changeOGSaleStatus() external onlyOwner {
        ogLive = !ogLive;
    }

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

    function setTeamLimit(uint256 _limit) external onlyOwner {
        TOA_TEAM_ALLOCATION = _limit;
    }

    function setAllocLimit(uint256 _limit) external onlyOwner {
        TOA_MINT_ALLOCATION = _limit;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }

    function saleStatus()
        public
        view
        virtual
        returns (bool)
    {
        return saleIsLive;
    }

    function ogSaleStatus()
        public
        view
        virtual
        returns (bool)
    {
        return ogLive;
    }

    function wlSaleStatus()
        public
        view
        virtual
        returns (bool)
    {
        return wlLive;
    }


    function burn(uint256 tokenId) public
    callerIsUser{
            require(ownerOf(tokenId)==msg.sender,"You're not the owner of this NFT");
            _burn(tokenId);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsAllocationMax","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OGSaleClosed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleClosed","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"},{"inputs":[],"name":"WhitelistSaleClosed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOA_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOA_MINT_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOA_TEAM_ALLOCATION","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","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":[],"name":"changeOGSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"og_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setAllocLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_og_root","type":"bytes32"}],"name":"setRootOg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wl_root","type":"bytes32"}],"name":"setRootWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setTeamLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint64","name":"tokenQuantity","type":"uint64"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040526032600a556001600b556000600d60086101000a81548160ff0219169083151502179055506000600d60096101000a81548160ff0219169083151502179055506000600d600a6101000a81548160ff0219169083151502179055507fc12e87a3387c3a490e80be2905b2a54e6f720ea93a8cc5e0b7a11fb13938286a60001b600e557f07dfbf5e6542ddc13a22e8874f2b419b4c22f18846b227f9d39519bea1fa85b960001b600f55604051806080016040528060588152602001620042846058913960119081620000d791906200054e565b50348015620000e557600080fd5b506040518060400160405280600e81526020017f54616c6573204f6620416c656b6f0000000000000000000000000000000000008152506040518060400160405280600381526020017f544f41000000000000000000000000000000000000000000000000000000000081525081600290816200016391906200054e565b5080600390816200017591906200054e565b5062000186620001fd60201b60201c565b60008190555050506001600881905550620001b6620001aa6200020660201b60201c565b6200020e60201b60201c565b33600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000635565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035657607f821691505b6020821081036200036c576200036b6200030e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000397565b620003e2868362000397565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200042f620004296200042384620003fa565b62000404565b620003fa565b9050919050565b6000819050919050565b6200044b836200040e565b620004636200045a8262000436565b848454620003a4565b825550505050565b600090565b6200047a6200046b565b6200048781848462000440565b505050565b5b81811015620004af57620004a360008262000470565b6001810190506200048d565b5050565b601f821115620004fe57620004c88162000372565b620004d38462000387565b81016020851015620004e3578190505b620004fb620004f28562000387565b8301826200048c565b50505b505050565b600082821c905092915050565b6000620005236000198460080262000503565b1980831691505092915050565b60006200053e838362000510565b9150826002028217905092915050565b6200055982620002d4565b67ffffffffffffffff811115620005755762000574620002df565b5b6200058182546200033d565b6200058e828285620004b3565b600060209050601f831160018114620005c65760008415620005b1578287015190505b620005bd858262000530565b8655506200062d565b601f198416620005d68662000372565b60005b828110156200060057848901518255600182019150602085019450602081019050620005d9565b868310156200062057848901516200061c601f89168262000510565b8355505b6001600288020188555050505b505050505050565b613c3f80620006456000396000f3fe6080604052600436106102725760003560e01c8063918ed5d51161014f578063d547cfb7116100c1578063eb4872541161007a578063eb487254146108a4578063ec7fd4d5146108cf578063f2fde38b146108f8578063f412f5b614610921578063f9020e331461094c578063fd06408e1461097757610272565b8063d547cfb7146107a6578063dfa434b2146107d1578063e1287dda146107fa578063e231f84914610825578063e985e9c51461083c578063eab4858d1461087957610272565b8063b5afc98211610113578063b5afc982146106b5578063b632d209146106e0578063b88d4fde1461070b578063c87b56dd14610727578063ca1d953c14610764578063d2602b771461077b57610272565b8063918ed5d5146105ef57806394eaf9951461060b57806395d89b4114610636578063a22cb46514610661578063ad65815d1461068a57610272565b806345eefa37116101e857806370812fee116101ac57806370812fee1461050357806370a082311461052e578063715018a61461056b57806379c3bb3e1461058257806379ee6b71146105995780638da5cb5b146105c457610272565b806345eefa371461042057806348047b831461044957806355f804b3146104745780636352211e1461049d5780636f5fa607146104da57610272565b806323b872dd1161023a57806323b872dd1461036357806333f96b171461037f578063372f657c146103a85780633ccfd60b146103c457806342842e0e146103db57806342966c68146103f757610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612b77565b6109a2565b6040516102ab9190612bbf565b60405180910390f35b3480156102c057600080fd5b506102c9610a34565b6040516102d69190612c6a565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612cc2565b610ac6565b6040516103139190612d30565b60405180910390f35b61033660048036038101906103319190612d77565b610b45565b005b34801561034457600080fd5b5061034d610c89565b60405161035a9190612dc6565b60405180910390f35b61037d60048036038101906103789190612de1565b610ca0565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612e74565b610fc2565b005b6103c260048036038101906103bd9190612f19565b6110ec565b005b3480156103d057600080fd5b506103d9611385565b005b6103f560048036038101906103f09190612de1565b6113e3565b005b34801561040357600080fd5b5061041e60048036038101906104199190612cc2565b611403565b005b34801561042c57600080fd5b5061044760048036038101906104429190612f9c565b6114f3565b005b34801561045557600080fd5b5061045e611505565b60405161046b9190612bbf565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061301f565b61151c565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612cc2565b61153a565b6040516104d19190612d30565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612cc2565b61154c565b005b34801561050f57600080fd5b5061051861155e565b604051610525919061307b565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613096565b611578565b6040516105629190612dc6565b60405180910390f35b34801561057757600080fd5b50610580611630565b005b34801561058e57600080fd5b50610597611644565b005b3480156105a557600080fd5b506105ae611678565b6040516105bb91906130d2565b60405180910390f35b3480156105d057600080fd5b506105d961167e565b6040516105e69190612d30565b60405180910390f35b61060960048036038101906106049190612f19565b6116a8565b005b34801561061757600080fd5b50610620611941565b60405161062d9190612bbf565b60405180910390f35b34801561064257600080fd5b5061064b611954565b6040516106589190612c6a565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613119565b6119e6565b005b34801561069657600080fd5b5061069f611af1565b6040516106ac9190612dc6565b60405180910390f35b3480156106c157600080fd5b506106ca611af7565b6040516106d7919061307b565b60405180910390f35b3480156106ec57600080fd5b506106f5611b11565b60405161070291906130d2565b60405180910390f35b61072560048036038101906107209190613289565b611b17565b005b34801561073357600080fd5b5061074e60048036038101906107499190612cc2565b611b8a565b60405161075b9190612c6a565b60405180910390f35b34801561077057600080fd5b50610779611c28565b005b34801561078757600080fd5b50610790611c5c565b60405161079d919061307b565b60405180910390f35b3480156107b257600080fd5b506107bb611c76565b6040516107c89190612c6a565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612f9c565b611d04565b005b34801561080657600080fd5b5061080f611d16565b60405161081c9190612dc6565b60405180910390f35b34801561083157600080fd5b5061083a611d1c565b005b34801561084857600080fd5b50610863600480360381019061085e919061330c565b611d50565b6040516108709190612bbf565b60405180910390f35b34801561088557600080fd5b5061088e611de4565b60405161089b9190612bbf565b60405180910390f35b3480156108b057600080fd5b506108b9611dfb565b6040516108c69190612bbf565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612cc2565b611e0e565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613096565b611e20565b005b34801561092d57600080fd5b50610936611ea3565b6040516109439190612bbf565b60405180910390f35b34801561095857600080fd5b50610961611eb6565b60405161096e9190612bbf565b60405180910390f35b34801561098357600080fd5b5061098c611ecd565b6040516109999190612dc6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a439061337b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f9061337b565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad182611ed3565b610b07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b508261153a565b90508073ffffffffffffffffffffffffffffffffffffffff16610b71611f32565b73ffffffffffffffffffffffffffffffffffffffff1614610bd457610b9d81610b98611f32565b611d50565b610bd3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c93611f3a565b6001546000540303905090565b6000610cab82611f43565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1e8461200f565b91509150610d348187610d2f611f32565b612036565b610d8057610d4986610d44611f32565b611d50565b610d7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610de6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610df3868686600161207a565b8015610dfe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ecc85610ea8888887612080565b7c0200000000000000000000000000000000000000000000000000000000176120a8565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f525760006001850190506000600460008381526020019081526020016000205403610f50576000548114610f4f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fba86868660016120d3565b505050505050565b610fca6120d9565b6103e88167ffffffffffffffff16610fe0612157565b610fea91906133db565b1115611022576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481601060009054906101000a900467ffffffffffffffff16611047919061340f565b67ffffffffffffffff161115611089576040517f38ac3a1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109d828267ffffffffffffffff1661216a565b80601060008282829054906101000a900467ffffffffffffffff166110c2919061340f565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600d60089054906101000a900460ff16611132576040517f4c013bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613497565b60405180910390fd5b600d60099054906101000a900460ff166111e6576040517f9fe9d50600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336040516020016111f991906134ff565b60405160208183030381529060405280519060200120905061125f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612188565b61129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613566565b60405180910390fd5b60006112a93361219f565b9050600b546001826112bb919061340f565b67ffffffffffffffff161115611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906135d2565b60405180910390fd5b6103e86001611313612157565b61131d91906133db565b111561135e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113559061363e565b60405180910390fd5b61136933600161216a565b61137f3360018361137a919061340f565b6121ec565b50505050565b61138d6120d9565b600047905061139a6122a2565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113df573d6000803e3d6000fd5b5050565b6113fe83838360405180602001604052806000815250611b17565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613497565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166114918261153a565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906136aa565b60405180910390fd5b6114f0816122aa565b50565b6114fb6120d9565b80600e8190555050565b6000600d600a9054906101000a900460ff16905090565b6115246120d9565b818160119182611535929190613881565b505050565b600061154582611f43565b9050919050565b6115546120d9565b80600a8190555050565b601060009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116386120d9565b61164260006122b8565b565b61164c6120d9565b600d60099054906101000a900460ff1615600d60096101000a81548160ff021916908315150217905550565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60089054906101000a900460ff166116ee576040517f4c013bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613497565b60405180910390fd5b600d600a9054906101000a900460ff166117a2576040517f7c8334ff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336040516020016117b591906134ff565b60405160208183030381529060405280519060200120905061181b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612188565b61185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613566565b60405180910390fd5b60006118653361219f565b9050600b54600182611877919061340f565b67ffffffffffffffff1611156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906135d2565b60405180910390fd5b6103e860016118cf612157565b6118d991906133db565b111561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119119061363e565b60405180910390fd5b61192533600161216a565b61193b33600183611936919061340f565b6121ec565b50505050565b600d600a9054906101000a900460ff1681565b6060600380546119639061337b565b80601f016020809104026020016040519081016040528092919081815260200182805461198f9061337b565b80156119dc5780601f106119b1576101008083540402835291602001916119dc565b820191906000526020600020905b8154815290600101906020018083116119bf57829003601f168201915b5050505050905090565b80600760006119f3611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa0611f32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae59190612bbf565b60405180910390a35050565b600a5481565b600d60009054906101000a900467ffffffffffffffff1681565b600e5481565b611b22848484610ca0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8457611b4d8484848461237e565b611b83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b9582611ed3565b611bcb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bd56124ce565b90506000815103611bf55760405180602001604052806000815250611c20565b80611bff84612560565b604051602001611c1092919061398d565b6040516020818303038152906040525b915050919050565b611c306120d9565b600d60089054906101000a900460ff1615600d60086101000a81548160ff021916908315150217905550565b600c60149054906101000a900467ffffffffffffffff1681565b60118054611c839061337b565b80601f0160208091040260200160405190810160405280929190818152602001828054611caf9061337b565b8015611cfc5780601f10611cd157610100808354040283529160200191611cfc565b820191906000526020600020905b815481529060010190602001808311611cdf57829003601f168201915b505050505081565b611d0c6120d9565b80600f8190555050565b600b5481565b611d246120d9565b600d600a9054906101000a900460ff1615600d600a6101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d60099054906101000a900460ff16905090565b600d60099054906101000a900460ff1681565b611e166120d9565b80600b8190555050565b611e286120d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613a23565b60405180910390fd5b611ea0816122b8565b50565b600d60089054906101000a900460ff1681565b6000600d60089054906101000a900460ff16905090565b6103e881565b600081611ede611f3a565b11158015611eed575060005482105b8015611f2b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611f52611f3a565b11611fd857600054811015611fd75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fd5575b60008103611fcb576004600083600190039350838152602001908152602001600020549050611fa1565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120978686846125b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120e16122a2565b73ffffffffffffffffffffffffffffffffffffffff166120ff61167e565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613a8f565b60405180910390fd5b565b6000612161611f3a565b60005403905090565b6121848282604051806020016040528060008152506125b9565b5050565b6000826121958584612656565b1490509392505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600033905090565b6122b58160006126ac565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a4611f32565b8786866040518563ffffffff1660e01b81526004016123c69493929190613b04565b6020604051808303816000875af192505050801561240257506040513d601f19601f820116820180604052508101906123ff9190613b65565b60015b61247b573d8060008114612432576040519150601f19603f3d011682016040523d82523d6000602084013e612437565b606091505b506000815103612473576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546124dd9061337b565b80601f01602080910402602001604051908101604052809291908181526020018280546125099061337b565b80156125565780601f1061252b57610100808354040283529160200191612556565b820191906000526020600020905b81548152906001019060200180831161253957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561259b57600184039350600a81066030018453600a8104905080612579575b50828103602084039350808452505050919050565b60009392505050565b6125c383836128fe565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461265157600080549050600083820390505b612603600086838060010194508661237e565b612639576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125f057816000541461264e57600080fd5b50505b505050565b60008082905060005b84518110156126a15761268c8286838151811061267f5761267e613b92565b5b6020026020010151612ab9565b9150808061269990613bc1565b91505061265f565b508091505092915050565b60006126b783611f43565b905060008190506000806126ca8661200f565b915091508415612733576126e681846126e1611f32565b612036565b612732576126fb836126f6611f32565b611d50565b612731576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61274183600088600161207a565b801561274c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f4836127b185600088612080565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176120a8565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361287a5760006001870190506000600460008381526020019081526020016000205403612878576000548114612877578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e48360008860016120d3565b600160008154809291906001019190505550505050505050565b6000805490506000820361293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b600084838561207a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129c2836129b36000866000612080565b6129bc85612ae4565b176120a8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a6357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a28565b5060008203612a9e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ab460008483856120d3565b505050565b6000818310612ad157612acc8284612af4565b612adc565b612adb8383612af4565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5481612b1f565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b600060208284031215612b8d57612b8c612b15565b5b6000612b9b84828501612b62565b91505092915050565b60008115159050919050565b612bb981612ba4565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c14578082015181840152602081019050612bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c3c82612bda565b612c468185612be5565b9350612c56818560208601612bf6565b612c5f81612c20565b840191505092915050565b60006020820190508181036000830152612c848184612c31565b905092915050565b6000819050919050565b612c9f81612c8c565b8114612caa57600080fd5b50565b600081359050612cbc81612c96565b92915050565b600060208284031215612cd857612cd7612b15565b5b6000612ce684828501612cad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1a82612cef565b9050919050565b612d2a81612d0f565b82525050565b6000602082019050612d456000830184612d21565b92915050565b612d5481612d0f565b8114612d5f57600080fd5b50565b600081359050612d7181612d4b565b92915050565b60008060408385031215612d8e57612d8d612b15565b5b6000612d9c85828601612d62565b9250506020612dad85828601612cad565b9150509250929050565b612dc081612c8c565b82525050565b6000602082019050612ddb6000830184612db7565b92915050565b600080600060608486031215612dfa57612df9612b15565b5b6000612e0886828701612d62565b9350506020612e1986828701612d62565b9250506040612e2a86828701612cad565b9150509250925092565b600067ffffffffffffffff82169050919050565b612e5181612e34565b8114612e5c57600080fd5b50565b600081359050612e6e81612e48565b92915050565b60008060408385031215612e8b57612e8a612b15565b5b6000612e9985828601612d62565b9250506020612eaa85828601612e5f565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ed957612ed8612eb4565b5b8235905067ffffffffffffffff811115612ef657612ef5612eb9565b5b602083019150836020820283011115612f1257612f11612ebe565b5b9250929050565b60008060208385031215612f3057612f2f612b15565b5b600083013567ffffffffffffffff811115612f4e57612f4d612b1a565b5b612f5a85828601612ec3565b92509250509250929050565b6000819050919050565b612f7981612f66565b8114612f8457600080fd5b50565b600081359050612f9681612f70565b92915050565b600060208284031215612fb257612fb1612b15565b5b6000612fc084828501612f87565b91505092915050565b60008083601f840112612fdf57612fde612eb4565b5b8235905067ffffffffffffffff811115612ffc57612ffb612eb9565b5b60208301915083600182028301111561301857613017612ebe565b5b9250929050565b6000806020838503121561303657613035612b15565b5b600083013567ffffffffffffffff81111561305457613053612b1a565b5b61306085828601612fc9565b92509250509250929050565b61307581612e34565b82525050565b6000602082019050613090600083018461306c565b92915050565b6000602082840312156130ac576130ab612b15565b5b60006130ba84828501612d62565b91505092915050565b6130cc81612f66565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6130f681612ba4565b811461310157600080fd5b50565b600081359050613113816130ed565b92915050565b600080604083850312156131305761312f612b15565b5b600061313e85828601612d62565b925050602061314f85828601613104565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61319682612c20565b810181811067ffffffffffffffff821117156131b5576131b461315e565b5b80604052505050565b60006131c8612b0b565b90506131d4828261318d565b919050565b600067ffffffffffffffff8211156131f4576131f361315e565b5b6131fd82612c20565b9050602081019050919050565b82818337600083830152505050565b600061322c613227846131d9565b6131be565b90508281526020810184848401111561324857613247613159565b5b61325384828561320a565b509392505050565b600082601f8301126132705761326f612eb4565b5b8135613280848260208601613219565b91505092915050565b600080600080608085870312156132a3576132a2612b15565b5b60006132b187828801612d62565b94505060206132c287828801612d62565b93505060406132d387828801612cad565b925050606085013567ffffffffffffffff8111156132f4576132f3612b1a565b5b6133008782880161325b565b91505092959194509250565b6000806040838503121561332357613322612b15565b5b600061333185828601612d62565b925050602061334285828601612d62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339357607f821691505b6020821081036133a6576133a561334c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133e682612c8c565b91506133f183612c8c565b9250828201905080821115613409576134086133ac565b5b92915050565b600061341a82612e34565b915061342583612e34565b9250828201905067ffffffffffffffff811115613445576134446133ac565b5b92915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613481601e83612be5565b915061348c8261344b565b602082019050919050565b600060208201905081810360008301526134b081613474565b9050919050565b60008160601b9050919050565b60006134cf826134b7565b9050919050565b60006134e1826134c4565b9050919050565b6134f96134f482612d0f565b6134d6565b82525050565b600061350b82846134e8565b60148201915081905092915050565b7f496e76616c69642057616c6c6574000000000000000000000000000000000000600082015250565b6000613550600e83612be5565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f4578636565647320574c5573657220416c6c6f77616e63650000000000000000600082015250565b60006135bc601883612be5565b91506135c782613586565b602082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b6000613628601283612be5565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f596f75277265206e6f7420746865206f776e6572206f662074686973204e4654600082015250565b6000613694602083612be5565b915061369f8261365e565b602082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136fa565b61374186836136fa565b95508019841693508086168417925050509392505050565b6000819050919050565b600061377e61377961377484612c8c565b613759565b612c8c565b9050919050565b6000819050919050565b61379883613763565b6137ac6137a482613785565b848454613707565b825550505050565b600090565b6137c16137b4565b6137cc81848461378f565b505050565b5b818110156137f0576137e56000826137b9565b6001810190506137d2565b5050565b601f82111561383557613806816136d5565b61380f846136ea565b8101602085101561381e578190505b61383261382a856136ea565b8301826137d1565b50505b505050565b600082821c905092915050565b60006138586000198460080261383a565b1980831691505092915050565b60006138718383613847565b9150826002028217905092915050565b61388b83836136ca565b67ffffffffffffffff8111156138a4576138a361315e565b5b6138ae825461337b565b6138b98282856137f4565b6000601f8311600181146138e857600084156138d6578287013590505b6138e08582613865565b865550613948565b601f1984166138f6866136d5565b60005b8281101561391e578489013582556001820191506020850194506020810190506138f9565b8683101561393b5784890135613937601f891682613847565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b600061396782612bda565b6139718185613951565b9350613981818560208601612bf6565b80840191505092915050565b6000613999828561395c565b91506139a5828461395c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a0d602683612be5565b9150613a18826139b1565b604082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a79602083612be5565b9150613a8482613a43565b602082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ad682613aaf565b613ae08185613aba565b9350613af0818560208601612bf6565b613af981612c20565b840191505092915050565b6000608082019050613b196000830187612d21565b613b266020830186612d21565b613b336040830185612db7565b8181036060830152613b458184613acb565b905095945050505050565b600081519050613b5f81612b4b565b92915050565b600060208284031215613b7b57613b7a612b15565b5b6000613b8984828501613b50565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bcc82612c8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bfe57613bfd6133ac565b5b60018201905091905056fea2646970667358221220491a7781f13df0ad7f97e654612b0cde2c12295a4100f0f82554cf69e3dcb68a64736f6c6343000812003368747470733a2f2f74616c65736f66616c656b6f2e696e667572612d697066732e696f2f697066732f516d504861446a644278597131675a624d6d5064354252314178324e3436595674326a75344174454d6b67436a752f

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063918ed5d51161014f578063d547cfb7116100c1578063eb4872541161007a578063eb487254146108a4578063ec7fd4d5146108cf578063f2fde38b146108f8578063f412f5b614610921578063f9020e331461094c578063fd06408e1461097757610272565b8063d547cfb7146107a6578063dfa434b2146107d1578063e1287dda146107fa578063e231f84914610825578063e985e9c51461083c578063eab4858d1461087957610272565b8063b5afc98211610113578063b5afc982146106b5578063b632d209146106e0578063b88d4fde1461070b578063c87b56dd14610727578063ca1d953c14610764578063d2602b771461077b57610272565b8063918ed5d5146105ef57806394eaf9951461060b57806395d89b4114610636578063a22cb46514610661578063ad65815d1461068a57610272565b806345eefa37116101e857806370812fee116101ac57806370812fee1461050357806370a082311461052e578063715018a61461056b57806379c3bb3e1461058257806379ee6b71146105995780638da5cb5b146105c457610272565b806345eefa371461042057806348047b831461044957806355f804b3146104745780636352211e1461049d5780636f5fa607146104da57610272565b806323b872dd1161023a57806323b872dd1461036357806333f96b171461037f578063372f657c146103a85780633ccfd60b146103c457806342842e0e146103db57806342966c68146103f757610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612b77565b6109a2565b6040516102ab9190612bbf565b60405180910390f35b3480156102c057600080fd5b506102c9610a34565b6040516102d69190612c6a565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612cc2565b610ac6565b6040516103139190612d30565b60405180910390f35b61033660048036038101906103319190612d77565b610b45565b005b34801561034457600080fd5b5061034d610c89565b60405161035a9190612dc6565b60405180910390f35b61037d60048036038101906103789190612de1565b610ca0565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612e74565b610fc2565b005b6103c260048036038101906103bd9190612f19565b6110ec565b005b3480156103d057600080fd5b506103d9611385565b005b6103f560048036038101906103f09190612de1565b6113e3565b005b34801561040357600080fd5b5061041e60048036038101906104199190612cc2565b611403565b005b34801561042c57600080fd5b5061044760048036038101906104429190612f9c565b6114f3565b005b34801561045557600080fd5b5061045e611505565b60405161046b9190612bbf565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061301f565b61151c565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612cc2565b61153a565b6040516104d19190612d30565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612cc2565b61154c565b005b34801561050f57600080fd5b5061051861155e565b604051610525919061307b565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613096565b611578565b6040516105629190612dc6565b60405180910390f35b34801561057757600080fd5b50610580611630565b005b34801561058e57600080fd5b50610597611644565b005b3480156105a557600080fd5b506105ae611678565b6040516105bb91906130d2565b60405180910390f35b3480156105d057600080fd5b506105d961167e565b6040516105e69190612d30565b60405180910390f35b61060960048036038101906106049190612f19565b6116a8565b005b34801561061757600080fd5b50610620611941565b60405161062d9190612bbf565b60405180910390f35b34801561064257600080fd5b5061064b611954565b6040516106589190612c6a565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613119565b6119e6565b005b34801561069657600080fd5b5061069f611af1565b6040516106ac9190612dc6565b60405180910390f35b3480156106c157600080fd5b506106ca611af7565b6040516106d7919061307b565b60405180910390f35b3480156106ec57600080fd5b506106f5611b11565b60405161070291906130d2565b60405180910390f35b61072560048036038101906107209190613289565b611b17565b005b34801561073357600080fd5b5061074e60048036038101906107499190612cc2565b611b8a565b60405161075b9190612c6a565b60405180910390f35b34801561077057600080fd5b50610779611c28565b005b34801561078757600080fd5b50610790611c5c565b60405161079d919061307b565b60405180910390f35b3480156107b257600080fd5b506107bb611c76565b6040516107c89190612c6a565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612f9c565b611d04565b005b34801561080657600080fd5b5061080f611d16565b60405161081c9190612dc6565b60405180910390f35b34801561083157600080fd5b5061083a611d1c565b005b34801561084857600080fd5b50610863600480360381019061085e919061330c565b611d50565b6040516108709190612bbf565b60405180910390f35b34801561088557600080fd5b5061088e611de4565b60405161089b9190612bbf565b60405180910390f35b3480156108b057600080fd5b506108b9611dfb565b6040516108c69190612bbf565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612cc2565b611e0e565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613096565b611e20565b005b34801561092d57600080fd5b50610936611ea3565b6040516109439190612bbf565b60405180910390f35b34801561095857600080fd5b50610961611eb6565b60405161096e9190612bbf565b60405180910390f35b34801561098357600080fd5b5061098c611ecd565b6040516109999190612dc6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a439061337b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f9061337b565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad182611ed3565b610b07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b508261153a565b90508073ffffffffffffffffffffffffffffffffffffffff16610b71611f32565b73ffffffffffffffffffffffffffffffffffffffff1614610bd457610b9d81610b98611f32565b611d50565b610bd3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c93611f3a565b6001546000540303905090565b6000610cab82611f43565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1e8461200f565b91509150610d348187610d2f611f32565b612036565b610d8057610d4986610d44611f32565b611d50565b610d7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610de6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610df3868686600161207a565b8015610dfe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ecc85610ea8888887612080565b7c0200000000000000000000000000000000000000000000000000000000176120a8565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f525760006001850190506000600460008381526020019081526020016000205403610f50576000548114610f4f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fba86868660016120d3565b505050505050565b610fca6120d9565b6103e88167ffffffffffffffff16610fe0612157565b610fea91906133db565b1115611022576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481601060009054906101000a900467ffffffffffffffff16611047919061340f565b67ffffffffffffffff161115611089576040517f38ac3a1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109d828267ffffffffffffffff1661216a565b80601060008282829054906101000a900467ffffffffffffffff166110c2919061340f565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600d60089054906101000a900460ff16611132576040517f4c013bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613497565b60405180910390fd5b600d60099054906101000a900460ff166111e6576040517f9fe9d50600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336040516020016111f991906134ff565b60405160208183030381529060405280519060200120905061125f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612188565b61129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613566565b60405180910390fd5b60006112a93361219f565b9050600b546001826112bb919061340f565b67ffffffffffffffff161115611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906135d2565b60405180910390fd5b6103e86001611313612157565b61131d91906133db565b111561135e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113559061363e565b60405180910390fd5b61136933600161216a565b61137f3360018361137a919061340f565b6121ec565b50505050565b61138d6120d9565b600047905061139a6122a2565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113df573d6000803e3d6000fd5b5050565b6113fe83838360405180602001604052806000815250611b17565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613497565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166114918261153a565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906136aa565b60405180910390fd5b6114f0816122aa565b50565b6114fb6120d9565b80600e8190555050565b6000600d600a9054906101000a900460ff16905090565b6115246120d9565b818160119182611535929190613881565b505050565b600061154582611f43565b9050919050565b6115546120d9565b80600a8190555050565b601060009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116386120d9565b61164260006122b8565b565b61164c6120d9565b600d60099054906101000a900460ff1615600d60096101000a81548160ff021916908315150217905550565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60089054906101000a900460ff166116ee576040517f4c013bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613497565b60405180910390fd5b600d600a9054906101000a900460ff166117a2576040517f7c8334ff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336040516020016117b591906134ff565b60405160208183030381529060405280519060200120905061181b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612188565b61185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613566565b60405180910390fd5b60006118653361219f565b9050600b54600182611877919061340f565b67ffffffffffffffff1611156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906135d2565b60405180910390fd5b6103e860016118cf612157565b6118d991906133db565b111561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119119061363e565b60405180910390fd5b61192533600161216a565b61193b33600183611936919061340f565b6121ec565b50505050565b600d600a9054906101000a900460ff1681565b6060600380546119639061337b565b80601f016020809104026020016040519081016040528092919081815260200182805461198f9061337b565b80156119dc5780601f106119b1576101008083540402835291602001916119dc565b820191906000526020600020905b8154815290600101906020018083116119bf57829003601f168201915b5050505050905090565b80600760006119f3611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa0611f32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae59190612bbf565b60405180910390a35050565b600a5481565b600d60009054906101000a900467ffffffffffffffff1681565b600e5481565b611b22848484610ca0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8457611b4d8484848461237e565b611b83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b9582611ed3565b611bcb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bd56124ce565b90506000815103611bf55760405180602001604052806000815250611c20565b80611bff84612560565b604051602001611c1092919061398d565b6040516020818303038152906040525b915050919050565b611c306120d9565b600d60089054906101000a900460ff1615600d60086101000a81548160ff021916908315150217905550565b600c60149054906101000a900467ffffffffffffffff1681565b60118054611c839061337b565b80601f0160208091040260200160405190810160405280929190818152602001828054611caf9061337b565b8015611cfc5780601f10611cd157610100808354040283529160200191611cfc565b820191906000526020600020905b815481529060010190602001808311611cdf57829003601f168201915b505050505081565b611d0c6120d9565b80600f8190555050565b600b5481565b611d246120d9565b600d600a9054906101000a900460ff1615600d600a6101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d60099054906101000a900460ff16905090565b600d60099054906101000a900460ff1681565b611e166120d9565b80600b8190555050565b611e286120d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613a23565b60405180910390fd5b611ea0816122b8565b50565b600d60089054906101000a900460ff1681565b6000600d60089054906101000a900460ff16905090565b6103e881565b600081611ede611f3a565b11158015611eed575060005482105b8015611f2b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611f52611f3a565b11611fd857600054811015611fd75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fd5575b60008103611fcb576004600083600190039350838152602001908152602001600020549050611fa1565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120978686846125b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120e16122a2565b73ffffffffffffffffffffffffffffffffffffffff166120ff61167e565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613a8f565b60405180910390fd5b565b6000612161611f3a565b60005403905090565b6121848282604051806020016040528060008152506125b9565b5050565b6000826121958584612656565b1490509392505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600033905090565b6122b58160006126ac565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a4611f32565b8786866040518563ffffffff1660e01b81526004016123c69493929190613b04565b6020604051808303816000875af192505050801561240257506040513d601f19601f820116820180604052508101906123ff9190613b65565b60015b61247b573d8060008114612432576040519150601f19603f3d011682016040523d82523d6000602084013e612437565b606091505b506000815103612473576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546124dd9061337b565b80601f01602080910402602001604051908101604052809291908181526020018280546125099061337b565b80156125565780601f1061252b57610100808354040283529160200191612556565b820191906000526020600020905b81548152906001019060200180831161253957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561259b57600184039350600a81066030018453600a8104905080612579575b50828103602084039350808452505050919050565b60009392505050565b6125c383836128fe565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461265157600080549050600083820390505b612603600086838060010194508661237e565b612639576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125f057816000541461264e57600080fd5b50505b505050565b60008082905060005b84518110156126a15761268c8286838151811061267f5761267e613b92565b5b6020026020010151612ab9565b9150808061269990613bc1565b91505061265f565b508091505092915050565b60006126b783611f43565b905060008190506000806126ca8661200f565b915091508415612733576126e681846126e1611f32565b612036565b612732576126fb836126f6611f32565b611d50565b612731576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61274183600088600161207a565b801561274c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f4836127b185600088612080565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176120a8565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361287a5760006001870190506000600460008381526020019081526020016000205403612878576000548114612877578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e48360008860016120d3565b600160008154809291906001019190505550505050505050565b6000805490506000820361293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b600084838561207a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129c2836129b36000866000612080565b6129bc85612ae4565b176120a8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a6357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a28565b5060008203612a9e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ab460008483856120d3565b505050565b6000818310612ad157612acc8284612af4565b612adc565b612adb8383612af4565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5481612b1f565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b600060208284031215612b8d57612b8c612b15565b5b6000612b9b84828501612b62565b91505092915050565b60008115159050919050565b612bb981612ba4565b82525050565b6000602082019050612bd46000830184612bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c14578082015181840152602081019050612bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c3c82612bda565b612c468185612be5565b9350612c56818560208601612bf6565b612c5f81612c20565b840191505092915050565b60006020820190508181036000830152612c848184612c31565b905092915050565b6000819050919050565b612c9f81612c8c565b8114612caa57600080fd5b50565b600081359050612cbc81612c96565b92915050565b600060208284031215612cd857612cd7612b15565b5b6000612ce684828501612cad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1a82612cef565b9050919050565b612d2a81612d0f565b82525050565b6000602082019050612d456000830184612d21565b92915050565b612d5481612d0f565b8114612d5f57600080fd5b50565b600081359050612d7181612d4b565b92915050565b60008060408385031215612d8e57612d8d612b15565b5b6000612d9c85828601612d62565b9250506020612dad85828601612cad565b9150509250929050565b612dc081612c8c565b82525050565b6000602082019050612ddb6000830184612db7565b92915050565b600080600060608486031215612dfa57612df9612b15565b5b6000612e0886828701612d62565b9350506020612e1986828701612d62565b9250506040612e2a86828701612cad565b9150509250925092565b600067ffffffffffffffff82169050919050565b612e5181612e34565b8114612e5c57600080fd5b50565b600081359050612e6e81612e48565b92915050565b60008060408385031215612e8b57612e8a612b15565b5b6000612e9985828601612d62565b9250506020612eaa85828601612e5f565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ed957612ed8612eb4565b5b8235905067ffffffffffffffff811115612ef657612ef5612eb9565b5b602083019150836020820283011115612f1257612f11612ebe565b5b9250929050565b60008060208385031215612f3057612f2f612b15565b5b600083013567ffffffffffffffff811115612f4e57612f4d612b1a565b5b612f5a85828601612ec3565b92509250509250929050565b6000819050919050565b612f7981612f66565b8114612f8457600080fd5b50565b600081359050612f9681612f70565b92915050565b600060208284031215612fb257612fb1612b15565b5b6000612fc084828501612f87565b91505092915050565b60008083601f840112612fdf57612fde612eb4565b5b8235905067ffffffffffffffff811115612ffc57612ffb612eb9565b5b60208301915083600182028301111561301857613017612ebe565b5b9250929050565b6000806020838503121561303657613035612b15565b5b600083013567ffffffffffffffff81111561305457613053612b1a565b5b61306085828601612fc9565b92509250509250929050565b61307581612e34565b82525050565b6000602082019050613090600083018461306c565b92915050565b6000602082840312156130ac576130ab612b15565b5b60006130ba84828501612d62565b91505092915050565b6130cc81612f66565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6130f681612ba4565b811461310157600080fd5b50565b600081359050613113816130ed565b92915050565b600080604083850312156131305761312f612b15565b5b600061313e85828601612d62565b925050602061314f85828601613104565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61319682612c20565b810181811067ffffffffffffffff821117156131b5576131b461315e565b5b80604052505050565b60006131c8612b0b565b90506131d4828261318d565b919050565b600067ffffffffffffffff8211156131f4576131f361315e565b5b6131fd82612c20565b9050602081019050919050565b82818337600083830152505050565b600061322c613227846131d9565b6131be565b90508281526020810184848401111561324857613247613159565b5b61325384828561320a565b509392505050565b600082601f8301126132705761326f612eb4565b5b8135613280848260208601613219565b91505092915050565b600080600080608085870312156132a3576132a2612b15565b5b60006132b187828801612d62565b94505060206132c287828801612d62565b93505060406132d387828801612cad565b925050606085013567ffffffffffffffff8111156132f4576132f3612b1a565b5b6133008782880161325b565b91505092959194509250565b6000806040838503121561332357613322612b15565b5b600061333185828601612d62565b925050602061334285828601612d62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339357607f821691505b6020821081036133a6576133a561334c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133e682612c8c565b91506133f183612c8c565b9250828201905080821115613409576134086133ac565b5b92915050565b600061341a82612e34565b915061342583612e34565b9250828201905067ffffffffffffffff811115613445576134446133ac565b5b92915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613481601e83612be5565b915061348c8261344b565b602082019050919050565b600060208201905081810360008301526134b081613474565b9050919050565b60008160601b9050919050565b60006134cf826134b7565b9050919050565b60006134e1826134c4565b9050919050565b6134f96134f482612d0f565b6134d6565b82525050565b600061350b82846134e8565b60148201915081905092915050565b7f496e76616c69642057616c6c6574000000000000000000000000000000000000600082015250565b6000613550600e83612be5565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f4578636565647320574c5573657220416c6c6f77616e63650000000000000000600082015250565b60006135bc601883612be5565b91506135c782613586565b602082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b6000613628601283612be5565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f596f75277265206e6f7420746865206f776e6572206f662074686973204e4654600082015250565b6000613694602083612be5565b915061369f8261365e565b602082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136fa565b61374186836136fa565b95508019841693508086168417925050509392505050565b6000819050919050565b600061377e61377961377484612c8c565b613759565b612c8c565b9050919050565b6000819050919050565b61379883613763565b6137ac6137a482613785565b848454613707565b825550505050565b600090565b6137c16137b4565b6137cc81848461378f565b505050565b5b818110156137f0576137e56000826137b9565b6001810190506137d2565b5050565b601f82111561383557613806816136d5565b61380f846136ea565b8101602085101561381e578190505b61383261382a856136ea565b8301826137d1565b50505b505050565b600082821c905092915050565b60006138586000198460080261383a565b1980831691505092915050565b60006138718383613847565b9150826002028217905092915050565b61388b83836136ca565b67ffffffffffffffff8111156138a4576138a361315e565b5b6138ae825461337b565b6138b98282856137f4565b6000601f8311600181146138e857600084156138d6578287013590505b6138e08582613865565b865550613948565b601f1984166138f6866136d5565b60005b8281101561391e578489013582556001820191506020850194506020810190506138f9565b8683101561393b5784890135613937601f891682613847565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b600061396782612bda565b6139718185613951565b9350613981818560208601612bf6565b80840191505092915050565b6000613999828561395c565b91506139a5828461395c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a0d602683612be5565b9150613a18826139b1565b604082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a79602083612be5565b9150613a8482613a43565b602082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ad682613aaf565b613ae08185613aba565b9350613af0818560208601612bf6565b613af981612c20565b840191505092915050565b6000608082019050613b196000830187612d21565b613b266020830186612d21565b613b336040830185612db7565b8181036060830152613b458184613acb565b905095945050505050565b600081519050613b5f81612b4b565b92915050565b600060208284031215613b7b57613b7a612b15565b5b6000613b8984828501613b50565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bcc82612c8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bfe57613bfd6133ac565b5b60018201905091905056fea2646970667358221220491a7781f13df0ad7f97e654612b0cde2c12295a4100f0f82554cf69e3dcb68a64736f6c63430008120033

Deployed Bytecode Sourcemap

70147:4843:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35825:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43218:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42651:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32478:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46857:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71902:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72924:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74227:145;;;;;;;;;;;;;:::i;:::-;;49778:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74804:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71460:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74522:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71658:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38120:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74002:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70845:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33662:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6123:103;;;;;;;;;;;;;:::i;:::-;;73706:87;;;;;;;;;;;;;:::i;:::-;;70741:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5482:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72274:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70600:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36903:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43776:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70299:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70481:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70639:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50569:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37113:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73608:90;;;;;;;;;;;;;:::i;:::-;;70442:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70915:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71559:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70349:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73801:84;;;;;;;;;;;;;:::i;:::-;;44167:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74662:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70563:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74114:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6381:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70522:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74380:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70233:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35825:639;35910:4;36249:10;36234:25;;:11;:25;;;;:102;;;;36326:10;36311:25;;:11;:25;;;;36234:102;:179;;;;36403:10;36388:25;;:11;:25;;;;36234:179;36214:199;;35825:639;;;:::o;36727:100::-;36781:13;36814:5;36807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36727:100;:::o;43218:218::-;43294:7;43319:16;43327:7;43319;:16::i;:::-;43314:64;;43344:34;;;;;;;;;;;;;;43314:64;43398:15;:24;43414:7;43398:24;;;;;;;;;;;:30;;;;;;;;;;;;43391:37;;43218:218;;;:::o;42651:408::-;42740:13;42756:16;42764:7;42756;:16::i;:::-;42740:32;;42812:5;42789:28;;:19;:17;:19::i;:::-;:28;;;42785:175;;42837:44;42854:5;42861:19;:17;:19::i;:::-;42837:16;:44::i;:::-;42832:128;;42909:35;;;;;;;;;;;;;;42832:128;42785:175;43005:2;42972:15;:24;42988:7;42972:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43043:7;43039:2;43023:28;;43032:5;43023:28;;;;;;;;;;;;42729:330;42651:408;;:::o;32478:323::-;32539:7;32767:15;:13;:15::i;:::-;32752:12;;32736:13;;:28;:46;32729:53;;32478:323;:::o;46857:2825::-;46999:27;47029;47048:7;47029:18;:27::i;:::-;46999:57;;47114:4;47073:45;;47089:19;47073:45;;;47069:86;;47127:28;;;;;;;;;;;;;;47069:86;47169:27;47198:23;47225:35;47252:7;47225:26;:35::i;:::-;47168:92;;;;47360:68;47385:15;47402:4;47408:19;:17;:19::i;:::-;47360:24;:68::i;:::-;47355:180;;47448:43;47465:4;47471:19;:17;:19::i;:::-;47448:16;:43::i;:::-;47443:92;;47500:35;;;;;;;;;;;;;;47443:92;47355:180;47566:1;47552:16;;:2;:16;;;47548:52;;47577:23;;;;;;;;;;;;;;47548:52;47613:43;47635:4;47641:2;47645:7;47654:1;47613:21;:43::i;:::-;47749:15;47746:160;;;47889:1;47868:19;47861:30;47746:160;48286:18;:24;48305:4;48286:24;;;;;;;;;;;;;;;;48284:26;;;;;;;;;;;;48355:18;:22;48374:2;48355:22;;;;;;;;;;;;;;;;48353:24;;;;;;;;;;;48677:146;48714:2;48763:45;48778:4;48784:2;48788:19;48763:14;:45::i;:::-;28877:8;48735:73;48677:18;:146::i;:::-;48648:17;:26;48666:7;48648:26;;;;;;;;;;;:175;;;;48994:1;28877:8;48943:19;:47;:52;48939:627;;49016:19;49048:1;49038:7;:11;49016:33;;49205:1;49171:17;:30;49189:11;49171:30;;;;;;;;;;;;:35;49167:384;;49309:13;;49294:11;:28;49290:242;;49489:19;49456:17;:30;49474:11;49456:30;;;;;;;;;;;:52;;;;49290:242;49167:384;48997:569;48939:627;49613:7;49609:2;49594:27;;49603:4;49594:27;;;;;;;;;;;;49632:42;49653:4;49659:2;49663:7;49672:1;49632:20;:42::i;:::-;46988:2694;;;46857:2825;;;:::o;71902:364::-;5368:13;:11;:13::i;:::-;70274:4:::1;72006:13;71989:30;;:14;:12;:14::i;:::-;:30;;;;:::i;:::-;:47;71986:77;;;72045:18;;;;;;;;;;;;;;71986:77;72112:19;;72096:13;72077:16;;;;;;;;;;;:32;;;;:::i;:::-;:54;;;72074:88;;;72140:22;;;;;;;;;;;;;;72074:88;72176:30;72186:4;72192:13;72176:30;;:9;:30::i;:::-;72245:13;72225:16;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71902:364:::0;;:::o;72924:674::-;71401:10;;;;;;;;;;;71397:35;;71420:12;;;;;;;;;;;;;;71397:35;71295:10:::1;71282:23;;:9;:23;;;71274:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;73076:6:::2;;;;;;;;;;;73072:40;;73091:21;;;;;;;;;;;;;;73072:40;73158:12;73200:10;73183:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;73173:39;;;;;;73158:54;;73231:46;73250:11;;73231:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73263:7;;73272:4;73231:18;:46::i;:::-;73223:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;73308:18;73329:19;73337:10;73329:7;:19::i;:::-;73308:40;;73386:19;;73381:1;73367:11;:15;;;;:::i;:::-;:38;;;;73359:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;70274:4;73467:1;73452:14;:12;:14::i;:::-;:16;;;;:::i;:::-;:34;;73444:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;73519:24;73529:10;73541:1;73519:9;:24::i;:::-;73554:34;73562:10;73586:1;73574:11;:13;;;;:::i;:::-;73554:7;:34::i;:::-;73023:575;;72924:674:::0;;:::o;74227:145::-;5368:13;:11;:13::i;:::-;74275:15:::1;74293:21;74275:39;;74333:12;:10;:12::i;:::-;74325:30;;:39;74356:7;74325:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;74264:108;74227:145::o:0;49778:193::-;49924:39;49941:4;49947:2;49951:7;49924:39;;;;;;;;;;;;:16;:39::i;:::-;49778:193;;;:::o;74804:179::-;71295:10;71282:23;;:9;:23;;;71274:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;74900:10:::1;74882:28;;:16;74890:7;74882;:16::i;:::-;:28;;;74874:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;74961:14;74967:7;74961:5;:14::i;:::-;74804:179:::0;:::o;71460:91::-;5368:13;:11;:13::i;:::-;71535:8:::1;71525:7;:18;;;;71460:91:::0;:::o;74522:132::-;74611:4;74640:6;;;;;;;;;;;74633:13;;74522:132;:::o;71658:115::-;5368:13;:11;:13::i;:::-;71752::::1;;71737:12;:28;;;;;;;:::i;:::-;;71658:115:::0;;:::o;38120:152::-;38192:7;38235:27;38254:7;38235:18;:27::i;:::-;38212:52;;38120:152;;;:::o;74002:104::-;5368:13;:11;:13::i;:::-;74092:6:::1;74070:19;:28;;;;74002:104:::0;:::o;70845:30::-;;;;;;;;;;;;;:::o;33662:233::-;33734:7;33775:1;33758:19;;:5;:19;;;33754:60;;33786:28;;;;;;;;;;;;;;33754:60;27821:13;33832:18;:25;33851:5;33832:25;;;;;;;;;;;;;;;;:55;33825:62;;33662:233;;;:::o;6123:103::-;5368:13;:11;:13::i;:::-;6188:30:::1;6215:1;6188:18;:30::i;:::-;6123:103::o:0;73706:87::-;5368:13;:11;:13::i;:::-;73779:6:::1;;;;;;;;;;;73778:7;73769:6;;:16;;;;;;;;;;;;;;;;;;73706:87::o:0;70741:91::-;;;;:::o;5482:87::-;5528:7;5555:6;;;;;;;;;;;5548:13;;5482:87;:::o;72274:642::-;71401:10;;;;;;;;;;;71397:35;;71420:12;;;;;;;;;;;;;;71397:35;71295:10:::1;71282:23;;:9;:23;;;71274:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;72401:6:::2;;;;;;;;;;;72397:33;;72416:14;;;;;;;;;;;;;;72397:33;72478:12;72520:10;72503:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72493:39;;;;;;72478:54;;72551:46;72570:11;;72551:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72583:7;;72592:4;72551:18;:46::i;:::-;72543:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72626:18;72647:19;72655:10;72647:7;:19::i;:::-;72626:40;;72704:19;;72699:1;72685:11;:15;;;;:::i;:::-;:38;;;;72677:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;70274:4;72785:1;72770:14;:12;:14::i;:::-;:16;;;;:::i;:::-;:34;;72762:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;72837:24;72847:10;72859:1;72837:9;:24::i;:::-;72872:34;72880:10;72904:1;72892:11;:13;;;;:::i;:::-;72872:7;:34::i;:::-;72366:550;;72274:642:::0;;:::o;70600:26::-;;;;;;;;;;;;;:::o;36903:104::-;36959:13;36992:7;36985:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36903:104;:::o;43776:234::-;43923:8;43871:18;:39;43890:19;:17;:19::i;:::-;43871:39;;;;;;;;;;;;;;;:49;43911:8;43871:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;43983:8;43947:55;;43962:19;:17;:19::i;:::-;43947:55;;;43993:8;43947:55;;;;;;:::i;:::-;;;;;;;;43776:234;;:::o;70299:39::-;;;;:::o;70481:28::-;;;;;;;;;;;;;:::o;70639:91::-;;;;:::o;50569:407::-;50744:31;50757:4;50763:2;50767:7;50744:12;:31::i;:::-;50808:1;50790:2;:14;;;:19;50786:183;;50829:56;50860:4;50866:2;50870:7;50879:5;50829:30;:56::i;:::-;50824:145;;50913:40;;;;;;;;;;;;;;50824:145;50786:183;50569:407;;;;:::o;37113:318::-;37186:13;37217:16;37225:7;37217;:16::i;:::-;37212:59;;37242:29;;;;;;;;;;;;;;37212:59;37284:21;37308:10;:8;:10::i;:::-;37284:34;;37361:1;37342:7;37336:21;:26;:87;;;;;;;;;;;;;;;;;37389:7;37398:18;37408:7;37398:9;:18::i;:::-;37372:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37336:87;37329:94;;;37113:318;;;:::o;73608:90::-;5368:13;:11;:13::i;:::-;73680:10:::1;;;;;;;;;;;73679:11;73666:10;;:24;;;;;;;;;;;;;;;;;;73608:90::o:0;70442:28::-;;;;;;;;;;;;;:::o;70915:119::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71559:91::-;5368:13;:11;:13::i;:::-;71634:8:::1;71624:7;:18;;;;71559:91:::0;:::o;70349:38::-;;;;:::o;73801:84::-;5368:13;:11;:13::i;:::-;73871:6:::1;;;;;;;;;;;73870:7;73861:6;;:16;;;;;;;;;;;;;;;;;;73801:84::o:0;44167:164::-;44264:4;44288:18;:25;44307:5;44288:25;;;;;;;;;;;;;;;:35;44314:8;44288:35;;;;;;;;;;;;;;;;;;;;;;;;;44281:42;;44167:164;;;;:::o;74662:132::-;74751:4;74780:6;;;;;;;;;;;74773:13;;74662:132;:::o;70563:26::-;;;;;;;;;;;;;:::o;74114:105::-;5368:13;:11;:13::i;:::-;74205:6:::1;74183:19;:28;;;;74114:105:::0;:::o;6381:201::-;5368:13;:11;:13::i;:::-;6490:1:::1;6470:22;;:8;:22;;::::0;6462:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6546:28;6565:8;6546:18;:28::i;:::-;6381:201:::0;:::o;70522:30::-;;;;;;;;;;;;;:::o;74380:134::-;74467:4;74496:10;;;;;;;;;;;74489:17;;74380:134;:::o;70233:45::-;70274:4;70233:45;:::o;44589:282::-;44654:4;44710:7;44691:15;:13;:15::i;:::-;:26;;:66;;;;;44744:13;;44734:7;:23;44691:66;:153;;;;;44843:1;28597:8;44795:17;:26;44813:7;44795:26;;;;;;;;;;;;:44;:49;44691:153;44671:173;;44589:282;;;:::o;66897:105::-;66957:7;66984:10;66977:17;;66897:105;:::o;73893:101::-;73958:7;73985:1;73978:8;;73893:101;:::o;39275:1275::-;39342:7;39362:12;39377:7;39362:22;;39445:4;39426:15;:13;:15::i;:::-;:23;39422:1061;;39479:13;;39472:4;:20;39468:1015;;;39517:14;39534:17;:23;39552:4;39534:23;;;;;;;;;;;;39517:40;;39651:1;28597:8;39623:6;:24;:29;39619:845;;40288:113;40305:1;40295:6;:11;40288:113;;40348:17;:25;40366:6;;;;;;;40348:25;;;;;;;;;;;;40339:34;;40288:113;;;40434:6;40427:13;;;;;;39619:845;39494:989;39468:1015;39422:1061;40511:31;;;;;;;;;;;;;;39275:1275;;;;:::o;45752:485::-;45854:27;45883:23;45924:38;45965:15;:24;45981:7;45965:24;;;;;;;;;;;45924:65;;46142:18;46119:41;;46199:19;46193:26;46174:45;;46104:126;45752:485;;;:::o;44980:659::-;45129:11;45294:16;45287:5;45283:28;45274:37;;45454:16;45443:9;45439:32;45426:45;;45604:15;45593:9;45590:30;45582:5;45571:9;45568:20;45565:56;45555:66;;44980:659;;;;;:::o;51638:159::-;;;;;:::o;66206:311::-;66341:7;66361:16;29001:3;66387:19;:41;;66361:68;;29001:3;66455:31;66466:4;66472:2;66476:9;66455:10;:31::i;:::-;66447:40;;:62;;66440:69;;;66206:311;;;;;:::o;41098:450::-;41178:14;41346:16;41339:5;41335:28;41326:37;;41523:5;41509:11;41484:23;41480:41;41477:52;41470:5;41467:63;41457:73;;41098:450;;;;:::o;52462:158::-;;;;;:::o;5647:132::-;5722:12;:10;:12::i;:::-;5711:23;;:7;:5;:7::i;:::-;:23;;;5703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5647:132::o;32899:296::-;32954:7;33161:15;:13;:15::i;:::-;33145:13;;:31;33138:38;;32899:296;:::o;60729:112::-;60806:27;60816:2;60820:8;60806:27;;;;;;;;;;;;:9;:27::i;:::-;60729:112;;:::o;8200:156::-;8291:4;8344;8315:25;8328:5;8335:4;8315:12;:25::i;:::-;:33;8308:40;;8200:156;;;;;:::o;34549:137::-;34604:6;28195:3;34637:18;:25;34656:5;34637:25;;;;;;;;;;;;;;;;:40;;34623:55;;34549:137;;;:::o;34874:404::-;34946:14;34963:18;:25;34982:5;34963:25;;;;;;;;;;;;;;;;34946:42;;34999:17;35129:3;35116:16;;28195:3;35200:9;:24;;28340:14;35163:6;:32;35162:63;35153:72;;35264:6;35236:18;:25;35255:5;35236:25;;;;;;;;;;;;;;;:34;;;;34935:343;;34874:404;;:::o;3995:98::-;4048:7;4075:10;4068:17;;3995:98;:::o;61108:89::-;61168:21;61174:7;61183:5;61168;:21::i;:::-;61108:89;:::o;6742:191::-;6816:16;6835:6;;;;;;;;;;;6816:25;;6861:8;6852:6;;:17;;;;;;;;;;;;;;;;;;6916:8;6885:40;;6906:8;6885:40;;;;;;;;;;;;6805:128;6742:191;:::o;53060:716::-;53223:4;53269:2;53244:45;;;53290:19;:17;:19::i;:::-;53311:4;53317:7;53326:5;53244:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53240:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53544:1;53527:6;:13;:18;53523:235;;53573:40;;;;;;;;;;;;;;53523:235;53716:6;53710:13;53701:6;53697:2;53693:15;53686:38;53240:529;53413:54;;;53403:64;;;:6;:64;;;;53396:71;;;53060:716;;;;;;:::o;71781:113::-;71841:13;71874:12;71867:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71781:113;:::o;67104:1745::-;67169:17;67603:4;67596;67590:11;67586:22;67695:1;67689:4;67682:15;67770:4;67767:1;67763:12;67756:19;;67852:1;67847:3;67840:14;67956:3;68195:5;68177:428;68203:1;68177:428;;;68243:1;68238:3;68234:11;68227:18;;68414:2;68408:4;68404:13;68400:2;68396:22;68391:3;68383:36;68508:2;68502:4;68498:13;68490:21;;68575:4;68177:428;68565:25;68177:428;68181:21;68644:3;68639;68635:13;68759:4;68754:3;68750:14;68743:21;;68824:6;68819:3;68812:19;67208:1634;;;67104:1745;;;:::o;65907:147::-;66044:6;65907:147;;;;;:::o;59956:689::-;60087:19;60093:2;60097:8;60087:5;:19::i;:::-;60166:1;60148:2;:14;;;:19;60144:483;;60188:11;60202:13;;60188:27;;60234:13;60256:8;60250:3;:14;60234:30;;60283:233;60314:62;60353:1;60357:2;60361:7;;;;;;60370:5;60314:30;:62::i;:::-;60309:167;;60412:40;;;;;;;;;;;;;;60309:167;60511:3;60503:5;:11;60283:233;;60598:3;60581:13;;:20;60577:34;;60603:8;;;60577:34;60169:458;;60144:483;59956:689;;;:::o;8999:296::-;9082:7;9102:20;9125:4;9102:27;;9145:9;9140:118;9164:5;:12;9160:1;:16;9140:118;;;9213:33;9223:12;9237:5;9243:1;9237:8;;;;;;;;:::i;:::-;;;;;;;;9213:9;:33::i;:::-;9198:48;;9178:3;;;;;:::i;:::-;;;;9140:118;;;;9275:12;9268:19;;;8999:296;;;;:::o;61426:3081::-;61506:27;61536;61555:7;61536:18;:27::i;:::-;61506:57;;61576:12;61607:19;61576:52;;61642:27;61671:23;61698:35;61725:7;61698:26;:35::i;:::-;61641:92;;;;61750:13;61746:316;;;61871:68;61896:15;61913:4;61919:19;:17;:19::i;:::-;61871:24;:68::i;:::-;61866:184;;61963:43;61980:4;61986:19;:17;:19::i;:::-;61963:16;:43::i;:::-;61958:92;;62015:35;;;;;;;;;;;;;;61958:92;61866:184;61746:316;62074:51;62096:4;62110:1;62114:7;62123:1;62074:21;:51::i;:::-;62218:15;62215:160;;;62358:1;62337:19;62330:30;62215:160;63036:1;28086:3;63006:1;:26;;63005:32;62977:18;:24;62996:4;62977:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;63304:176;63341:4;63412:53;63427:4;63441:1;63445:19;63412:14;:53::i;:::-;28877:8;28597;63365:43;63364:101;63304:18;:176::i;:::-;63275:17;:26;63293:7;63275:26;;;;;;;;;;;:205;;;;63651:1;28877:8;63600:19;:47;:52;63596:627;;63673:19;63705:1;63695:7;:11;63673:33;;63862:1;63828:17;:30;63846:11;63828:30;;;;;;;;;;;;:35;63824:384;;63966:13;;63951:11;:28;63947:242;;64146:19;64113:17;:30;64131:11;64113:30;;;;;;;;;;;:52;;;;63947:242;63824:384;63654:569;63596:627;64278:7;64274:1;64251:35;;64260:4;64251:35;;;;;;;;;;;;64297:50;64318:4;64332:1;64336:7;64345:1;64297:20;:50::i;:::-;64474:12;;:14;;;;;;;;;;;;;61495:3012;;;;61426:3081;;:::o;54238:2966::-;54311:20;54334:13;;54311:36;;54374:1;54362:8;:13;54358:44;;54384:18;;;;;;;;;;;;;;54358:44;54415:61;54445:1;54449:2;54453:12;54467:8;54415:21;:61::i;:::-;54959:1;27959:2;54929:1;:26;;54928:32;54916:8;:45;54890:18;:22;54909:2;54890:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55238:139;55275:2;55329:33;55352:1;55356:2;55360:1;55329:14;:33::i;:::-;55296:30;55317:8;55296:20;:30::i;:::-;:66;55238:18;:139::i;:::-;55204:17;:31;55222:12;55204:31;;;;;;;;;;;:173;;;;55394:16;55425:11;55454:8;55439:12;:23;55425:37;;55975:16;55971:2;55967:25;55955:37;;56347:12;56307:8;56266:1;56204:25;56145:1;56084;56057:335;56718:1;56704:12;56700:20;56658:346;56759:3;56750:7;56747:16;56658:346;;56977:7;56967:8;56964:1;56937:25;56934:1;56931;56926:59;56812:1;56803:7;56799:15;56788:26;;56658:346;;;56662:77;57049:1;57037:8;:13;57033:45;;57059:19;;;;;;;;;;;;;;57033:45;57111:3;57095:13;:19;;;;54664:2462;;57136:60;57165:1;57169:2;57173:12;57187:8;57136:20;:60::i;:::-;54300:2904;54238:2966;;:::o;16437:149::-;16500:7;16531:1;16527;:5;:51;;16558:20;16573:1;16576;16558:14;:20::i;:::-;16527:51;;;16535:20;16550:1;16553;16535:14;:20::i;:::-;16527:51;16520:58;;16437:149;;;;:::o;41650:324::-;41720:14;41953:1;41943:8;41940:15;41914:24;41910:46;41900:56;;41650:324;;;:::o;16594:268::-;16662:13;16769:1;16763:4;16756:15;16798:1;16792:4;16785:15;16839:4;16833;16823:21;16814:30;;16594:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:101::-;5903:7;5943:18;5936:5;5932:30;5921:41;;5867:101;;;:::o;5974:120::-;6046:23;6063:5;6046:23;:::i;:::-;6039:5;6036:34;6026:62;;6084:1;6081;6074:12;6026:62;5974:120;:::o;6100:137::-;6145:5;6183:6;6170:20;6161:29;;6199:32;6225:5;6199:32;:::i;:::-;6100:137;;;;:::o;6243:472::-;6310:6;6318;6367:2;6355:9;6346:7;6342:23;6338:32;6335:119;;;6373:79;;:::i;:::-;6335:119;6493:1;6518:53;6563:7;6554:6;6543:9;6539:22;6518:53;:::i;:::-;6508:63;;6464:117;6620:2;6646:52;6690:7;6681:6;6670:9;6666:22;6646:52;:::i;:::-;6636:62;;6591:117;6243:472;;;;;:::o;6721:117::-;6830:1;6827;6820:12;6844:117;6953:1;6950;6943:12;6967:117;7076:1;7073;7066:12;7107:568;7180:8;7190:6;7240:3;7233:4;7225:6;7221:17;7217:27;7207:122;;7248:79;;:::i;:::-;7207:122;7361:6;7348:20;7338:30;;7391:18;7383:6;7380:30;7377:117;;;7413:79;;:::i;:::-;7377:117;7527:4;7519:6;7515:17;7503:29;;7581:3;7573:4;7565:6;7561:17;7551:8;7547:32;7544:41;7541:128;;;7588:79;;:::i;:::-;7541:128;7107:568;;;;;:::o;7681:559::-;7767:6;7775;7824:2;7812:9;7803:7;7799:23;7795:32;7792:119;;;7830:79;;:::i;:::-;7792:119;7978:1;7967:9;7963:17;7950:31;8008:18;8000:6;7997:30;7994:117;;;8030:79;;:::i;:::-;7994:117;8143:80;8215:7;8206:6;8195:9;8191:22;8143:80;:::i;:::-;8125:98;;;;7921:312;7681:559;;;;;:::o;8246:77::-;8283:7;8312:5;8301:16;;8246:77;;;:::o;8329:122::-;8402:24;8420:5;8402:24;:::i;:::-;8395:5;8392:35;8382:63;;8441:1;8438;8431:12;8382:63;8329:122;:::o;8457:139::-;8503:5;8541:6;8528:20;8519:29;;8557:33;8584:5;8557:33;:::i;:::-;8457:139;;;;:::o;8602:329::-;8661:6;8710:2;8698:9;8689:7;8685:23;8681:32;8678:119;;;8716:79;;:::i;:::-;8678:119;8836:1;8861:53;8906:7;8897:6;8886:9;8882:22;8861:53;:::i;:::-;8851:63;;8807:117;8602:329;;;;:::o;8951:553::-;9009:8;9019:6;9069:3;9062:4;9054:6;9050:17;9046:27;9036:122;;9077:79;;:::i;:::-;9036:122;9190:6;9177:20;9167:30;;9220:18;9212:6;9209:30;9206:117;;;9242:79;;:::i;:::-;9206:117;9356:4;9348:6;9344:17;9332:29;;9410:3;9402:4;9394:6;9390:17;9380:8;9376:32;9373:41;9370:128;;;9417:79;;:::i;:::-;9370:128;8951:553;;;;;:::o;9510:529::-;9581:6;9589;9638:2;9626:9;9617:7;9613:23;9609:32;9606:119;;;9644:79;;:::i;:::-;9606:119;9792:1;9781:9;9777:17;9764:31;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9957:65;10014:7;10005:6;9994:9;9990:22;9957:65;:::i;:::-;9939:83;;;;9735:297;9510:529;;;;;:::o;10045:115::-;10130:23;10147:5;10130:23;:::i;:::-;10125:3;10118:36;10045:115;;:::o;10166:218::-;10257:4;10295:2;10284:9;10280:18;10272:26;;10308:69;10374:1;10363:9;10359:17;10350:6;10308:69;:::i;:::-;10166:218;;;;:::o;10390:329::-;10449:6;10498:2;10486:9;10477:7;10473:23;10469:32;10466:119;;;10504:79;;:::i;:::-;10466:119;10624:1;10649:53;10694:7;10685:6;10674:9;10670:22;10649:53;:::i;:::-;10639:63;;10595:117;10390:329;;;;:::o;10725:118::-;10812:24;10830:5;10812:24;:::i;:::-;10807:3;10800:37;10725:118;;:::o;10849:222::-;10942:4;10980:2;10969:9;10965:18;10957:26;;10993:71;11061:1;11050:9;11046:17;11037:6;10993:71;:::i;:::-;10849:222;;;;:::o;11077:116::-;11147:21;11162:5;11147:21;:::i;:::-;11140:5;11137:32;11127:60;;11183:1;11180;11173:12;11127:60;11077:116;:::o;11199:133::-;11242:5;11280:6;11267:20;11258:29;;11296:30;11320:5;11296:30;:::i;:::-;11199:133;;;;:::o;11338:468::-;11403:6;11411;11460:2;11448:9;11439:7;11435:23;11431:32;11428:119;;;11466:79;;:::i;:::-;11428:119;11586:1;11611:53;11656:7;11647:6;11636:9;11632:22;11611:53;:::i;:::-;11601:63;;11557:117;11713:2;11739:50;11781:7;11772:6;11761:9;11757:22;11739:50;:::i;:::-;11729:60;;11684:115;11338:468;;;;;:::o;11812:117::-;11921:1;11918;11911:12;11935:180;11983:77;11980:1;11973:88;12080:4;12077:1;12070:15;12104:4;12101:1;12094:15;12121:281;12204:27;12226:4;12204:27;:::i;:::-;12196:6;12192:40;12334:6;12322:10;12319:22;12298:18;12286:10;12283:34;12280:62;12277:88;;;12345:18;;:::i;:::-;12277:88;12385:10;12381:2;12374:22;12164:238;12121:281;;:::o;12408:129::-;12442:6;12469:20;;:::i;:::-;12459:30;;12498:33;12526:4;12518:6;12498:33;:::i;:::-;12408:129;;;:::o;12543:307::-;12604:4;12694:18;12686:6;12683:30;12680:56;;;12716:18;;:::i;:::-;12680:56;12754:29;12776:6;12754:29;:::i;:::-;12746:37;;12838:4;12832;12828:15;12820:23;;12543:307;;;:::o;12856:146::-;12953:6;12948:3;12943;12930:30;12994:1;12985:6;12980:3;12976:16;12969:27;12856:146;;;:::o;13008:423::-;13085:5;13110:65;13126:48;13167:6;13126:48;:::i;:::-;13110:65;:::i;:::-;13101:74;;13198:6;13191:5;13184:21;13236:4;13229:5;13225:16;13274:3;13265:6;13260:3;13256:16;13253:25;13250:112;;;13281:79;;:::i;:::-;13250:112;13371:54;13418:6;13413:3;13408;13371:54;:::i;:::-;13091:340;13008:423;;;;;:::o;13450:338::-;13505:5;13554:3;13547:4;13539:6;13535:17;13531:27;13521:122;;13562:79;;:::i;:::-;13521:122;13679:6;13666:20;13704:78;13778:3;13770:6;13763:4;13755:6;13751:17;13704:78;:::i;:::-;13695:87;;13511:277;13450:338;;;;:::o;13794:943::-;13889:6;13897;13905;13913;13962:3;13950:9;13941:7;13937:23;13933:33;13930:120;;;13969:79;;:::i;:::-;13930:120;14089:1;14114:53;14159:7;14150:6;14139:9;14135:22;14114:53;:::i;:::-;14104:63;;14060:117;14216:2;14242:53;14287:7;14278:6;14267:9;14263:22;14242:53;:::i;:::-;14232:63;;14187:118;14344:2;14370:53;14415:7;14406:6;14395:9;14391:22;14370:53;:::i;:::-;14360:63;;14315:118;14500:2;14489:9;14485:18;14472:32;14531:18;14523:6;14520:30;14517:117;;;14553:79;;:::i;:::-;14517:117;14658:62;14712:7;14703:6;14692:9;14688:22;14658:62;:::i;:::-;14648:72;;14443:287;13794:943;;;;;;;:::o;14743:474::-;14811:6;14819;14868:2;14856:9;14847:7;14843:23;14839:32;14836:119;;;14874:79;;:::i;:::-;14836:119;14994:1;15019:53;15064:7;15055:6;15044:9;15040:22;15019:53;:::i;:::-;15009:63;;14965:117;15121:2;15147:53;15192:7;15183:6;15172:9;15168:22;15147:53;:::i;:::-;15137:63;;15092:118;14743:474;;;;;:::o;15223:180::-;15271:77;15268:1;15261:88;15368:4;15365:1;15358:15;15392:4;15389:1;15382:15;15409:320;15453:6;15490:1;15484:4;15480:12;15470:22;;15537:1;15531:4;15527:12;15558:18;15548:81;;15614:4;15606:6;15602:17;15592:27;;15548:81;15676:2;15668:6;15665:14;15645:18;15642:38;15639:84;;15695:18;;:::i;:::-;15639:84;15460:269;15409:320;;;:::o;15735:180::-;15783:77;15780:1;15773:88;15880:4;15877:1;15870:15;15904:4;15901:1;15894:15;15921:191;15961:3;15980:20;15998:1;15980:20;:::i;:::-;15975:25;;16014:20;16032:1;16014:20;:::i;:::-;16009:25;;16057:1;16054;16050:9;16043:16;;16078:3;16075:1;16072:10;16069:36;;;16085:18;;:::i;:::-;16069:36;15921:191;;;;:::o;16118:205::-;16157:3;16176:19;16193:1;16176:19;:::i;:::-;16171:24;;16209:19;16226:1;16209:19;:::i;:::-;16204:24;;16251:1;16248;16244:9;16237:16;;16274:18;16269:3;16266:27;16263:53;;;16296:18;;:::i;:::-;16263:53;16118:205;;;;:::o;16329:180::-;16469:32;16465:1;16457:6;16453:14;16446:56;16329:180;:::o;16515:366::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:419::-;17053:4;17091:2;17080:9;17076:18;17068:26;;17140:9;17134:4;17130:20;17126:1;17115:9;17111:17;17104:47;17168:131;17294:4;17168:131;:::i;:::-;17160:139;;16887:419;;;:::o;17312:94::-;17345:8;17393:5;17389:2;17385:14;17364:35;;17312:94;;;:::o;17412:::-;17451:7;17480:20;17494:5;17480:20;:::i;:::-;17469:31;;17412:94;;;:::o;17512:100::-;17551:7;17580:26;17600:5;17580:26;:::i;:::-;17569:37;;17512:100;;;:::o;17618:157::-;17723:45;17743:24;17761:5;17743:24;:::i;:::-;17723:45;:::i;:::-;17718:3;17711:58;17618:157;;:::o;17781:256::-;17893:3;17908:75;17979:3;17970:6;17908:75;:::i;:::-;18008:2;18003:3;17999:12;17992:19;;18028:3;18021:10;;17781:256;;;;:::o;18043:164::-;18183:16;18179:1;18171:6;18167:14;18160:40;18043:164;:::o;18213:366::-;18355:3;18376:67;18440:2;18435:3;18376:67;:::i;:::-;18369:74;;18452:93;18541:3;18452:93;:::i;:::-;18570:2;18565:3;18561:12;18554:19;;18213:366;;;:::o;18585:419::-;18751:4;18789:2;18778:9;18774:18;18766:26;;18838:9;18832:4;18828:20;18824:1;18813:9;18809:17;18802:47;18866:131;18992:4;18866:131;:::i;:::-;18858:139;;18585:419;;;:::o;19010:174::-;19150:26;19146:1;19138:6;19134:14;19127:50;19010:174;:::o;19190:366::-;19332:3;19353:67;19417:2;19412:3;19353:67;:::i;:::-;19346:74;;19429:93;19518:3;19429:93;:::i;:::-;19547:2;19542:3;19538:12;19531:19;;19190:366;;;:::o;19562:419::-;19728:4;19766:2;19755:9;19751:18;19743:26;;19815:9;19809:4;19805:20;19801:1;19790:9;19786:17;19779:47;19843:131;19969:4;19843:131;:::i;:::-;19835:139;;19562:419;;;:::o;19987:168::-;20127:20;20123:1;20115:6;20111:14;20104:44;19987:168;:::o;20161:366::-;20303:3;20324:67;20388:2;20383:3;20324:67;:::i;:::-;20317:74;;20400:93;20489:3;20400:93;:::i;:::-;20518:2;20513:3;20509:12;20502:19;;20161:366;;;:::o;20533:419::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20786:9;20780:4;20776:20;20772:1;20761:9;20757:17;20750:47;20814:131;20940:4;20814:131;:::i;:::-;20806:139;;20533:419;;;:::o;20958:182::-;21098:34;21094:1;21086:6;21082:14;21075:58;20958:182;:::o;21146:366::-;21288:3;21309:67;21373:2;21368:3;21309:67;:::i;:::-;21302:74;;21385:93;21474:3;21385:93;:::i;:::-;21503:2;21498:3;21494:12;21487:19;;21146:366;;;:::o;21518:419::-;21684:4;21722:2;21711:9;21707:18;21699:26;;21771:9;21765:4;21761:20;21757:1;21746:9;21742:17;21735:47;21799:131;21925:4;21799:131;:::i;:::-;21791:139;;21518:419;;;:::o;21943:97::-;22002:6;22030:3;22020:13;;21943:97;;;;:::o;22046:141::-;22095:4;22118:3;22110:11;;22141:3;22138:1;22131:14;22175:4;22172:1;22162:18;22154:26;;22046:141;;;:::o;22193:93::-;22230:6;22277:2;22272;22265:5;22261:14;22257:23;22247:33;;22193:93;;;:::o;22292:107::-;22336:8;22386:5;22380:4;22376:16;22355:37;;22292:107;;;;:::o;22405:393::-;22474:6;22524:1;22512:10;22508:18;22547:97;22577:66;22566:9;22547:97;:::i;:::-;22665:39;22695:8;22684:9;22665:39;:::i;:::-;22653:51;;22737:4;22733:9;22726:5;22722:21;22713:30;;22786:4;22776:8;22772:19;22765:5;22762:30;22752:40;;22481:317;;22405:393;;;;;:::o;22804:60::-;22832:3;22853:5;22846:12;;22804:60;;;:::o;22870:142::-;22920:9;22953:53;22971:34;22980:24;22998:5;22980:24;:::i;:::-;22971:34;:::i;:::-;22953:53;:::i;:::-;22940:66;;22870:142;;;:::o;23018:75::-;23061:3;23082:5;23075:12;;23018:75;;;:::o;23099:269::-;23209:39;23240:7;23209:39;:::i;:::-;23270:91;23319:41;23343:16;23319:41;:::i;:::-;23311:6;23304:4;23298:11;23270:91;:::i;:::-;23264:4;23257:105;23175:193;23099:269;;;:::o;23374:73::-;23419:3;23374:73;:::o;23453:189::-;23530:32;;:::i;:::-;23571:65;23629:6;23621;23615:4;23571:65;:::i;:::-;23506:136;23453:189;;:::o;23648:186::-;23708:120;23725:3;23718:5;23715:14;23708:120;;;23779:39;23816:1;23809:5;23779:39;:::i;:::-;23752:1;23745:5;23741:13;23732:22;;23708:120;;;23648:186;;:::o;23840:543::-;23941:2;23936:3;23933:11;23930:446;;;23975:38;24007:5;23975:38;:::i;:::-;24059:29;24077:10;24059:29;:::i;:::-;24049:8;24045:44;24242:2;24230:10;24227:18;24224:49;;;24263:8;24248:23;;24224:49;24286:80;24342:22;24360:3;24342:22;:::i;:::-;24332:8;24328:37;24315:11;24286:80;:::i;:::-;23945:431;;23930:446;23840:543;;;:::o;24389:117::-;24443:8;24493:5;24487:4;24483:16;24462:37;;24389:117;;;;:::o;24512:169::-;24556:6;24589:51;24637:1;24633:6;24625:5;24622:1;24618:13;24589:51;:::i;:::-;24585:56;24670:4;24664;24660:15;24650:25;;24563:118;24512:169;;;;:::o;24686:295::-;24762:4;24908:29;24933:3;24927:4;24908:29;:::i;:::-;24900:37;;24970:3;24967:1;24963:11;24957:4;24954:21;24946:29;;24686:295;;;;:::o;24986:1403::-;25110:44;25150:3;25145;25110:44;:::i;:::-;25219:18;25211:6;25208:30;25205:56;;;25241:18;;:::i;:::-;25205:56;25285:38;25317:4;25311:11;25285:38;:::i;:::-;25370:67;25430:6;25422;25416:4;25370:67;:::i;:::-;25464:1;25493:2;25485:6;25482:14;25510:1;25505:632;;;;26181:1;26198:6;26195:84;;;26254:9;26249:3;26245:19;26232:33;26223:42;;26195:84;26305:67;26365:6;26358:5;26305:67;:::i;:::-;26299:4;26292:81;26154:229;25475:908;;25505:632;25557:4;25553:9;25545:6;25541:22;25591:37;25623:4;25591:37;:::i;:::-;25650:1;25664:215;25678:7;25675:1;25672:14;25664:215;;;25764:9;25759:3;25755:19;25742:33;25734:6;25727:49;25815:1;25807:6;25803:14;25793:24;;25862:2;25851:9;25847:18;25834:31;;25701:4;25698:1;25694:12;25689:17;;25664:215;;;25907:6;25898:7;25895:19;25892:186;;;25972:9;25967:3;25963:19;25950:33;26015:48;26057:4;26049:6;26045:17;26034:9;26015:48;:::i;:::-;26007:6;26000:64;25915:163;25892:186;26124:1;26120;26112:6;26108:14;26104:22;26098:4;26091:36;25512:625;;;25475:908;;25085:1304;;;24986:1403;;;:::o;26395:148::-;26497:11;26534:3;26519:18;;26395:148;;;;:::o;26549:390::-;26655:3;26683:39;26716:5;26683:39;:::i;:::-;26738:89;26820:6;26815:3;26738:89;:::i;:::-;26731:96;;26836:65;26894:6;26889:3;26882:4;26875:5;26871:16;26836:65;:::i;:::-;26926:6;26921:3;26917:16;26910:23;;26659:280;26549:390;;;;:::o;26945:435::-;27125:3;27147:95;27238:3;27229:6;27147:95;:::i;:::-;27140:102;;27259:95;27350:3;27341:6;27259:95;:::i;:::-;27252:102;;27371:3;27364:10;;26945:435;;;;;:::o;27386:225::-;27526:34;27522:1;27514:6;27510:14;27503:58;27595:8;27590:2;27582:6;27578:15;27571:33;27386:225;:::o;27617:366::-;27759:3;27780:67;27844:2;27839:3;27780:67;:::i;:::-;27773:74;;27856:93;27945:3;27856:93;:::i;:::-;27974:2;27969:3;27965:12;27958:19;;27617:366;;;:::o;27989:419::-;28155:4;28193:2;28182:9;28178:18;28170:26;;28242:9;28236:4;28232:20;28228:1;28217:9;28213:17;28206:47;28270:131;28396:4;28270:131;:::i;:::-;28262:139;;27989:419;;;:::o;28414:182::-;28554:34;28550:1;28542:6;28538:14;28531:58;28414:182;:::o;28602:366::-;28744:3;28765:67;28829:2;28824:3;28765:67;:::i;:::-;28758:74;;28841:93;28930:3;28841:93;:::i;:::-;28959:2;28954:3;28950:12;28943:19;;28602:366;;;:::o;28974:419::-;29140:4;29178:2;29167:9;29163:18;29155:26;;29227:9;29221:4;29217:20;29213:1;29202:9;29198:17;29191:47;29255:131;29381:4;29255:131;:::i;:::-;29247:139;;28974:419;;;:::o;29399:98::-;29450:6;29484:5;29478:12;29468:22;;29399:98;;;:::o;29503:168::-;29586:11;29620:6;29615:3;29608:19;29660:4;29655:3;29651:14;29636:29;;29503:168;;;;:::o;29677:373::-;29763:3;29791:38;29823:5;29791:38;:::i;:::-;29845:70;29908:6;29903:3;29845:70;:::i;:::-;29838:77;;29924:65;29982:6;29977:3;29970:4;29963:5;29959:16;29924:65;:::i;:::-;30014:29;30036:6;30014:29;:::i;:::-;30009:3;30005:39;29998:46;;29767:283;29677:373;;;;:::o;30056:640::-;30251:4;30289:3;30278:9;30274:19;30266:27;;30303:71;30371:1;30360:9;30356:17;30347:6;30303:71;:::i;:::-;30384:72;30452:2;30441:9;30437:18;30428:6;30384:72;:::i;:::-;30466;30534:2;30523:9;30519:18;30510:6;30466:72;:::i;:::-;30585:9;30579:4;30575:20;30570:2;30559:9;30555:18;30548:48;30613:76;30684:4;30675:6;30613:76;:::i;:::-;30605:84;;30056:640;;;;;;;:::o;30702:141::-;30758:5;30789:6;30783:13;30774:22;;30805:32;30831:5;30805:32;:::i;:::-;30702:141;;;;:::o;30849:349::-;30918:6;30967:2;30955:9;30946:7;30942:23;30938:32;30935:119;;;30973:79;;:::i;:::-;30935:119;31093:1;31118:63;31173:7;31164:6;31153:9;31149:22;31118:63;:::i;:::-;31108:73;;31064:127;30849:349;;;;:::o;31204:180::-;31252:77;31249:1;31242:88;31349:4;31346:1;31339:15;31373:4;31370:1;31363:15;31390:233;31429:3;31452:24;31470:5;31452:24;:::i;:::-;31443:33;;31498:66;31491:5;31488:77;31485:103;;31568:18;;:::i;:::-;31485:103;31615:1;31608:5;31604:13;31597:20;;31390:233;;;:::o

Swarm Source

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