ETH Price: $3,238.19 (+0.52%)
 

Overview

Max Total Supply

61 BRRROCK

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BRRROCK
0xcfc27b737a117deb845f9923d284c4bda18fb5ac
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:
Brrrock

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-21
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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


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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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)
        }
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.13;

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

pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.17;

contract Brrrock is ERC721A, DefaultOperatorFilterer, Ownable {
    uint256 public maxSupply = 999;
    uint256 public cost = 0.002 ether;
    uint256 public maxPerWallet = 3;
    uint256 public maxFreePerWallet = 1;
    uint256 public maxMintAmountPerTx = 3;
    string public baseURI;
    bool public paused = true;
    
    constructor(
        string memory _tokenName,
        string memory _tokenSymbol
    ) ERC721A(_tokenName, _tokenSymbol) {}

    modifier mintCompliance(uint256 quantity) {
        require(quantity > 0 && quantity <= maxMintAmountPerTx, "Invalid mint amount!");
        require(_numberMinted(msg.sender) + quantity <= maxPerWallet, "Max per wallet mint exceeded");
        require(totalSupply() + quantity < maxSupply + 1, "Max supply exceeded");
        _;
    }

    modifier mintPriceCompliance(uint256 quantity) {
        uint256 realCost = 0;
        if (_numberMinted(msg.sender) < maxFreePerWallet) {
            uint256 freeMintsLeft = maxFreePerWallet - _numberMinted(msg.sender);
            realCost = cost * freeMintsLeft;
        }
        require(msg.value >= cost * quantity - realCost, "Please send the exact amount.");
        _;
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) mintPriceCompliance(quantity) {
        require(!paused, "The contract is paused!");
        _safeMint(msg.sender, quantity);
    }

    function ownerMint(uint256 quantity)
        public
        payable
        mintCompliance(quantity)
        onlyOwner
    {
        _safeMint(_msgSender(), quantity);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));

    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    // OPENSEA's royalties functions
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e760095566071afd498d0000600a556003600b556001600c556003600d556001600f60006101000a81548160ff0219169083151502179055503480156200004c57600080fd5b506040516200436f3803806200436f833981810160405281019062000072919062000550565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001838381600290816200009c919062000820565b508060039081620000ae919062000820565b50620000bf620002e660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002bc57801562000182576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001489291906200094c565b600060405180830381600087803b1580156200016357600080fd5b505af115801562000178573d6000803e3d6000fd5b50505050620002bb565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200023c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002029291906200094c565b600060405180830381600087803b1580156200021d57600080fd5b505af115801562000232573d6000803e3d6000fd5b50505050620002ba565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000285919062000979565b600060405180830381600087803b158015620002a057600080fd5b505af1158015620002b5573d6000803e3d6000fd5b505050505b5b5b5050620002de620002d2620002ef60201b60201c565b620002f760201b60201c565b505062000996565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042682620003db565b810181811067ffffffffffffffff82111715620004485762000447620003ec565b5b80604052505050565b60006200045d620003bd565b90506200046b82826200041b565b919050565b600067ffffffffffffffff8211156200048e576200048d620003ec565b5b6200049982620003db565b9050602081019050919050565b60005b83811015620004c6578082015181840152602081019050620004a9565b60008484015250505050565b6000620004e9620004e38462000470565b62000451565b905082815260208101848484011115620005085762000507620003d6565b5b62000515848285620004a6565b509392505050565b600082601f830112620005355762000534620003d1565b5b815162000547848260208601620004d2565b91505092915050565b600080604083850312156200056a5762000569620003c7565b5b600083015167ffffffffffffffff8111156200058b576200058a620003cc565b5b62000599858286016200051d565b925050602083015167ffffffffffffffff811115620005bd57620005bc620003cc565b5b620005cb858286016200051d565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062857607f821691505b6020821081036200063e576200063d620005e0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000669565b620006b4868362000669565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000701620006fb620006f584620006cc565b620006d6565b620006cc565b9050919050565b6000819050919050565b6200071d83620006e0565b620007356200072c8262000708565b84845462000676565b825550505050565b600090565b6200074c6200073d565b6200075981848462000712565b505050565b5b8181101562000781576200077560008262000742565b6001810190506200075f565b5050565b601f821115620007d0576200079a8162000644565b620007a58462000659565b81016020851015620007b5578190505b620007cd620007c48562000659565b8301826200075e565b50505b505050565b600082821c905092915050565b6000620007f560001984600802620007d5565b1980831691505092915050565b6000620008108383620007e2565b9150826002028217905092915050565b6200082b82620005d5565b67ffffffffffffffff811115620008475762000846620003ec565b5b6200085382546200060f565b6200086082828562000785565b600060209050601f83116001811462000898576000841562000883578287015190505b6200088f858262000802565b865550620008ff565b601f198416620008a88662000644565b60005b82811015620008d257848901518255600182019150602085019450602081019050620008ab565b86831015620008f25784890151620008ee601f891682620007e2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009348262000907565b9050919050565b620009468162000927565b82525050565b60006040820190506200096360008301856200093b565b6200097260208301846200093b565b9392505050565b60006020820190506200099060008301846200093b565b92915050565b6139c980620009a66000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f19e75d414610713578063f2fde38b1461072f576101e3565b8063a22cb465146105f1578063a70273571461061a578063b88d4fde14610645578063c87b56dd1461066e576101e3565b8063715018a6116100d1578063715018a6146105595780638da5cb5b1461057057806394354fd01461059b57806395d89b41146105c6576101e3565b80636c0360eb1461049f5780636d7c4a4b146104ca5780636f8b44b0146104f357806370a082311461051c576101e3565b80632db115441161017a578063453c231011610149578063453c2310146103e357806355f804b31461040e5780635c975abb146104375780636352211e14610462576101e3565b80632db115441461035e5780633ccfd60b1461037a57806342842e0e1461039157806344a0d68a146103ba576101e3565b806313faede6116101b657806313faede6146102b657806316c38b3c146102e157806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612789565b610758565b60405161021c91906127d1565b60405180910390f35b34801561023157600080fd5b5061023a6107ea565b604051610247919061287c565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906128d4565b61087c565b6040516102849190612942565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612989565b6108f8565b005b3480156102c257600080fd5b506102cb610a02565b6040516102d891906129d8565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612a1f565b610a08565b005b34801561031657600080fd5b5061031f610a2d565b60405161032c91906129d8565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612a4c565b610a44565b005b610378600480360381019061037391906128d4565b610b94565b005b34801561038657600080fd5b5061038f610d9c565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a4c565b610e53565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906128d4565b610fa3565b005b3480156103ef57600080fd5b506103f8610fb5565b60405161040591906129d8565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612bd4565b610fbb565b005b34801561044357600080fd5b5061044c610fd6565b60405161045991906127d1565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906128d4565b610fe9565b6040516104969190612942565b60405180910390f35b3480156104ab57600080fd5b506104b4610ffb565b6040516104c1919061287c565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906128d4565b611089565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906128d4565b61109b565b005b34801561052857600080fd5b50610543600480360381019061053e9190612c1d565b6110ad565b60405161055091906129d8565b60405180910390f35b34801561056557600080fd5b5061056e611141565b005b34801561057c57600080fd5b50610585611155565b6040516105929190612942565b60405180910390f35b3480156105a757600080fd5b506105b061117f565b6040516105bd91906129d8565b60405180910390f35b3480156105d257600080fd5b506105db611185565b6040516105e8919061287c565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612c4a565b611217565b005b34801561062657600080fd5b5061062f611321565b60405161063c91906129d8565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612d2b565b611327565b005b34801561067a57600080fd5b50610695600480360381019061069091906128d4565b61147a565b6040516106a2919061287c565b60405180910390f35b3480156106b757600080fd5b506106c06114f6565b6040516106cd91906129d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612dae565b6114fc565b60405161070a91906127d1565b60405180910390f35b61072d600480360381019061072891906128d4565b611590565b005b34801561073b57600080fd5b5061075660048036038101906107519190612c1d565b6116b9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f990612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461082590612e1d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b60006108878261173c565b6108bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610970929190612e4e565b602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b19190612e8c565b6109f257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109e99190612942565b60405180910390fd5b5b6109fd838361179b565b505050565b600a5481565b610a10611941565b80600f60006101000a81548160ff02191690831515021790555050565b6000610a376119bf565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b82573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab657610ab18484846119c8565b610b8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aff929190612e4e565b602060405180830381865afa158015610b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b409190612e8c565b610b8157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b789190612942565b60405180910390fd5b5b610b8d8484846119c8565b5b50505050565b80600081118015610ba75750600d548111155b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612f05565b60405180910390fd5b600b5481610bf3336119d8565b610bfd9190612f54565b1115610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590612fd4565b60405180910390fd5b6001600954610c4d9190612f54565b81610c56610a2d565b610c609190612f54565b10610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613040565b60405180910390fd5b816000600c54610caf336119d8565b1015610ce1576000610cc0336119d8565b600c54610ccd9190613060565b905080600a54610cdd9190613094565b9150505b8082600a54610cf09190613094565b610cfa9190613060565b341015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613122565b60405180910390fd5b600f60009054906101000a900460ff1615610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061318e565b60405180910390fd5b610d963385611a2f565b50505050565b610da4611941565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dca906131df565b60006040518083038185875af1925050503d8060008114610e07576040519150601f19603f3d011682016040523d82523d6000602084013e610e0c565b606091505b5050905080610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613240565b60405180910390fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f91573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec557610ec0848484611a4d565b610f9d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f0e929190612e4e565b602060405180830381865afa158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f9190612e8c565b610f9057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f879190612942565b60405180910390fd5b5b610f9c848484611a4d565b5b50505050565b610fab611941565b80600a8190555050565b600b5481565b610fc3611941565b80600e9081610fd2919061340c565b5050565b600f60009054906101000a900460ff1681565b6000610ff482611a6d565b9050919050565b600e805461100890612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461103490612e1d565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b505050505081565b611091611941565b80600c8190555050565b6110a3611941565b8060098190555050565b6000806110b983611b39565b036110f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611149611941565b6111536000611b43565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461119490612e1d565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090612e1d565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611312576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161128f929190612e4e565b602060405180830381865afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190612e8c565b61131157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113089190612942565b60405180910390fd5b5b61131c8383611c09565b505050565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611466573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361139a5761139585858585611d80565b611473565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113e3929190612e4e565b602060405180830381865afa158015611400573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114249190612e8c565b61146557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161145c9190612942565b60405180910390fd5b5b61147285858585611d80565b5b5050505050565b60606114858261173c565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613550565b60405180910390fd5b600e6114cf83611df3565b6040516020016114e092919061367b565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b806000811180156115a35750600d548111155b6115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990612f05565b60405180910390fd5b600b54816115ef336119d8565b6115f99190612f54565b111561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190612fd4565b60405180910390fd5b60016009546116499190612f54565b81611652610a2d565b61165c9190612f54565b1061169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613040565b60405180910390fd5b6116a4611941565b6116b56116af611f53565b83611a2f565b5050565b6116c1611941565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061371c565b60405180910390fd5b61173981611b43565b50565b6000816117476119bf565b11158015611756575060005482105b8015611794575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006117a682611a6d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661182c611f5b565b73ffffffffffffffffffffffffffffffffffffffff161461188f5761185881611853611f5b565b6114fc565b61188e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611949611f53565b73ffffffffffffffffffffffffffffffffffffffff16611967611155565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490613788565b60405180910390fd5b565b60006001905090565b6119d3838383611f63565b505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611a49828260405180602001604052806000815250612328565b5050565b611a6883838360405180602001604052806000815250611327565b505050565b60008082905080611a7c6119bf565b11611b0257600054811015611b015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aff575b60008103611af5576004600083600190039350838152602001908152602001600020549050611acb565b8092505050611b34565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c11611f5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c75576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c82611f5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2f611f5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7491906127d1565b60405180910390a35050565b611d8b848484611f63565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ded57611db6848484846125b7565b611dec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4e565b600082905060005b60008214611e6c578080611e55906137a8565b915050600a82611e65919061381f565b9150611e42565b60008167ffffffffffffffff811115611e8857611e87612aa9565b5b6040519080825280601f01601f191660200182016040528015611eba5781602001600182028036833780820191505090505b5090505b60008514611f4757600182611ed39190613060565b9150600a85611ee29190613850565b6030611eee9190612f54565b60f81b818381518110611f0457611f03613881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f40919061381f565b9450611ebe565b8093505050505b919050565b600033905090565b600033905090565b6000611f6e82611a6d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661202e611f5b565b73ffffffffffffffffffffffffffffffffffffffff16148061205d575061205c86612057611f5b565b6114fc565b5b8061209a575061206b611f5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806120d3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120de86611b39565b03612115576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121228686866001612707565b600061212d83611b39565b14612169576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61223087611b39565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122b857600060018501905060006004600083815260200190815260200160002054036122b65760005481146122b5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612320868686600161270d565b505050505050565b600080549050600061233985611b39565b03612370576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036123aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b76000858386612707565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161241c60018514612713565b901b60a042901b61242c86611b39565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612530575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e060008784806001019550876125b7565b612516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247157826000541461252b57600080fd5b61259b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612531575b8160008190555050506125b1600085838661270d565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125dd611f5b565b8786866040518563ffffffff1660e01b81526004016125ff9493929190613905565b6020604051808303816000875af192505050801561263b57506040513d601f19601f820116820180604052508101906126389190613966565b60015b6126b4573d806000811461266b576040519150601f19603f3d011682016040523d82523d6000602084013e612670565b606091505b5060008151036126ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61276681612731565b811461277157600080fd5b50565b6000813590506127838161275d565b92915050565b60006020828403121561279f5761279e612727565b5b60006127ad84828501612774565b91505092915050565b60008115159050919050565b6127cb816127b6565b82525050565b60006020820190506127e660008301846127c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282657808201518184015260208101905061280b565b60008484015250505050565b6000601f19601f8301169050919050565b600061284e826127ec565b61285881856127f7565b9350612868818560208601612808565b61287181612832565b840191505092915050565b600060208201905081810360008301526128968184612843565b905092915050565b6000819050919050565b6128b18161289e565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612727565b5b60006128f8848285016128bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b82525050565b60006020820190506129576000830184612933565b92915050565b61296681612921565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612727565b5b60006129ae85828601612974565b92505060206129bf858286016128bf565b9150509250929050565b6129d28161289e565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b6129fc816127b6565b8114612a0757600080fd5b50565b600081359050612a19816129f3565b92915050565b600060208284031215612a3557612a34612727565b5b6000612a4384828501612a0a565b91505092915050565b600080600060608486031215612a6557612a64612727565b5b6000612a7386828701612974565b9350506020612a8486828701612974565b9250506040612a95868287016128bf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ae182612832565b810181811067ffffffffffffffff82111715612b0057612aff612aa9565b5b80604052505050565b6000612b1361271d565b9050612b1f8282612ad8565b919050565b600067ffffffffffffffff821115612b3f57612b3e612aa9565b5b612b4882612832565b9050602081019050919050565b82818337600083830152505050565b6000612b77612b7284612b24565b612b09565b905082815260208101848484011115612b9357612b92612aa4565b5b612b9e848285612b55565b509392505050565b600082601f830112612bbb57612bba612a9f565b5b8135612bcb848260208601612b64565b91505092915050565b600060208284031215612bea57612be9612727565b5b600082013567ffffffffffffffff811115612c0857612c0761272c565b5b612c1484828501612ba6565b91505092915050565b600060208284031215612c3357612c32612727565b5b6000612c4184828501612974565b91505092915050565b60008060408385031215612c6157612c60612727565b5b6000612c6f85828601612974565b9250506020612c8085828601612a0a565b9150509250929050565b600067ffffffffffffffff821115612ca557612ca4612aa9565b5b612cae82612832565b9050602081019050919050565b6000612cce612cc984612c8a565b612b09565b905082815260208101848484011115612cea57612ce9612aa4565b5b612cf5848285612b55565b509392505050565b600082601f830112612d1257612d11612a9f565b5b8135612d22848260208601612cbb565b91505092915050565b60008060008060808587031215612d4557612d44612727565b5b6000612d5387828801612974565b9450506020612d6487828801612974565b9350506040612d75878288016128bf565b925050606085013567ffffffffffffffff811115612d9657612d9561272c565b5b612da287828801612cfd565b91505092959194509250565b60008060408385031215612dc557612dc4612727565b5b6000612dd385828601612974565b9250506020612de485828601612974565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3557607f821691505b602082108103612e4857612e47612dee565b5b50919050565b6000604082019050612e636000830185612933565b612e706020830184612933565b9392505050565b600081519050612e86816129f3565b92915050565b600060208284031215612ea257612ea1612727565b5b6000612eb084828501612e77565b91505092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612eef6014836127f7565b9150612efa82612eb9565b602082019050919050565b60006020820190508181036000830152612f1e81612ee2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5f8261289e565b9150612f6a8361289e565b9250828201905080821115612f8257612f81612f25565b5b92915050565b7f4d6178207065722077616c6c6574206d696e7420657863656564656400000000600082015250565b6000612fbe601c836127f7565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061302a6013836127f7565b915061303582612ff4565b602082019050919050565b600060208201905081810360008301526130598161301d565b9050919050565b600061306b8261289e565b91506130768361289e565b925082820390508181111561308e5761308d612f25565b5b92915050565b600061309f8261289e565b91506130aa8361289e565b92508282026130b88161289e565b915082820484148315176130cf576130ce612f25565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061310c601d836127f7565b9150613117826130d6565b602082019050919050565b6000602082019050818103600083015261313b816130ff565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006131786017836127f7565b915061318382613142565b602082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b600081905092915050565b50565b60006131c96000836131ae565b91506131d4826131b9565b600082019050919050565b60006131ea826131bc565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061322a6010836127f7565b9150613235826131f4565b602082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132c27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613285565b6132cc8683613285565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133096133046132ff8461289e565b6132e4565b61289e565b9050919050565b6000819050919050565b613323836132ee565b61333761332f82613310565b848454613292565b825550505050565b600090565b61334c61333f565b61335781848461331a565b505050565b5b8181101561337b57613370600082613344565b60018101905061335d565b5050565b601f8211156133c05761339181613260565b61339a84613275565b810160208510156133a9578190505b6133bd6133b585613275565b83018261335c565b50505b505050565b600082821c905092915050565b60006133e3600019846008026133c5565b1980831691505092915050565b60006133fc83836133d2565b9150826002028217905092915050565b613415826127ec565b67ffffffffffffffff81111561342e5761342d612aa9565b5b6134388254612e1d565b61344382828561337f565b600060209050601f8311600181146134765760008415613464578287015190505b61346e85826133f0565b8655506134d6565b601f19841661348486613260565b60005b828110156134ac57848901518255600182019150602085019450602081019050613487565b868310156134c957848901516134c5601f8916826133d2565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061353a602f836127f7565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b600081905092915050565b6000815461358881612e1d565b6135928186613570565b945060018216600081146135ad57600181146135c2576135f5565b60ff19831686528115158202860193506135f5565b6135cb85613260565b60005b838110156135ed578154818901526001820191506020810190506135ce565b838801955050505b50505092915050565b6000613609826127ec565b6136138185613570565b9350613623818560208601612808565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613665600583613570565b91506136708261362f565b600582019050919050565b6000613687828561357b565b915061369382846135fe565b915061369e82613658565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137066026836127f7565b9150613711826136aa565b604082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137726020836127f7565b915061377d8261373c565b602082019050919050565b600060208201905081810360008301526137a181613765565b9050919050565b60006137b38261289e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137e5576137e4612f25565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382a8261289e565b91506138358361289e565b925082613845576138446137f0565b5b828204905092915050565b600061385b8261289e565b91506138668361289e565b925082613876576138756137f0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006138d7826138b0565b6138e181856138bb565b93506138f1818560208601612808565b6138fa81612832565b840191505092915050565b600060808201905061391a6000830187612933565b6139276020830186612933565b61393460408301856129c9565b818103606083015261394681846138cc565b905095945050505050565b6000815190506139608161275d565b92915050565b60006020828403121561397c5761397b612727565b5b600061398a84828501613951565b9150509291505056fea2646970667358221220463a7411506f8913004c775f78bc23d172f747053087440fda9c68bfe8363fd864736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007425252524f434b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007425252524f434b00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f19e75d414610713578063f2fde38b1461072f576101e3565b8063a22cb465146105f1578063a70273571461061a578063b88d4fde14610645578063c87b56dd1461066e576101e3565b8063715018a6116100d1578063715018a6146105595780638da5cb5b1461057057806394354fd01461059b57806395d89b41146105c6576101e3565b80636c0360eb1461049f5780636d7c4a4b146104ca5780636f8b44b0146104f357806370a082311461051c576101e3565b80632db115441161017a578063453c231011610149578063453c2310146103e357806355f804b31461040e5780635c975abb146104375780636352211e14610462576101e3565b80632db115441461035e5780633ccfd60b1461037a57806342842e0e1461039157806344a0d68a146103ba576101e3565b806313faede6116101b657806313faede6146102b657806316c38b3c146102e157806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612789565b610758565b60405161021c91906127d1565b60405180910390f35b34801561023157600080fd5b5061023a6107ea565b604051610247919061287c565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906128d4565b61087c565b6040516102849190612942565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612989565b6108f8565b005b3480156102c257600080fd5b506102cb610a02565b6040516102d891906129d8565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612a1f565b610a08565b005b34801561031657600080fd5b5061031f610a2d565b60405161032c91906129d8565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612a4c565b610a44565b005b610378600480360381019061037391906128d4565b610b94565b005b34801561038657600080fd5b5061038f610d9c565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a4c565b610e53565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906128d4565b610fa3565b005b3480156103ef57600080fd5b506103f8610fb5565b60405161040591906129d8565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612bd4565b610fbb565b005b34801561044357600080fd5b5061044c610fd6565b60405161045991906127d1565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906128d4565b610fe9565b6040516104969190612942565b60405180910390f35b3480156104ab57600080fd5b506104b4610ffb565b6040516104c1919061287c565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906128d4565b611089565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906128d4565b61109b565b005b34801561052857600080fd5b50610543600480360381019061053e9190612c1d565b6110ad565b60405161055091906129d8565b60405180910390f35b34801561056557600080fd5b5061056e611141565b005b34801561057c57600080fd5b50610585611155565b6040516105929190612942565b60405180910390f35b3480156105a757600080fd5b506105b061117f565b6040516105bd91906129d8565b60405180910390f35b3480156105d257600080fd5b506105db611185565b6040516105e8919061287c565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612c4a565b611217565b005b34801561062657600080fd5b5061062f611321565b60405161063c91906129d8565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612d2b565b611327565b005b34801561067a57600080fd5b50610695600480360381019061069091906128d4565b61147a565b6040516106a2919061287c565b60405180910390f35b3480156106b757600080fd5b506106c06114f6565b6040516106cd91906129d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612dae565b6114fc565b60405161070a91906127d1565b60405180910390f35b61072d600480360381019061072891906128d4565b611590565b005b34801561073b57600080fd5b5061075660048036038101906107519190612c1d565b6116b9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f990612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461082590612e1d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b60006108878261173c565b6108bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610970929190612e4e565b602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b19190612e8c565b6109f257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109e99190612942565b60405180910390fd5b5b6109fd838361179b565b505050565b600a5481565b610a10611941565b80600f60006101000a81548160ff02191690831515021790555050565b6000610a376119bf565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b82573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab657610ab18484846119c8565b610b8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aff929190612e4e565b602060405180830381865afa158015610b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b409190612e8c565b610b8157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b789190612942565b60405180910390fd5b5b610b8d8484846119c8565b5b50505050565b80600081118015610ba75750600d548111155b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612f05565b60405180910390fd5b600b5481610bf3336119d8565b610bfd9190612f54565b1115610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590612fd4565b60405180910390fd5b6001600954610c4d9190612f54565b81610c56610a2d565b610c609190612f54565b10610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613040565b60405180910390fd5b816000600c54610caf336119d8565b1015610ce1576000610cc0336119d8565b600c54610ccd9190613060565b905080600a54610cdd9190613094565b9150505b8082600a54610cf09190613094565b610cfa9190613060565b341015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613122565b60405180910390fd5b600f60009054906101000a900460ff1615610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061318e565b60405180910390fd5b610d963385611a2f565b50505050565b610da4611941565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dca906131df565b60006040518083038185875af1925050503d8060008114610e07576040519150601f19603f3d011682016040523d82523d6000602084013e610e0c565b606091505b5050905080610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613240565b60405180910390fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f91573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec557610ec0848484611a4d565b610f9d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f0e929190612e4e565b602060405180830381865afa158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f9190612e8c565b610f9057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f879190612942565b60405180910390fd5b5b610f9c848484611a4d565b5b50505050565b610fab611941565b80600a8190555050565b600b5481565b610fc3611941565b80600e9081610fd2919061340c565b5050565b600f60009054906101000a900460ff1681565b6000610ff482611a6d565b9050919050565b600e805461100890612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461103490612e1d565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b505050505081565b611091611941565b80600c8190555050565b6110a3611941565b8060098190555050565b6000806110b983611b39565b036110f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611149611941565b6111536000611b43565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461119490612e1d565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090612e1d565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611312576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161128f929190612e4e565b602060405180830381865afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190612e8c565b61131157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113089190612942565b60405180910390fd5b5b61131c8383611c09565b505050565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611466573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361139a5761139585858585611d80565b611473565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113e3929190612e4e565b602060405180830381865afa158015611400573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114249190612e8c565b61146557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161145c9190612942565b60405180910390fd5b5b61147285858585611d80565b5b5050505050565b60606114858261173c565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613550565b60405180910390fd5b600e6114cf83611df3565b6040516020016114e092919061367b565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b806000811180156115a35750600d548111155b6115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990612f05565b60405180910390fd5b600b54816115ef336119d8565b6115f99190612f54565b111561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190612fd4565b60405180910390fd5b60016009546116499190612f54565b81611652610a2d565b61165c9190612f54565b1061169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613040565b60405180910390fd5b6116a4611941565b6116b56116af611f53565b83611a2f565b5050565b6116c1611941565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061371c565b60405180910390fd5b61173981611b43565b50565b6000816117476119bf565b11158015611756575060005482105b8015611794575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006117a682611a6d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661182c611f5b565b73ffffffffffffffffffffffffffffffffffffffff161461188f5761185881611853611f5b565b6114fc565b61188e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611949611f53565b73ffffffffffffffffffffffffffffffffffffffff16611967611155565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490613788565b60405180910390fd5b565b60006001905090565b6119d3838383611f63565b505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611a49828260405180602001604052806000815250612328565b5050565b611a6883838360405180602001604052806000815250611327565b505050565b60008082905080611a7c6119bf565b11611b0257600054811015611b015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aff575b60008103611af5576004600083600190039350838152602001908152602001600020549050611acb565b8092505050611b34565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c11611f5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c75576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c82611f5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2f611f5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7491906127d1565b60405180910390a35050565b611d8b848484611f63565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ded57611db6848484846125b7565b611dec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4e565b600082905060005b60008214611e6c578080611e55906137a8565b915050600a82611e65919061381f565b9150611e42565b60008167ffffffffffffffff811115611e8857611e87612aa9565b5b6040519080825280601f01601f191660200182016040528015611eba5781602001600182028036833780820191505090505b5090505b60008514611f4757600182611ed39190613060565b9150600a85611ee29190613850565b6030611eee9190612f54565b60f81b818381518110611f0457611f03613881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f40919061381f565b9450611ebe565b8093505050505b919050565b600033905090565b600033905090565b6000611f6e82611a6d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661202e611f5b565b73ffffffffffffffffffffffffffffffffffffffff16148061205d575061205c86612057611f5b565b6114fc565b5b8061209a575061206b611f5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806120d3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120de86611b39565b03612115576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121228686866001612707565b600061212d83611b39565b14612169576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61223087611b39565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122b857600060018501905060006004600083815260200190815260200160002054036122b65760005481146122b5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612320868686600161270d565b505050505050565b600080549050600061233985611b39565b03612370576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036123aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b76000858386612707565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161241c60018514612713565b901b60a042901b61242c86611b39565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612530575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e060008784806001019550876125b7565b612516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247157826000541461252b57600080fd5b61259b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612531575b8160008190555050506125b1600085838661270d565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125dd611f5b565b8786866040518563ffffffff1660e01b81526004016125ff9493929190613905565b6020604051808303816000875af192505050801561263b57506040513d601f19601f820116820180604052508101906126389190613966565b60015b6126b4573d806000811461266b576040519150601f19603f3d011682016040523d82523d6000602084013e612670565b606091505b5060008151036126ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61276681612731565b811461277157600080fd5b50565b6000813590506127838161275d565b92915050565b60006020828403121561279f5761279e612727565b5b60006127ad84828501612774565b91505092915050565b60008115159050919050565b6127cb816127b6565b82525050565b60006020820190506127e660008301846127c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282657808201518184015260208101905061280b565b60008484015250505050565b6000601f19601f8301169050919050565b600061284e826127ec565b61285881856127f7565b9350612868818560208601612808565b61287181612832565b840191505092915050565b600060208201905081810360008301526128968184612843565b905092915050565b6000819050919050565b6128b18161289e565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612727565b5b60006128f8848285016128bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b82525050565b60006020820190506129576000830184612933565b92915050565b61296681612921565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612727565b5b60006129ae85828601612974565b92505060206129bf858286016128bf565b9150509250929050565b6129d28161289e565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b6129fc816127b6565b8114612a0757600080fd5b50565b600081359050612a19816129f3565b92915050565b600060208284031215612a3557612a34612727565b5b6000612a4384828501612a0a565b91505092915050565b600080600060608486031215612a6557612a64612727565b5b6000612a7386828701612974565b9350506020612a8486828701612974565b9250506040612a95868287016128bf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ae182612832565b810181811067ffffffffffffffff82111715612b0057612aff612aa9565b5b80604052505050565b6000612b1361271d565b9050612b1f8282612ad8565b919050565b600067ffffffffffffffff821115612b3f57612b3e612aa9565b5b612b4882612832565b9050602081019050919050565b82818337600083830152505050565b6000612b77612b7284612b24565b612b09565b905082815260208101848484011115612b9357612b92612aa4565b5b612b9e848285612b55565b509392505050565b600082601f830112612bbb57612bba612a9f565b5b8135612bcb848260208601612b64565b91505092915050565b600060208284031215612bea57612be9612727565b5b600082013567ffffffffffffffff811115612c0857612c0761272c565b5b612c1484828501612ba6565b91505092915050565b600060208284031215612c3357612c32612727565b5b6000612c4184828501612974565b91505092915050565b60008060408385031215612c6157612c60612727565b5b6000612c6f85828601612974565b9250506020612c8085828601612a0a565b9150509250929050565b600067ffffffffffffffff821115612ca557612ca4612aa9565b5b612cae82612832565b9050602081019050919050565b6000612cce612cc984612c8a565b612b09565b905082815260208101848484011115612cea57612ce9612aa4565b5b612cf5848285612b55565b509392505050565b600082601f830112612d1257612d11612a9f565b5b8135612d22848260208601612cbb565b91505092915050565b60008060008060808587031215612d4557612d44612727565b5b6000612d5387828801612974565b9450506020612d6487828801612974565b9350506040612d75878288016128bf565b925050606085013567ffffffffffffffff811115612d9657612d9561272c565b5b612da287828801612cfd565b91505092959194509250565b60008060408385031215612dc557612dc4612727565b5b6000612dd385828601612974565b9250506020612de485828601612974565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3557607f821691505b602082108103612e4857612e47612dee565b5b50919050565b6000604082019050612e636000830185612933565b612e706020830184612933565b9392505050565b600081519050612e86816129f3565b92915050565b600060208284031215612ea257612ea1612727565b5b6000612eb084828501612e77565b91505092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612eef6014836127f7565b9150612efa82612eb9565b602082019050919050565b60006020820190508181036000830152612f1e81612ee2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5f8261289e565b9150612f6a8361289e565b9250828201905080821115612f8257612f81612f25565b5b92915050565b7f4d6178207065722077616c6c6574206d696e7420657863656564656400000000600082015250565b6000612fbe601c836127f7565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061302a6013836127f7565b915061303582612ff4565b602082019050919050565b600060208201905081810360008301526130598161301d565b9050919050565b600061306b8261289e565b91506130768361289e565b925082820390508181111561308e5761308d612f25565b5b92915050565b600061309f8261289e565b91506130aa8361289e565b92508282026130b88161289e565b915082820484148315176130cf576130ce612f25565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061310c601d836127f7565b9150613117826130d6565b602082019050919050565b6000602082019050818103600083015261313b816130ff565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006131786017836127f7565b915061318382613142565b602082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b600081905092915050565b50565b60006131c96000836131ae565b91506131d4826131b9565b600082019050919050565b60006131ea826131bc565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061322a6010836127f7565b9150613235826131f4565b602082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132c27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613285565b6132cc8683613285565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133096133046132ff8461289e565b6132e4565b61289e565b9050919050565b6000819050919050565b613323836132ee565b61333761332f82613310565b848454613292565b825550505050565b600090565b61334c61333f565b61335781848461331a565b505050565b5b8181101561337b57613370600082613344565b60018101905061335d565b5050565b601f8211156133c05761339181613260565b61339a84613275565b810160208510156133a9578190505b6133bd6133b585613275565b83018261335c565b50505b505050565b600082821c905092915050565b60006133e3600019846008026133c5565b1980831691505092915050565b60006133fc83836133d2565b9150826002028217905092915050565b613415826127ec565b67ffffffffffffffff81111561342e5761342d612aa9565b5b6134388254612e1d565b61344382828561337f565b600060209050601f8311600181146134765760008415613464578287015190505b61346e85826133f0565b8655506134d6565b601f19841661348486613260565b60005b828110156134ac57848901518255600182019150602085019450602081019050613487565b868310156134c957848901516134c5601f8916826133d2565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061353a602f836127f7565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b600081905092915050565b6000815461358881612e1d565b6135928186613570565b945060018216600081146135ad57600181146135c2576135f5565b60ff19831686528115158202860193506135f5565b6135cb85613260565b60005b838110156135ed578154818901526001820191506020810190506135ce565b838801955050505b50505092915050565b6000613609826127ec565b6136138185613570565b9350613623818560208601612808565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613665600583613570565b91506136708261362f565b600582019050919050565b6000613687828561357b565b915061369382846135fe565b915061369e82613658565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137066026836127f7565b9150613711826136aa565b604082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137726020836127f7565b915061377d8261373c565b602082019050919050565b600060208201905081810360008301526137a181613765565b9050919050565b60006137b38261289e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137e5576137e4612f25565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382a8261289e565b91506138358361289e565b925082613845576138446137f0565b5b828204905092915050565b600061385b8261289e565b91506138668361289e565b925082613876576138756137f0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006138d7826138b0565b6138e181856138bb565b93506138f1818560208601612808565b6138fa81612832565b840191505092915050565b600060808201905061391a6000830187612933565b6139276020830186612933565b61393460408301856129c9565b818103606083015261394681846138cc565b905095945050505050565b6000815190506139608161275d565b92915050565b60006020828403121561397c5761397b612727565b5b600061398a84828501613951565b9150509291505056fea2646970667358221220463a7411506f8913004c775f78bc23d172f747053087440fda9c68bfe8363fd864736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007425252524f434b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007425252524f434b00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): BRRROCK
Arg [1] : _tokenSymbol (string): BRRROCK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 425252524f434b00000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 425252524f434b00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70565:3763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39814:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44837:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46913:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73614:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70671:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72997:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38868:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73779:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71782:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73178:206;;;;;;;;;;;;;:::i;:::-;;73950:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73088:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70711:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72675:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70863:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44626:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70835:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72771:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72889:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40493:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2667:103;;;;;;;;;;;;;:::i;:::-;;2019:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70791:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45006:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73430:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70749:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74129:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72308:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70634:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47568:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72004:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2925:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39814:615;39899:4;40214:10;40199:25;;:11;:25;;;;:102;;;;40291:10;40276:25;;:11;:25;;;;40199:102;:179;;;;40368:10;40353:25;;:11;:25;;;;40199:179;40179:199;;39814:615;;;:::o;44837:100::-;44891:13;44924:5;44917:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44837:100;:::o;46913:204::-;46981:7;47006:16;47014:7;47006;:16::i;:::-;47001:64;;47031:34;;;;;;;;;;;;;;47001:64;47085:15;:24;47101:7;47085:24;;;;;;;;;;;;;;;;;;;;;47078:31;;46913:204;;;:::o;73614:157::-;73710:8;69916:1;67974:42;69868:45;;;:49;69864:225;;;67974:42;69939;;;69990:4;69997:8;69939:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69934:144;;70053:8;70034:28;;;;;;;;;;;:::i;:::-;;;;;;;;69934:144;69864:225;73731:32:::1;73745:8;73755:7;73731:13;:32::i;:::-;73614:157:::0;;;:::o;70671:33::-;;;;:::o;72997:83::-;1905:13;:11;:13::i;:::-;73066:6:::1;73057;;:15;;;;;;;;;;;;;;;;;;72997:83:::0;:::o;38868:315::-;38921:7;39149:15;:13;:15::i;:::-;39134:12;;39118:13;;:28;:46;39111:53;;38868:315;:::o;73779:163::-;73880:4;69170:1;67974:42;69122:45;;;:49;69118:539;;;69411:10;69403:18;;:4;:18;;;69399:85;;73897:37:::1;73916:4;73922:2;73926:7;73897:18;:37::i;:::-;69462:7:::0;;69399:85;67974:42;69503;;;69554:4;69561:10;69503:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69498:148;;69619:10;69600:30;;;;;;;;;;;:::i;:::-;;;;;;;;69498:148;69118:539;73897:37:::1;73916:4;73922:2;73926:7;73897:18;:37::i;:::-;73779:163:::0;;;;;:::o;71782:214::-;71852:8;71108:1;71097:8;:12;:46;;;;;71125:18;;71113:8;:30;;71097:46;71089:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;71227:12;;71215:8;71187:25;71201:10;71187:13;:25::i;:::-;:36;;;;:::i;:::-;:52;;71179:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;71330:1;71318:9;;:13;;;;:::i;:::-;71307:8;71291:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;71283:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;71882:8:::1;71441:16;71504;;71476:25;71490:10;71476:13;:25::i;:::-;:44;71472:191;;;71537:21;71580:25;71594:10;71580:13;:25::i;:::-;71561:16;;:44;;;;:::i;:::-;71537:68;;71638:13;71631:4;;:20;;;;:::i;:::-;71620:31;;71522:141;71472:191;71712:8;71701;71694:4;;:15;;;;:::i;:::-;:26;;;;:::i;:::-;71681:9;:39;;71673:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;71912:6:::2;;;;;;;;;;;71911:7;71903:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;71957:31;71967:10;71979:8;71957:9;:31::i;:::-;71430:344:::1;71366:1;71782:214:::0;;:::o;73178:206::-;1905:13;:11;:13::i;:::-;73229:12:::1;73255:10;73247:24;;73293:21;73247:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73228:101;;;73348:7;73340:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;73217:167;73178:206::o:0;73950:171::-;74055:4;69170:1;67974:42;69122:45;;;:49;69118:539;;;69411:10;69403:18;;:4;:18;;;69399:85;;74072:41:::1;74095:4;74101:2;74105:7;74072:22;:41::i;:::-;69462:7:::0;;69399:85;67974:42;69503;;;69554:4;69561:10;69503:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69498:148;;69619:10;69600:30;;;;;;;;;;;:::i;:::-;;;;;;;;69498:148;69118:539;74072:41:::1;74095:4;74101:2;74105:7;74072:22;:41::i;:::-;73950:171:::0;;;;;:::o;73088:82::-;1905:13;:11;:13::i;:::-;73157:5:::1;73150:4;:12;;;;73088:82:::0;:::o;70711:31::-;;;;:::o;72675:88::-;1905:13;:11;:13::i;:::-;72752:3:::1;72742:7;:13;;;;;;:::i;:::-;;72675:88:::0;:::o;70863:25::-;;;;;;;;;;;;;:::o;44626:144::-;44690:7;44733:27;44752:7;44733:18;:27::i;:::-;44710:52;;44626:144;;;:::o;70835:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72771:110::-;1905:13;:11;:13::i;:::-;72866:7:::1;72847:16;:26;;;;72771:110:::0;:::o;72889:100::-;1905:13;:11;:13::i;:::-;72971:10:::1;72959:9;:22;;;;72889:100:::0;:::o;40493:234::-;40557:7;40609:1;40581:24;40599:5;40581:17;:24::i;:::-;:29;40577:70;;40619:28;;;;;;;;;;;;;;40577:70;35832:13;40665:18;:25;40684:5;40665:25;;;;;;;;;;;;;;;;:54;40658:61;;40493:234;;;:::o;2667:103::-;1905:13;:11;:13::i;:::-;2732:30:::1;2759:1;2732:18;:30::i;:::-;2667:103::o:0;2019:87::-;2065:7;2092:6;;;;;;;;;;;2085:13;;2019:87;:::o;70791:37::-;;;;:::o;45006:104::-;45062:13;45095:7;45088:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45006:104;:::o;73430:176::-;73534:8;69916:1;67974:42;69868:45;;;:49;69864:225;;;67974:42;69939;;;69990:4;69997:8;69939:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69934:144;;70053:8;70034:28;;;;;;;;;;;:::i;:::-;;;;;;;;69934:144;69864:225;73555:43:::1;73579:8;73589;73555:23;:43::i;:::-;73430:176:::0;;;:::o;70749:35::-;;;;:::o;74129:196::-;74253:4;69170:1;67974:42;69122:45;;;:49;69118:539;;;69411:10;69403:18;;:4;:18;;;69399:85;;74270:47:::1;74293:4;74299:2;74303:7;74312:4;74270:22;:47::i;:::-;69462:7:::0;;69399:85;67974:42;69503;;;69554:4;69561:10;69503:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69498:148;;69619:10;69600:30;;;;;;;;;;;:::i;:::-;;;;;;;;69498:148;69118:539;74270:47:::1;74293:4;74299:2;74303:7;74312:4;74270:22;:47::i;:::-;74129:196:::0;;;;;;:::o;72308:359::-;72426:13;72479:16;72487:7;72479;:16::i;:::-;72457:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;72612:7;72621:25;72638:7;72621:16;:25::i;:::-;72595:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72581:76;;72308:359;;;:::o;70634:30::-;;;;:::o;47568:164::-;47665:4;47689:18;:25;47708:5;47689:25;;;;;;;;;;;;;;;:35;47715:8;47689:35;;;;;;;;;;;;;;;;;;;;;;;;;47682:42;;47568:164;;;;:::o;72004:180::-;72098:8;71108:1;71097:8;:12;:46;;;;;71125:18;;71113:8;:30;;71097:46;71089:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;71227:12;;71215:8;71187:25;71201:10;71187:13;:25::i;:::-;:36;;;;:::i;:::-;:52;;71179:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;71330:1;71318:9;;:13;;;;:::i;:::-;71307:8;71291:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;71283:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1905:13:::1;:11;:13::i;:::-;72143:33:::2;72153:12;:10;:12::i;:::-;72167:8;72143:9;:33::i;:::-;72004:180:::0;;:::o;2925:201::-;1905:13;:11;:13::i;:::-;3034:1:::1;3014:22;;:8;:22;;::::0;3006:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3090:28;3109:8;3090:18;:28::i;:::-;2925:201:::0;:::o;48947:273::-;49004:4;49060:7;49041:15;:13;:15::i;:::-;:26;;:66;;;;;49094:13;;49084:7;:23;49041:66;:152;;;;;49192:1;36602:8;49145:17;:26;49163:7;49145:26;;;;;;;;;;;;:43;:48;49041:152;49021:172;;48947:273;;;:::o;46365:482::-;46446:13;46478:27;46497:7;46478:18;:27::i;:::-;46446:61;;46528:5;46522:11;;:2;:11;;;46518:48;;46542:24;;;;;;;;;;;;;;46518:48;46606:5;46583:28;;:19;:17;:19::i;:::-;:28;;;46579:175;;46631:44;46648:5;46655:19;:17;:19::i;:::-;46631:16;:44::i;:::-;46626:128;;46703:35;;;;;;;;;;;;;;46626:128;46579:175;46793:2;46766:15;:24;46782:7;46766:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46831:7;46827:2;46811:28;;46820:5;46811:28;;;;;;;;;;;;46435:412;46365:482;;:::o;2184:132::-;2259:12;:10;:12::i;:::-;2248:23;;:7;:5;:7::i;:::-;:23;;;2240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:132::o;38391:92::-;38447:7;38474:1;38467:8;;38391:92;:::o;47799:170::-;47933:28;47943:4;47949:2;47953:7;47933:9;:28::i;:::-;47799:170;;;:::o;40809:176::-;40870:7;35832:13;35969:2;40898:18;:25;40917:5;40898:25;;;;;;;;;;;;;;;;:49;;40897:80;40890:87;;40809:176;;;:::o;49304:104::-;49373:27;49383:2;49387:8;49373:27;;;;;;;;;;;;:9;:27::i;:::-;49304:104;;:::o;48040:185::-;48178:39;48195:4;48201:2;48205:7;48178:39;;;;;;;;;;;;:16;:39::i;:::-;48040:185;;;:::o;42141:1129::-;42208:7;42228:12;42243:7;42228:22;;42311:4;42292:15;:13;:15::i;:::-;:23;42288:915;;42345:13;;42338:4;:20;42334:869;;;42383:14;42400:17;:23;42418:4;42400:23;;;;;;;;;;;;42383:40;;42516:1;36602:8;42489:6;:23;:28;42485:699;;43008:113;43025:1;43015:6;:11;43008:113;;43068:17;:25;43086:6;;;;;;;43068:25;;;;;;;;;;;;43059:34;;43008:113;;;43154:6;43147:13;;;;;;42485:699;42360:843;42334:869;42288:915;43231:31;;;;;;;;;;;;;;42141:1129;;;;:::o;45926:148::-;45990:14;46051:5;46041:15;;45926:148;;;:::o;3286:191::-;3360:16;3379:6;;;;;;;;;;;3360:25;;3405:8;3396:6;;:17;;;;;;;;;;;;;;;;;;3460:8;3429:40;;3450:8;3429:40;;;;;;;;;;;;3349:128;3286:191;:::o;47189:308::-;47300:19;:17;:19::i;:::-;47288:31;;:8;:31;;;47284:61;;47328:17;;;;;;;;;;;;;;47284:61;47410:8;47358:18;:39;47377:19;:17;:19::i;:::-;47358:39;;;;;;;;;;;;;;;:49;47398:8;47358:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47470:8;47434:55;;47449:19;:17;:19::i;:::-;47434:55;;;47480:8;47434:55;;;;;;:::i;:::-;;;;;;;;47189:308;;:::o;48296:396::-;48463:28;48473:4;48479:2;48483:7;48463:9;:28::i;:::-;48524:1;48506:2;:14;;;:19;48502:183;;48545:56;48576:4;48582:2;48586:7;48595:5;48545:30;:56::i;:::-;48540:145;;48629:40;;;;;;;;;;;;;;48540:145;48502:183;48296:396;;;;:::o;3858:723::-;3914:13;4144:1;4135:5;:10;4131:53;;4162:10;;;;;;;;;;;;;;;;;;;;;4131:53;4194:12;4209:5;4194:20;;4225:14;4250:78;4265:1;4257:4;:9;4250:78;;4283:8;;;;;:::i;:::-;;;;4314:2;4306:10;;;;;:::i;:::-;;;4250:78;;;4338:19;4370:6;4360:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4338:39;;4388:154;4404:1;4395:5;:10;4388:154;;4432:1;4422:11;;;;;:::i;:::-;;;4499:2;4491:5;:10;;;;:::i;:::-;4478:2;:24;;;;:::i;:::-;4465:39;;4448:6;4455;4448:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4528:2;4519:11;;;;;:::i;:::-;;;4388:154;;;4566:6;4552:21;;;;;3858:723;;;;:::o;726:98::-;779:7;806:10;799:17;;726:98;:::o;63215:105::-;63275:7;63302:10;63295:17;;63215:105;:::o;54206:2654::-;54321:27;54351;54370:7;54351:18;:27::i;:::-;54321:57;;54436:4;54395:45;;54411:19;54395:45;;;54391:86;;54449:28;;;;;;;;;;;;;;54391:86;54490:23;54516:15;:24;54532:7;54516:24;;;;;;;;;;;;;;;;;;;;;54490:50;;54553:22;54602:4;54579:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;54623:43;54640:4;54646:19;:17;:19::i;:::-;54623:16;:43::i;:::-;54579:87;:142;;;;54702:19;:17;:19::i;:::-;54683:38;;:15;:38;;;54579:142;54553:169;;54740:17;54735:66;;54766:35;;;;;;;;;;;;;;54735:66;54841:1;54816:21;54834:2;54816:17;:21::i;:::-;:26;54812:62;;54851:23;;;;;;;;;;;;;;54812:62;54887:43;54909:4;54915:2;54919:7;54928:1;54887:21;:43::i;:::-;55038:1;55000:34;55018:15;55000:17;:34::i;:::-;:39;54996:103;;55063:15;:24;55079:7;55063:24;;;;;;;;;;;;55056:31;;;;;;;;;;;54996:103;55466:18;:24;55485:4;55466:24;;;;;;;;;;;;;;;;55464:26;;;;;;;;;;;;55535:18;:22;55554:2;55535:22;;;;;;;;;;;;;;;;55533:24;;;;;;;;;;;36884:8;36486:3;55916:15;:41;;55874:21;55892:2;55874:17;:21::i;:::-;:84;:128;55828:17;:26;55846:7;55828:26;;;;;;;;;;;:174;;;;56172:1;36884:8;56122:19;:46;:51;56118:626;;56194:19;56226:1;56216:7;:11;56194:33;;56383:1;56349:17;:30;56367:11;56349:30;;;;;;;;;;;;:35;56345:384;;56487:13;;56472:11;:28;56468:242;;56667:19;56634:17;:30;56652:11;56634:30;;;;;;;;;;;:52;;;;56468:242;56345:384;56175:569;56118:626;56791:7;56787:2;56772:27;;56781:4;56772:27;;;;;;;;;;;;56810:42;56831:4;56837:2;56841:7;56850:1;56810:20;:42::i;:::-;54310:2550;;;54206:2654;;;:::o;49781:2246::-;49904:20;49927:13;;49904:36;;49980:1;49955:21;49973:2;49955:17;:21::i;:::-;:26;49951:58;;49990:19;;;;;;;;;;;;;;49951:58;50036:1;50024:8;:13;50020:44;;50046:18;;;;;;;;;;;;;;50020:44;50077:61;50107:1;50111:2;50115:12;50129:8;50077:21;:61::i;:::-;50681:1;35969:2;50652:1;:25;;50651:31;50639:8;:44;50613:18;:22;50632:2;50613:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;36749:3;51082:29;51109:1;51097:8;:13;51082:14;:29::i;:::-;:56;;36486:3;51019:15;:41;;50977:21;50995:2;50977:17;:21::i;:::-;:84;:162;50926:17;:31;50944:12;50926:31;;;;;;;;;;;:213;;;;51156:20;51179:12;51156:35;;51206:11;51235:8;51220:12;:23;51206:37;;51282:1;51264:2;:14;;;:19;51260:635;;51304:313;51360:12;51356:2;51335:38;;51352:1;51335:38;;;;;;;;;;;;51401:69;51440:1;51444:2;51448:14;;;;;;51464:5;51401:30;:69::i;:::-;51396:174;;51506:40;;;;;;;;;;;;;;51396:174;51612:3;51597:12;:18;51304:313;;51698:12;51681:13;;:29;51677:43;;51712:8;;;51677:43;51260:635;;;51761:119;51817:14;;;;;;51813:2;51792:40;;51809:1;51792:40;;;;;;;;;;;;51875:3;51860:12;:18;51761:119;;51260:635;51925:12;51909:13;:28;;;;50390:1559;;51959:60;51988:1;51992:2;51996:12;52010:8;51959:20;:60::i;:::-;49893:2134;49781:2246;;;:::o;60684:716::-;60847:4;60893:2;60868:45;;;60914:19;:17;:19::i;:::-;60935:4;60941:7;60950:5;60868:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60864:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61168:1;61151:6;:13;:18;61147:235;;61197:40;;;;;;;;;;;;;;61147:235;61340:6;61334:13;61325:6;61321:2;61317:15;61310:38;60864:529;61037:54;;;61027:64;;;:6;:64;;;;61020:71;;;60684:716;;;;;;:::o;62048:159::-;;;;;:::o;62866:158::-;;;;;:::o;46161:142::-;46219:14;46280:5;46270:15;;46161:142;;;:::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:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:332::-;13053:4;13091:2;13080:9;13076:18;13068:26;;13104:71;13172:1;13161:9;13157:17;13148:6;13104:71;:::i;:::-;13185:72;13253:2;13242:9;13238:18;13229:6;13185:72;:::i;:::-;12932:332;;;;;:::o;13270:137::-;13324:5;13355:6;13349:13;13340:22;;13371:30;13395:5;13371:30;:::i;:::-;13270:137;;;;:::o;13413:345::-;13480:6;13529:2;13517:9;13508:7;13504:23;13500:32;13497:119;;;13535:79;;:::i;:::-;13497:119;13655:1;13680:61;13733:7;13724:6;13713:9;13709:22;13680:61;:::i;:::-;13670:71;;13626:125;13413:345;;;;:::o;13764:170::-;13904:22;13900:1;13892:6;13888:14;13881:46;13764:170;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:180::-;14785:77;14782:1;14775:88;14882:4;14879:1;14872:15;14906:4;14903:1;14896:15;14923:191;14963:3;14982:20;15000:1;14982:20;:::i;:::-;14977:25;;15016:20;15034:1;15016:20;:::i;:::-;15011:25;;15059:1;15056;15052:9;15045:16;;15080:3;15077:1;15074:10;15071:36;;;15087:18;;:::i;:::-;15071:36;14923:191;;;;:::o;15120:178::-;15260:30;15256:1;15248:6;15244:14;15237:54;15120:178;:::o;15304:366::-;15446:3;15467:67;15531:2;15526:3;15467:67;:::i;:::-;15460:74;;15543:93;15632:3;15543:93;:::i;:::-;15661:2;15656:3;15652:12;15645:19;;15304:366;;;:::o;15676:419::-;15842:4;15880:2;15869:9;15865:18;15857:26;;15929:9;15923:4;15919:20;15915:1;15904:9;15900:17;15893:47;15957:131;16083:4;15957:131;:::i;:::-;15949:139;;15676:419;;;:::o;16101:169::-;16241:21;16237:1;16229:6;16225:14;16218:45;16101:169;:::o;16276:366::-;16418:3;16439:67;16503:2;16498:3;16439:67;:::i;:::-;16432:74;;16515:93;16604:3;16515:93;:::i;:::-;16633:2;16628:3;16624:12;16617:19;;16276:366;;;:::o;16648:419::-;16814:4;16852:2;16841:9;16837:18;16829:26;;16901:9;16895:4;16891:20;16887:1;16876:9;16872:17;16865:47;16929:131;17055:4;16929:131;:::i;:::-;16921:139;;16648:419;;;:::o;17073:194::-;17113:4;17133:20;17151:1;17133:20;:::i;:::-;17128:25;;17167:20;17185:1;17167:20;:::i;:::-;17162:25;;17211:1;17208;17204:9;17196:17;;17235:1;17229:4;17226:11;17223:37;;;17240:18;;:::i;:::-;17223:37;17073:194;;;;:::o;17273:410::-;17313:7;17336:20;17354:1;17336:20;:::i;:::-;17331:25;;17370:20;17388:1;17370:20;:::i;:::-;17365:25;;17425:1;17422;17418:9;17447:30;17465:11;17447:30;:::i;:::-;17436:41;;17626:1;17617:7;17613:15;17610:1;17607:22;17587:1;17580:9;17560:83;17537:139;;17656:18;;:::i;:::-;17537:139;17321:362;17273:410;;;;:::o;17689:179::-;17829:31;17825:1;17817:6;17813:14;17806:55;17689:179;:::o;17874:366::-;18016:3;18037:67;18101:2;18096:3;18037:67;:::i;:::-;18030:74;;18113:93;18202:3;18113:93;:::i;:::-;18231:2;18226:3;18222:12;18215:19;;17874:366;;;:::o;18246:419::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18499:9;18493:4;18489:20;18485:1;18474:9;18470:17;18463:47;18527:131;18653:4;18527:131;:::i;:::-;18519:139;;18246:419;;;:::o;18671:173::-;18811:25;18807:1;18799:6;18795:14;18788:49;18671:173;:::o;18850:366::-;18992:3;19013:67;19077:2;19072:3;19013:67;:::i;:::-;19006:74;;19089:93;19178:3;19089:93;:::i;:::-;19207:2;19202:3;19198:12;19191:19;;18850:366;;;:::o;19222:419::-;19388:4;19426:2;19415:9;19411:18;19403:26;;19475:9;19469:4;19465:20;19461:1;19450:9;19446:17;19439:47;19503:131;19629:4;19503:131;:::i;:::-;19495:139;;19222:419;;;:::o;19647:147::-;19748:11;19785:3;19770:18;;19647:147;;;;:::o;19800:114::-;;:::o;19920:398::-;20079:3;20100:83;20181:1;20176:3;20100:83;:::i;:::-;20093:90;;20192:93;20281:3;20192:93;:::i;:::-;20310:1;20305:3;20301:11;20294:18;;19920:398;;;:::o;20324:379::-;20508:3;20530:147;20673:3;20530:147;:::i;:::-;20523:154;;20694:3;20687:10;;20324:379;;;:::o;20709:166::-;20849:18;20845:1;20837:6;20833:14;20826:42;20709:166;:::o;20881:366::-;21023:3;21044:67;21108:2;21103:3;21044:67;:::i;:::-;21037:74;;21120:93;21209:3;21120:93;:::i;:::-;21238:2;21233:3;21229:12;21222:19;;20881:366;;;:::o;21253:419::-;21419:4;21457:2;21446:9;21442:18;21434:26;;21506:9;21500:4;21496:20;21492:1;21481:9;21477:17;21470:47;21534:131;21660:4;21534:131;:::i;:::-;21526:139;;21253:419;;;:::o;21678:141::-;21727:4;21750:3;21742:11;;21773:3;21770:1;21763:14;21807:4;21804:1;21794:18;21786:26;;21678:141;;;:::o;21825:93::-;21862:6;21909:2;21904;21897:5;21893:14;21889:23;21879:33;;21825:93;;;:::o;21924:107::-;21968:8;22018:5;22012:4;22008:16;21987:37;;21924:107;;;;:::o;22037:393::-;22106:6;22156:1;22144:10;22140:18;22179:97;22209:66;22198:9;22179:97;:::i;:::-;22297:39;22327:8;22316:9;22297:39;:::i;:::-;22285:51;;22369:4;22365:9;22358:5;22354:21;22345:30;;22418:4;22408:8;22404:19;22397:5;22394:30;22384:40;;22113:317;;22037:393;;;;;:::o;22436:60::-;22464:3;22485:5;22478:12;;22436:60;;;:::o;22502:142::-;22552:9;22585:53;22603:34;22612:24;22630:5;22612:24;:::i;:::-;22603:34;:::i;:::-;22585:53;:::i;:::-;22572:66;;22502:142;;;:::o;22650:75::-;22693:3;22714:5;22707:12;;22650:75;;;:::o;22731:269::-;22841:39;22872:7;22841:39;:::i;:::-;22902:91;22951:41;22975:16;22951:41;:::i;:::-;22943:6;22936:4;22930:11;22902:91;:::i;:::-;22896:4;22889:105;22807:193;22731:269;;;:::o;23006:73::-;23051:3;23006:73;:::o;23085:189::-;23162:32;;:::i;:::-;23203:65;23261:6;23253;23247:4;23203:65;:::i;:::-;23138:136;23085:189;;:::o;23280:186::-;23340:120;23357:3;23350:5;23347:14;23340:120;;;23411:39;23448:1;23441:5;23411:39;:::i;:::-;23384:1;23377:5;23373:13;23364:22;;23340:120;;;23280:186;;:::o;23472:543::-;23573:2;23568:3;23565:11;23562:446;;;23607:38;23639:5;23607:38;:::i;:::-;23691:29;23709:10;23691:29;:::i;:::-;23681:8;23677:44;23874:2;23862:10;23859:18;23856:49;;;23895:8;23880:23;;23856:49;23918:80;23974:22;23992:3;23974:22;:::i;:::-;23964:8;23960:37;23947:11;23918:80;:::i;:::-;23577:431;;23562:446;23472:543;;;:::o;24021:117::-;24075:8;24125:5;24119:4;24115:16;24094:37;;24021:117;;;;:::o;24144:169::-;24188:6;24221:51;24269:1;24265:6;24257:5;24254:1;24250:13;24221:51;:::i;:::-;24217:56;24302:4;24296;24292:15;24282:25;;24195:118;24144:169;;;;:::o;24318:295::-;24394:4;24540:29;24565:3;24559:4;24540:29;:::i;:::-;24532:37;;24602:3;24599:1;24595:11;24589:4;24586:21;24578:29;;24318:295;;;;:::o;24618:1395::-;24735:37;24768:3;24735:37;:::i;:::-;24837:18;24829:6;24826:30;24823:56;;;24859:18;;:::i;:::-;24823:56;24903:38;24935:4;24929:11;24903:38;:::i;:::-;24988:67;25048:6;25040;25034:4;24988:67;:::i;:::-;25082:1;25106:4;25093:17;;25138:2;25130:6;25127:14;25155:1;25150:618;;;;25812:1;25829:6;25826:77;;;25878:9;25873:3;25869:19;25863:26;25854:35;;25826:77;25929:67;25989:6;25982:5;25929:67;:::i;:::-;25923:4;25916:81;25785:222;25120:887;;25150:618;25202:4;25198:9;25190:6;25186:22;25236:37;25268:4;25236:37;:::i;:::-;25295:1;25309:208;25323:7;25320:1;25317:14;25309:208;;;25402:9;25397:3;25393:19;25387:26;25379:6;25372:42;25453:1;25445:6;25441:14;25431:24;;25500:2;25489:9;25485:18;25472:31;;25346:4;25343:1;25339:12;25334:17;;25309:208;;;25545:6;25536:7;25533:19;25530:179;;;25603:9;25598:3;25594:19;25588:26;25646:48;25688:4;25680:6;25676:17;25665:9;25646:48;:::i;:::-;25638:6;25631:64;25553:156;25530:179;25755:1;25751;25743:6;25739:14;25735:22;25729:4;25722:36;25157:611;;;25120:887;;24710:1303;;;24618:1395;;:::o;26019:234::-;26159:34;26155:1;26147:6;26143:14;26136:58;26228:17;26223:2;26215:6;26211:15;26204:42;26019:234;:::o;26259:366::-;26401:3;26422:67;26486:2;26481:3;26422:67;:::i;:::-;26415:74;;26498:93;26587:3;26498:93;:::i;:::-;26616:2;26611:3;26607:12;26600:19;;26259:366;;;:::o;26631:419::-;26797:4;26835:2;26824:9;26820:18;26812:26;;26884:9;26878:4;26874:20;26870:1;26859:9;26855:17;26848:47;26912:131;27038:4;26912:131;:::i;:::-;26904:139;;26631:419;;;:::o;27056:148::-;27158:11;27195:3;27180:18;;27056:148;;;;:::o;27234:874::-;27337:3;27374:5;27368:12;27403:36;27429:9;27403:36;:::i;:::-;27455:89;27537:6;27532:3;27455:89;:::i;:::-;27448:96;;27575:1;27564:9;27560:17;27591:1;27586:166;;;;27766:1;27761:341;;;;27553:549;;27586:166;27670:4;27666:9;27655;27651:25;27646:3;27639:38;27732:6;27725:14;27718:22;27710:6;27706:35;27701:3;27697:45;27690:52;;27586:166;;27761:341;27828:38;27860:5;27828:38;:::i;:::-;27888:1;27902:154;27916:6;27913:1;27910:13;27902:154;;;27990:7;27984:14;27980:1;27975:3;27971:11;27964:35;28040:1;28031:7;28027:15;28016:26;;27938:4;27935:1;27931:12;27926:17;;27902:154;;;28085:6;28080:3;28076:16;28069:23;;27768:334;;27553:549;;27341:767;;27234:874;;;;:::o;28114:390::-;28220:3;28248:39;28281:5;28248:39;:::i;:::-;28303:89;28385:6;28380:3;28303:89;:::i;:::-;28296:96;;28401:65;28459:6;28454:3;28447:4;28440:5;28436:16;28401:65;:::i;:::-;28491:6;28486:3;28482:16;28475:23;;28224:280;28114:390;;;;:::o;28510:155::-;28650:7;28646:1;28638:6;28634:14;28627:31;28510:155;:::o;28671:400::-;28831:3;28852:84;28934:1;28929:3;28852:84;:::i;:::-;28845:91;;28945:93;29034:3;28945:93;:::i;:::-;29063:1;29058:3;29054:11;29047:18;;28671:400;;;:::o;29077:695::-;29355:3;29377:92;29465:3;29456:6;29377:92;:::i;:::-;29370:99;;29486:95;29577:3;29568:6;29486:95;:::i;:::-;29479:102;;29598:148;29742:3;29598:148;:::i;:::-;29591:155;;29763:3;29756:10;;29077:695;;;;;:::o;29778:225::-;29918:34;29914:1;29906:6;29902:14;29895:58;29987:8;29982:2;29974:6;29970:15;29963:33;29778:225;:::o;30009:366::-;30151:3;30172:67;30236:2;30231:3;30172:67;:::i;:::-;30165:74;;30248:93;30337:3;30248:93;:::i;:::-;30366:2;30361:3;30357:12;30350:19;;30009:366;;;:::o;30381:419::-;30547:4;30585:2;30574:9;30570:18;30562:26;;30634:9;30628:4;30624:20;30620:1;30609:9;30605:17;30598:47;30662:131;30788:4;30662:131;:::i;:::-;30654:139;;30381:419;;;:::o;30806:182::-;30946:34;30942:1;30934:6;30930:14;30923:58;30806:182;:::o;30994:366::-;31136:3;31157:67;31221:2;31216:3;31157:67;:::i;:::-;31150:74;;31233:93;31322:3;31233:93;:::i;:::-;31351:2;31346:3;31342:12;31335:19;;30994:366;;;:::o;31366:419::-;31532:4;31570:2;31559:9;31555:18;31547:26;;31619:9;31613:4;31609:20;31605:1;31594:9;31590:17;31583:47;31647:131;31773:4;31647:131;:::i;:::-;31639:139;;31366:419;;;:::o;31791:233::-;31830:3;31853:24;31871:5;31853:24;:::i;:::-;31844:33;;31899:66;31892:5;31889:77;31886:103;;31969:18;;:::i;:::-;31886:103;32016:1;32009:5;32005:13;31998:20;;31791:233;;;:::o;32030:180::-;32078:77;32075:1;32068:88;32175:4;32172:1;32165:15;32199:4;32196:1;32189:15;32216:185;32256:1;32273:20;32291:1;32273:20;:::i;:::-;32268:25;;32307:20;32325:1;32307:20;:::i;:::-;32302:25;;32346:1;32336:35;;32351:18;;:::i;:::-;32336:35;32393:1;32390;32386:9;32381:14;;32216:185;;;;:::o;32407:176::-;32439:1;32456:20;32474:1;32456:20;:::i;:::-;32451:25;;32490:20;32508:1;32490:20;:::i;:::-;32485:25;;32529:1;32519:35;;32534:18;;:::i;:::-;32519:35;32575:1;32572;32568:9;32563:14;;32407:176;;;;:::o;32589:180::-;32637:77;32634:1;32627:88;32734:4;32731:1;32724:15;32758:4;32755:1;32748:15;32775:98;32826:6;32860:5;32854:12;32844:22;;32775:98;;;:::o;32879:168::-;32962:11;32996:6;32991:3;32984:19;33036:4;33031:3;33027:14;33012:29;;32879:168;;;;:::o;33053:373::-;33139:3;33167:38;33199:5;33167:38;:::i;:::-;33221:70;33284:6;33279:3;33221:70;:::i;:::-;33214:77;;33300:65;33358:6;33353:3;33346:4;33339:5;33335:16;33300:65;:::i;:::-;33390:29;33412:6;33390:29;:::i;:::-;33385:3;33381:39;33374:46;;33143:283;33053:373;;;;:::o;33432:640::-;33627:4;33665:3;33654:9;33650:19;33642:27;;33679:71;33747:1;33736:9;33732:17;33723:6;33679:71;:::i;:::-;33760:72;33828:2;33817:9;33813:18;33804:6;33760:72;:::i;:::-;33842;33910:2;33899:9;33895:18;33886:6;33842:72;:::i;:::-;33961:9;33955:4;33951:20;33946:2;33935:9;33931:18;33924:48;33989:76;34060:4;34051:6;33989:76;:::i;:::-;33981:84;;33432:640;;;;;;;:::o;34078:141::-;34134:5;34165:6;34159:13;34150:22;;34181:32;34207:5;34181:32;:::i;:::-;34078:141;;;;:::o;34225:349::-;34294:6;34343:2;34331:9;34322:7;34318:23;34314:32;34311:119;;;34349:79;;:::i;:::-;34311:119;34469:1;34494:63;34549:7;34540:6;34529:9;34525:22;34494:63;:::i;:::-;34484:73;;34440:127;34225:349;;;;:::o

Swarm Source

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