ETH Price: $2,779.42 (+2.71%)
 

Overview

Max Total Supply

327 TH

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yumuyi.eth
Balance
2 TH
0x6F510F0817E052c732862DC95cba2e1168b65826
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:
TribeHero

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-28
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/TribeHero.sol



pragma solidity >=0.8.9;





contract TribeHero is ERC721AQueryable, Ownable, ReentrancyGuard {
  bytes32 public merkleRoot;
  mapping(address => uint256) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
    _safeMint(msg.sender, 50);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public mintCompliance(_mintAmount) {
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(whitelistClaimed[_msgSender()] + _mintAmount <= 2, 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = whitelistClaimed[_msgSender()] + _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

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

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000730565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200007992919062000730565b5066071afd498d0000600f5561271060105560056011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000ee57600080fd5b50604051620051423803806200514283398181016040528101906200011491906200097d565b818181600290805190602001906200012e92919062000730565b5080600390805190602001906200014792919062000730565b5062000158620001a360201b60201c565b60008190555050506200018062000174620001a860201b60201c565b620001b060201b60201c565b60016009819055506200019b3360326200027660201b60201c565b505062000c07565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002988282604051806020016040528060008152506200029c60201b60201c565b5050565b620002ae83836200034d60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200034857600080549050600083820390505b620002f760008683806001019450866200053660201b60201c565b6200032e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002dc5781600054146200034557600080fd5b50505b505050565b60008054905060008214156200038f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003a46000848385620006a860201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200043383620004156000866000620006ae60201b60201c565b6200042685620006de60201b60201c565b17620006ee60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000499565b50600082141562000513576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200053160008483856200071960201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005646200071f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000588949392919062000abf565b602060405180830381600087803b158015620005a357600080fd5b505af1925050508015620005d757506040513d601f19601f82011682018060405250810190620005d4919062000b70565b60015b62000655573d80600081146200060a576040519150601f19603f3d011682016040523d82523d6000602084013e6200060f565b606091505b506000815114156200064d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006cd8686846200072760201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200073e9062000bd1565b90600052602060002090601f016020900481019282620007625760008555620007ae565b82601f106200077d57805160ff1916838001178555620007ae565b82800160010185558215620007ae579182015b82811115620007ad57825182559160200191906001019062000790565b5b509050620007bd9190620007c1565b5090565b5b80821115620007dc576000816000905550600101620007c2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200084982620007fe565b810181811067ffffffffffffffff821117156200086b576200086a6200080f565b5b80604052505050565b600062000880620007e0565b90506200088e82826200083e565b919050565b600067ffffffffffffffff821115620008b157620008b06200080f565b5b620008bc82620007fe565b9050602081019050919050565b60005b83811015620008e9578082015181840152602081019050620008cc565b83811115620008f9576000848401525b50505050565b600062000916620009108462000893565b62000874565b905082815260208101848484011115620009355762000934620007f9565b5b62000942848285620008c9565b509392505050565b600082601f830112620009625762000961620007f4565b5b815162000974848260208601620008ff565b91505092915050565b60008060408385031215620009975762000996620007ea565b5b600083015167ffffffffffffffff811115620009b857620009b7620007ef565b5b620009c6858286016200094a565b925050602083015167ffffffffffffffff811115620009ea57620009e9620007ef565b5b620009f8858286016200094a565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2f8262000a02565b9050919050565b62000a418162000a22565b82525050565b6000819050919050565b62000a5c8162000a47565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000a8b8262000a62565b62000a97818562000a6d565b935062000aa9818560208601620008c9565b62000ab481620007fe565b840191505092915050565b600060808201905062000ad6600083018762000a36565b62000ae5602083018662000a36565b62000af4604083018562000a51565b818103606083015262000b08818462000a7e565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b4a8162000b13565b811462000b5657600080fd5b50565b60008151905062000b6a8162000b3f565b92915050565b60006020828403121562000b895762000b88620007ea565b5b600062000b998482850162000b59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bea57607f821691505b6020821081141562000c015762000c0062000ba2565b5b50919050565b61452b8062000c176000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610987578063db4bec44146109b2578063e0a80853146109ef578063e985e9c514610a18578063efbd73f414610a55578063f2fde38b14610a7e5761027d565b8063b071401b14610869578063b767a09814610892578063b88d4fde146108bb578063c23dc68f146108e4578063c87b56dd14610921578063d2cab0561461095e5761027d565b806394354fd01161011357806394354fd01461076657806395d89b411461079157806399a2557a146107bc578063a0712d68146107f9578063a22cb46514610815578063a45ba8e71461083e5761027d565b8063715018a6146106955780637cb64759146106ac5780637ec4a659146106d55780638462151c146106fe5780638da5cb5b1461073b5761027d565b806342842e0e116101f35780635c975abb116101ac5780635c975abb1461057157806362b99ad41461059c5780636352211e146105c75780636caede3d146106045780636f8b44b01461062f57806370a08231146106585761027d565b806342842e0e1461046357806344a0d68a1461048c5780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635bbb2177146105345761027d565b806316ba10e01161024557806316ba10e01461037b57806316c38b3c146103a457806318160ddd146103cd57806323b872dd146103f85780632eb4a7ab146104215780633ccfd60b1461044c5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806313faede614610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190612fd4565b610aa7565b6040516102b6919061301c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b39565b6040516102e191906130d0565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613128565b610bcb565b60405161031e9190613196565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906131dd565b610c4a565b005b34801561035c57600080fd5b50610365610d8e565b604051610372919061322c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061337c565b610d94565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906133f1565b610db6565b005b3480156103d957600080fd5b506103e2610ddb565b6040516103ef919061322c565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061341e565b610df2565b005b34801561042d57600080fd5b50610436611117565b604051610443919061348a565b60405180910390f35b34801561045857600080fd5b5061046161111d565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061341e565b6111fb565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613128565b61121b565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061337c565b61122d565b005b3480156104ea57600080fd5b506104f361124f565b604051610500919061301c565b60405180910390f35b34801561051557600080fd5b5061051e611262565b60405161052b91906130d0565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613505565b6112f0565b60405161056891906136b5565b60405180910390f35b34801561057d57600080fd5b506105866113b3565b604051610593919061301c565b60405180910390f35b3480156105a857600080fd5b506105b16113c6565b6040516105be91906130d0565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613128565b611454565b6040516105fb9190613196565b60405180910390f35b34801561061057600080fd5b50610619611466565b604051610626919061301c565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190613128565b611479565b005b34801561066457600080fd5b5061067f600480360381019061067a91906136d7565b61148b565b60405161068c919061322c565b60405180910390f35b3480156106a157600080fd5b506106aa611544565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613730565b611558565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061337c565b61156a565b005b34801561070a57600080fd5b50610725600480360381019061072091906136d7565b61158c565b604051610732919061381b565b60405180910390f35b34801561074757600080fd5b506107506116d6565b60405161075d9190613196565b60405180910390f35b34801561077257600080fd5b5061077b611700565b604051610788919061322c565b60405180910390f35b34801561079d57600080fd5b506107a6611706565b6040516107b391906130d0565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061383d565b611798565b6040516107f0919061381b565b60405180910390f35b610813600480360381019061080e9190613128565b6119ac565b005b34801561082157600080fd5b5061083c60048036038101906108379190613890565b611b0c565b005b34801561084a57600080fd5b50610853611c84565b60405161086091906130d0565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b9190613128565b611d12565b005b34801561089e57600080fd5b506108b960048036038101906108b491906133f1565b611d24565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190613971565b611d49565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613128565b611dbc565b6040516109189190613a49565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613128565b611e26565b60405161095591906130d0565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613aba565b611f7f565b005b34801561099357600080fd5b5061099c61227f565b6040516109a9919061322c565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906136d7565b612285565b6040516109e6919061322c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906133f1565b61229d565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613b1a565b6122c2565b604051610a4c919061301c565b60405180910390f35b348015610a6157600080fd5b50610a7c6004803603810190610a779190613b5a565b612356565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa091906136d7565b612416565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b4890613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490613bc9565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bd68261249a565b610c0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5582611454565b90508073ffffffffffffffffffffffffffffffffffffffff16610c766124f9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd957610ca281610c9d6124f9565b6122c2565b610cd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610d9c612501565b80600d9080519060200190610db2929190612e76565b5050565b610dbe612501565b80601260006101000a81548160ff02191690831515021790555050565b6000610de561257f565b6001546000540303905090565b6000610dfd82612584565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e64576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e7084612652565b91509150610e868187610e816124f9565b612679565b610ed257610e9b86610e966124f9565b6122c2565b610ed1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4686868660016126bd565b8015610f5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101f85610ffb8888876126c3565b7c0200000000000000000000000000000000000000000000000000000000176126eb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110a75760006001850190506000600460008381526020019081526020016000205414156110a55760005481146110a4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110f8686866001612716565b505050505050565b600a5481565b611125612501565b6002600954141561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613c47565b60405180910390fd5b6002600981905550600061117d6116d6565b73ffffffffffffffffffffffffffffffffffffffff16476040516111a090613c98565b60006040518083038185875af1925050503d80600081146111dd576040519150601f19603f3d011682016040523d82523d6000602084013e6111e2565b606091505b50509050806111f057600080fd5b506001600981905550565b61121683838360405180602001604052806000815250611d49565b505050565b611223612501565b80600f8190555050565b611235612501565b80600e908051906020019061124b929190612e76565b5050565b601260029054906101000a900460ff1681565b600d805461126f90613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90613bc9565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff81111561131657611315613251565b5b60405190808252806020026020018201604052801561134f57816020015b61133c612efc565b8152602001906001900390816113345790505b50905060005b8281146113a75761137e86868381811061137257611371613cad565b5b90506020020135611dbc565b82828151811061139157611390613cad565b5b6020026020010181905250806001019050611355565b50809250505092915050565b601260009054906101000a900460ff1681565b600c80546113d390613bc9565b80601f01602080910402602001604051908101604052809291908181526020018280546113ff90613bc9565b801561144c5780601f106114215761010080835404028352916020019161144c565b820191906000526020600020905b81548152906001019060200180831161142f57829003601f168201915b505050505081565b600061145f82612584565b9050919050565b601260019054906101000a900460ff1681565b611481612501565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61154c612501565b611556600061271c565b565b611560612501565b80600a8190555050565b611572612501565b80600c9080519060200190611588929190612e76565b5050565b6060600080600061159c8561148b565b905060008167ffffffffffffffff8111156115ba576115b9613251565b5b6040519080825280602002602001820160405280156115e85781602001602082028036833780820191505090505b5090506115f3612efc565b60006115fd61257f565b90505b8386146116c857611610816127e2565b9150816040015115611621576116bd565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461166157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116bc57808387806001019850815181106116af576116ae613cad565b5b6020026020010181815250505b5b806001019050611600565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461171590613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461174190613bc9565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050905090565b60608183106117d3576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117de61280d565b90506117e861257f565b8510156117fa576117f761257f565b94505b80841115611806578093505b60006118118761148b565b90508486101561183457600086860390508181101561182e578091505b50611839565b600090505b60008167ffffffffffffffff81111561185557611854613251565b5b6040519080825280602002602001820160405280156118835781602001602082028036833780820191505090505b509050600082141561189b57809450505050506119a5565b60006118a688611dbc565b9050600081604001516118bb57816000015190505b60008990505b8881141580156118d15750848714155b15611997576118df816127e2565b92508260400151156118f05761198c565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461193057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198b578084888060010199508151811061197e5761197d613cad565b5b6020026020010181815250505b5b8060010190506118c1565b508583528296505050505050505b9392505050565b806000811180156119bf57506011548111155b6119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613d28565b60405180910390fd5b60105481611a0a610ddb565b611a149190613d77565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90613e19565b60405180910390fd5b8180600f54611a649190613e39565b341015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613edf565b60405180910390fd5b601260009054906101000a900460ff1615611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613f4b565b60405180910390fd5b611b07611b01612816565b8461281e565b505050565b611b146124f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b79576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b866124f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c336124f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c78919061301c565b60405180910390a35050565b600e8054611c9190613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbd90613bc9565b8015611d0a5780601f10611cdf57610100808354040283529160200191611d0a565b820191906000526020600020905b815481529060010190602001808311611ced57829003601f168201915b505050505081565b611d1a612501565b8060118190555050565b611d2c612501565b80601260016101000a81548160ff02191690831515021790555050565b611d54848484610df2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db657611d7f8484848461283c565b611db5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611dc4612efc565b611dcc612efc565b611dd461257f565b831080611de85750611de461280d565b8310155b15611df65780915050611e21565b611dff836127e2565b9050806040015115611e145780915050611e21565b611e1d8361299c565b9150505b919050565b6060611e318261249a565b611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613fdd565b60405180910390fd5b60001515601260029054906101000a900460ff1615151415611f1e57600e8054611e9990613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec590613bc9565b8015611f125780601f10611ee757610100808354040283529160200191611f12565b820191906000526020600020905b815481529060010190602001808311611ef557829003601f168201915b50505050509050611f7a565b6000611f286129bc565b90506000815111611f485760405180602001604052806000815250611f76565b80611f5284612a4e565b600d604051602001611f66939291906140cd565b6040516020818303038152906040525b9150505b919050565b82600081118015611f9257506011548111155b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613d28565b60405180910390fd5b60105481611fdd610ddb565b611fe79190613d77565b1115612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613e19565b60405180910390fd5b601260019054906101000a900460ff16612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614170565b60405180910390fd5b600284600b6000612086612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120cb9190613d77565b111561210c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612103906141dc565b60405180910390fd5b6000612116612816565b6040516020016121269190614244565b60405160208183030381529060405280519060200120905061218c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612a9e565b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c2906142ab565b60405180910390fd5b84600b60006121d8612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461221d9190613d77565b600b6000612229612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612278612272612816565b8661281e565b5050505050565b60105481565b600b6020528060005260406000206000915090505481565b6122a5612501565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561236957506011548111155b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613d28565b60405180910390fd5b601054816123b4610ddb565b6123be9190613d77565b11156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690613e19565b60405180910390fd5b612407612501565b612411828461281e565b505050565b61241e612501565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124859061433d565b60405180910390fd5b6124978161271c565b50565b6000816124a561257f565b111580156124b4575060005482105b80156124f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612509612816565b73ffffffffffffffffffffffffffffffffffffffff166125276116d6565b73ffffffffffffffffffffffffffffffffffffffff161461257d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612574906143a9565b60405180910390fd5b565b600090565b6000808290508061259361257f565b1161261b5760005481101561261a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612618575b600081141561260e5760046000836001900393508381526020019081526020016000205490506125e3565b809250505061264d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126da868684612ab5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ea612efc565b6128066004600084815260200190815260200160002054612abe565b9050919050565b60008054905090565b600033905090565b612838828260405180602001604052806000815250612b74565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128626124f9565b8786866040518563ffffffff1660e01b8152600401612884949392919061441e565b602060405180830381600087803b15801561289e57600080fd5b505af19250505080156128cf57506040513d601f19601f820116820180604052508101906128cc919061447f565b60015b612949573d80600081146128ff576040519150601f19603f3d011682016040523d82523d6000602084013e612904565b606091505b50600081511415612941576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129a4612efc565b6129b56129b083612584565b612abe565b9050919050565b6060600c80546129cb90613bc9565b80601f01602080910402602001604051908101604052809291908181526020018280546129f790613bc9565b8015612a445780601f10612a1957610100808354040283529160200191612a44565b820191906000526020600020905b815481529060010190602001808311612a2757829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612a8a57600183039250600a81066030018353600a8104905080612a8557612a8a565b612a5f565b508181036020830392508083525050919050565b600082612aab8584612c11565b1490509392505050565b60009392505050565b612ac6612efc565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b7e8383612c67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0c57600080549050600083820390505b612bbe600086838060010194508661283c565b612bf4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bab578160005414612c0957600080fd5b50505b505050565b60008082905060005b8451811015612c5c57612c4782868381518110612c3a57612c39613cad565b5b6020026020010151612e24565b91508080612c54906144ac565b915050612c1a565b508091505092915050565b6000805490506000821415612ca8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cb560008483856126bd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d2c83612d1d60008660006126c3565b612d2685612e4f565b176126eb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d92565b506000821415612e09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e1f6000848385612716565b505050565b6000818310612e3c57612e378284612e5f565b612e47565b612e468383612e5f565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e8290613bc9565b90600052602060002090601f016020900481019282612ea45760008555612eeb565b82601f10612ebd57805160ff1916838001178555612eeb565b82800160010185558215612eeb579182015b82811115612eea578251825591602001919060010190612ecf565b5b509050612ef89190612f4b565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f64576000816000905550600101612f4c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fb181612f7c565b8114612fbc57600080fd5b50565b600081359050612fce81612fa8565b92915050565b600060208284031215612fea57612fe9612f72565b5b6000612ff884828501612fbf565b91505092915050565b60008115159050919050565b61301681613001565b82525050565b6000602082019050613031600083018461300d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613071578082015181840152602081019050613056565b83811115613080576000848401525b50505050565b6000601f19601f8301169050919050565b60006130a282613037565b6130ac8185613042565b93506130bc818560208601613053565b6130c581613086565b840191505092915050565b600060208201905081810360008301526130ea8184613097565b905092915050565b6000819050919050565b613105816130f2565b811461311057600080fd5b50565b600081359050613122816130fc565b92915050565b60006020828403121561313e5761313d612f72565b5b600061314c84828501613113565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061318082613155565b9050919050565b61319081613175565b82525050565b60006020820190506131ab6000830184613187565b92915050565b6131ba81613175565b81146131c557600080fd5b50565b6000813590506131d7816131b1565b92915050565b600080604083850312156131f4576131f3612f72565b5b6000613202858286016131c8565b925050602061321385828601613113565b9150509250929050565b613226816130f2565b82525050565b6000602082019050613241600083018461321d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328982613086565b810181811067ffffffffffffffff821117156132a8576132a7613251565b5b80604052505050565b60006132bb612f68565b90506132c78282613280565b919050565b600067ffffffffffffffff8211156132e7576132e6613251565b5b6132f082613086565b9050602081019050919050565b82818337600083830152505050565b600061331f61331a846132cc565b6132b1565b90508281526020810184848401111561333b5761333a61324c565b5b6133468482856132fd565b509392505050565b600082601f83011261336357613362613247565b5b813561337384826020860161330c565b91505092915050565b60006020828403121561339257613391612f72565b5b600082013567ffffffffffffffff8111156133b0576133af612f77565b5b6133bc8482850161334e565b91505092915050565b6133ce81613001565b81146133d957600080fd5b50565b6000813590506133eb816133c5565b92915050565b60006020828403121561340757613406612f72565b5b6000613415848285016133dc565b91505092915050565b60008060006060848603121561343757613436612f72565b5b6000613445868287016131c8565b9350506020613456868287016131c8565b925050604061346786828701613113565b9150509250925092565b6000819050919050565b61348481613471565b82525050565b600060208201905061349f600083018461347b565b92915050565b600080fd5b600080fd5b60008083601f8401126134c5576134c4613247565b5b8235905067ffffffffffffffff8111156134e2576134e16134a5565b5b6020830191508360208202830111156134fe576134fd6134aa565b5b9250929050565b6000806020838503121561351c5761351b612f72565b5b600083013567ffffffffffffffff81111561353a57613539612f77565b5b613546858286016134af565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61358781613175565b82525050565b600067ffffffffffffffff82169050919050565b6135aa8161358d565b82525050565b6135b981613001565b82525050565b600062ffffff82169050919050565b6135d7816135bf565b82525050565b6080820160008201516135f3600085018261357e565b50602082015161360660208501826135a1565b50604082015161361960408501826135b0565b50606082015161362c60608501826135ce565b50505050565b600061363e83836135dd565b60808301905092915050565b6000602082019050919050565b600061366282613552565b61366c818561355d565b93506136778361356e565b8060005b838110156136a857815161368f8882613632565b975061369a8361364a565b92505060018101905061367b565b5085935050505092915050565b600060208201905081810360008301526136cf8184613657565b905092915050565b6000602082840312156136ed576136ec612f72565b5b60006136fb848285016131c8565b91505092915050565b61370d81613471565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b60006020828403121561374657613745612f72565b5b60006137548482850161371b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613792816130f2565b82525050565b60006137a48383613789565b60208301905092915050565b6000602082019050919050565b60006137c88261375d565b6137d28185613768565b93506137dd83613779565b8060005b8381101561380e5781516137f58882613798565b9750613800836137b0565b9250506001810190506137e1565b5085935050505092915050565b6000602082019050818103600083015261383581846137bd565b905092915050565b60008060006060848603121561385657613855612f72565b5b6000613864868287016131c8565b935050602061387586828701613113565b925050604061388686828701613113565b9150509250925092565b600080604083850312156138a7576138a6612f72565b5b60006138b5858286016131c8565b92505060206138c6858286016133dc565b9150509250929050565b600067ffffffffffffffff8211156138eb576138ea613251565b5b6138f482613086565b9050602081019050919050565b600061391461390f846138d0565b6132b1565b9050828152602081018484840111156139305761392f61324c565b5b61393b8482856132fd565b509392505050565b600082601f83011261395857613957613247565b5b8135613968848260208601613901565b91505092915050565b6000806000806080858703121561398b5761398a612f72565b5b6000613999878288016131c8565b94505060206139aa878288016131c8565b93505060406139bb87828801613113565b925050606085013567ffffffffffffffff8111156139dc576139db612f77565b5b6139e887828801613943565b91505092959194509250565b608082016000820151613a0a600085018261357e565b506020820151613a1d60208501826135a1565b506040820151613a3060408501826135b0565b506060820151613a4360608501826135ce565b50505050565b6000608082019050613a5e60008301846139f4565b92915050565b60008083601f840112613a7a57613a79613247565b5b8235905067ffffffffffffffff811115613a9757613a966134a5565b5b602083019150836020820283011115613ab357613ab26134aa565b5b9250929050565b600080600060408486031215613ad357613ad2612f72565b5b6000613ae186828701613113565b935050602084013567ffffffffffffffff811115613b0257613b01612f77565b5b613b0e86828701613a64565b92509250509250925092565b60008060408385031215613b3157613b30612f72565b5b6000613b3f858286016131c8565b9250506020613b50858286016131c8565b9150509250929050565b60008060408385031215613b7157613b70612f72565b5b6000613b7f85828601613113565b9250506020613b90858286016131c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613be157607f821691505b60208210811415613bf557613bf4613b9a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613c31601f83613042565b9150613c3c82613bfb565b602082019050919050565b60006020820190508181036000830152613c6081613c24565b9050919050565b600081905092915050565b50565b6000613c82600083613c67565b9150613c8d82613c72565b600082019050919050565b6000613ca382613c75565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d12601483613042565b9150613d1d82613cdc565b602082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d82826130f2565b9150613d8d836130f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613e03601483613042565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b6000613e44826130f2565b9150613e4f836130f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8857613e87613d48565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ec9601383613042565b9150613ed482613e93565b602082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613f35601783613042565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613fc7602f83613042565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b600081905092915050565b600061401382613037565b61401d8185613ffd565b935061402d818560208601613053565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461405b81613bc9565b6140658186613ffd565b945060018216600081146140805760018114614091576140c4565b60ff198316865281860193506140c4565b61409a85614039565b60005b838110156140bc5781548189015260018201915060208101905061409d565b838801955050505b50505092915050565b60006140d98286614008565b91506140e58285614008565b91506140f1828461404e565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061415a602283613042565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006141c6601883613042565b91506141d182614190565b602082019050919050565b600060208201905081810360008301526141f5816141b9565b9050919050565b60008160601b9050919050565b6000614214826141fc565b9050919050565b600061422682614209565b9050919050565b61423e61423982613175565b61421b565b82525050565b6000614250828461422d565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614295600e83613042565b91506142a08261425f565b602082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614327602683613042565b9150614332826142cb565b604082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614393602083613042565b915061439e8261435d565b602082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143f0826143c9565b6143fa81856143d4565b935061440a818560208601613053565b61441381613086565b840191505092915050565b60006080820190506144336000830187613187565b6144406020830186613187565b61444d604083018561321d565b818103606083015261445f81846143e5565b905095945050505050565b60008151905061447981612fa8565b92915050565b60006020828403121561449557614494612f72565b5b60006144a38482850161446a565b91505092915050565b60006144b7826130f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ea576144e9613d48565b5b60018201905091905056fea26469706673582212203a25493ec3bdbe6693f9dcfd60db148fae826bbc4a93dc811194d8438cac173864736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000954726962654865726f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025448000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610987578063db4bec44146109b2578063e0a80853146109ef578063e985e9c514610a18578063efbd73f414610a55578063f2fde38b14610a7e5761027d565b8063b071401b14610869578063b767a09814610892578063b88d4fde146108bb578063c23dc68f146108e4578063c87b56dd14610921578063d2cab0561461095e5761027d565b806394354fd01161011357806394354fd01461076657806395d89b411461079157806399a2557a146107bc578063a0712d68146107f9578063a22cb46514610815578063a45ba8e71461083e5761027d565b8063715018a6146106955780637cb64759146106ac5780637ec4a659146106d55780638462151c146106fe5780638da5cb5b1461073b5761027d565b806342842e0e116101f35780635c975abb116101ac5780635c975abb1461057157806362b99ad41461059c5780636352211e146105c75780636caede3d146106045780636f8b44b01461062f57806370a08231146106585761027d565b806342842e0e1461046357806344a0d68a1461048c5780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635bbb2177146105345761027d565b806316ba10e01161024557806316ba10e01461037b57806316c38b3c146103a457806318160ddd146103cd57806323b872dd146103f85780632eb4a7ab146104215780633ccfd60b1461044c5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806313faede614610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190612fd4565b610aa7565b6040516102b6919061301c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b39565b6040516102e191906130d0565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613128565b610bcb565b60405161031e9190613196565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906131dd565b610c4a565b005b34801561035c57600080fd5b50610365610d8e565b604051610372919061322c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061337c565b610d94565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906133f1565b610db6565b005b3480156103d957600080fd5b506103e2610ddb565b6040516103ef919061322c565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061341e565b610df2565b005b34801561042d57600080fd5b50610436611117565b604051610443919061348a565b60405180910390f35b34801561045857600080fd5b5061046161111d565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061341e565b6111fb565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613128565b61121b565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061337c565b61122d565b005b3480156104ea57600080fd5b506104f361124f565b604051610500919061301c565b60405180910390f35b34801561051557600080fd5b5061051e611262565b60405161052b91906130d0565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613505565b6112f0565b60405161056891906136b5565b60405180910390f35b34801561057d57600080fd5b506105866113b3565b604051610593919061301c565b60405180910390f35b3480156105a857600080fd5b506105b16113c6565b6040516105be91906130d0565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613128565b611454565b6040516105fb9190613196565b60405180910390f35b34801561061057600080fd5b50610619611466565b604051610626919061301c565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190613128565b611479565b005b34801561066457600080fd5b5061067f600480360381019061067a91906136d7565b61148b565b60405161068c919061322c565b60405180910390f35b3480156106a157600080fd5b506106aa611544565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613730565b611558565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061337c565b61156a565b005b34801561070a57600080fd5b50610725600480360381019061072091906136d7565b61158c565b604051610732919061381b565b60405180910390f35b34801561074757600080fd5b506107506116d6565b60405161075d9190613196565b60405180910390f35b34801561077257600080fd5b5061077b611700565b604051610788919061322c565b60405180910390f35b34801561079d57600080fd5b506107a6611706565b6040516107b391906130d0565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061383d565b611798565b6040516107f0919061381b565b60405180910390f35b610813600480360381019061080e9190613128565b6119ac565b005b34801561082157600080fd5b5061083c60048036038101906108379190613890565b611b0c565b005b34801561084a57600080fd5b50610853611c84565b60405161086091906130d0565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b9190613128565b611d12565b005b34801561089e57600080fd5b506108b960048036038101906108b491906133f1565b611d24565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190613971565b611d49565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613128565b611dbc565b6040516109189190613a49565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613128565b611e26565b60405161095591906130d0565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613aba565b611f7f565b005b34801561099357600080fd5b5061099c61227f565b6040516109a9919061322c565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906136d7565b612285565b6040516109e6919061322c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906133f1565b61229d565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613b1a565b6122c2565b604051610a4c919061301c565b60405180910390f35b348015610a6157600080fd5b50610a7c6004803603810190610a779190613b5a565b612356565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa091906136d7565b612416565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b4890613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490613bc9565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bd68261249a565b610c0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5582611454565b90508073ffffffffffffffffffffffffffffffffffffffff16610c766124f9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd957610ca281610c9d6124f9565b6122c2565b610cd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610d9c612501565b80600d9080519060200190610db2929190612e76565b5050565b610dbe612501565b80601260006101000a81548160ff02191690831515021790555050565b6000610de561257f565b6001546000540303905090565b6000610dfd82612584565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e64576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e7084612652565b91509150610e868187610e816124f9565b612679565b610ed257610e9b86610e966124f9565b6122c2565b610ed1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4686868660016126bd565b8015610f5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101f85610ffb8888876126c3565b7c0200000000000000000000000000000000000000000000000000000000176126eb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110a75760006001850190506000600460008381526020019081526020016000205414156110a55760005481146110a4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110f8686866001612716565b505050505050565b600a5481565b611125612501565b6002600954141561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613c47565b60405180910390fd5b6002600981905550600061117d6116d6565b73ffffffffffffffffffffffffffffffffffffffff16476040516111a090613c98565b60006040518083038185875af1925050503d80600081146111dd576040519150601f19603f3d011682016040523d82523d6000602084013e6111e2565b606091505b50509050806111f057600080fd5b506001600981905550565b61121683838360405180602001604052806000815250611d49565b505050565b611223612501565b80600f8190555050565b611235612501565b80600e908051906020019061124b929190612e76565b5050565b601260029054906101000a900460ff1681565b600d805461126f90613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90613bc9565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff81111561131657611315613251565b5b60405190808252806020026020018201604052801561134f57816020015b61133c612efc565b8152602001906001900390816113345790505b50905060005b8281146113a75761137e86868381811061137257611371613cad565b5b90506020020135611dbc565b82828151811061139157611390613cad565b5b6020026020010181905250806001019050611355565b50809250505092915050565b601260009054906101000a900460ff1681565b600c80546113d390613bc9565b80601f01602080910402602001604051908101604052809291908181526020018280546113ff90613bc9565b801561144c5780601f106114215761010080835404028352916020019161144c565b820191906000526020600020905b81548152906001019060200180831161142f57829003601f168201915b505050505081565b600061145f82612584565b9050919050565b601260019054906101000a900460ff1681565b611481612501565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61154c612501565b611556600061271c565b565b611560612501565b80600a8190555050565b611572612501565b80600c9080519060200190611588929190612e76565b5050565b6060600080600061159c8561148b565b905060008167ffffffffffffffff8111156115ba576115b9613251565b5b6040519080825280602002602001820160405280156115e85781602001602082028036833780820191505090505b5090506115f3612efc565b60006115fd61257f565b90505b8386146116c857611610816127e2565b9150816040015115611621576116bd565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461166157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116bc57808387806001019850815181106116af576116ae613cad565b5b6020026020010181815250505b5b806001019050611600565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461171590613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461174190613bc9565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050905090565b60608183106117d3576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117de61280d565b90506117e861257f565b8510156117fa576117f761257f565b94505b80841115611806578093505b60006118118761148b565b90508486101561183457600086860390508181101561182e578091505b50611839565b600090505b60008167ffffffffffffffff81111561185557611854613251565b5b6040519080825280602002602001820160405280156118835781602001602082028036833780820191505090505b509050600082141561189b57809450505050506119a5565b60006118a688611dbc565b9050600081604001516118bb57816000015190505b60008990505b8881141580156118d15750848714155b15611997576118df816127e2565b92508260400151156118f05761198c565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461193057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198b578084888060010199508151811061197e5761197d613cad565b5b6020026020010181815250505b5b8060010190506118c1565b508583528296505050505050505b9392505050565b806000811180156119bf57506011548111155b6119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613d28565b60405180910390fd5b60105481611a0a610ddb565b611a149190613d77565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90613e19565b60405180910390fd5b8180600f54611a649190613e39565b341015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613edf565b60405180910390fd5b601260009054906101000a900460ff1615611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613f4b565b60405180910390fd5b611b07611b01612816565b8461281e565b505050565b611b146124f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b79576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b866124f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c336124f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c78919061301c565b60405180910390a35050565b600e8054611c9190613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbd90613bc9565b8015611d0a5780601f10611cdf57610100808354040283529160200191611d0a565b820191906000526020600020905b815481529060010190602001808311611ced57829003601f168201915b505050505081565b611d1a612501565b8060118190555050565b611d2c612501565b80601260016101000a81548160ff02191690831515021790555050565b611d54848484610df2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db657611d7f8484848461283c565b611db5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611dc4612efc565b611dcc612efc565b611dd461257f565b831080611de85750611de461280d565b8310155b15611df65780915050611e21565b611dff836127e2565b9050806040015115611e145780915050611e21565b611e1d8361299c565b9150505b919050565b6060611e318261249a565b611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613fdd565b60405180910390fd5b60001515601260029054906101000a900460ff1615151415611f1e57600e8054611e9990613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec590613bc9565b8015611f125780601f10611ee757610100808354040283529160200191611f12565b820191906000526020600020905b815481529060010190602001808311611ef557829003601f168201915b50505050509050611f7a565b6000611f286129bc565b90506000815111611f485760405180602001604052806000815250611f76565b80611f5284612a4e565b600d604051602001611f66939291906140cd565b6040516020818303038152906040525b9150505b919050565b82600081118015611f9257506011548111155b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613d28565b60405180910390fd5b60105481611fdd610ddb565b611fe79190613d77565b1115612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613e19565b60405180910390fd5b601260019054906101000a900460ff16612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614170565b60405180910390fd5b600284600b6000612086612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120cb9190613d77565b111561210c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612103906141dc565b60405180910390fd5b6000612116612816565b6040516020016121269190614244565b60405160208183030381529060405280519060200120905061218c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612a9e565b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c2906142ab565b60405180910390fd5b84600b60006121d8612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461221d9190613d77565b600b6000612229612816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612278612272612816565b8661281e565b5050505050565b60105481565b600b6020528060005260406000206000915090505481565b6122a5612501565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561236957506011548111155b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613d28565b60405180910390fd5b601054816123b4610ddb565b6123be9190613d77565b11156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690613e19565b60405180910390fd5b612407612501565b612411828461281e565b505050565b61241e612501565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124859061433d565b60405180910390fd5b6124978161271c565b50565b6000816124a561257f565b111580156124b4575060005482105b80156124f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612509612816565b73ffffffffffffffffffffffffffffffffffffffff166125276116d6565b73ffffffffffffffffffffffffffffffffffffffff161461257d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612574906143a9565b60405180910390fd5b565b600090565b6000808290508061259361257f565b1161261b5760005481101561261a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612618575b600081141561260e5760046000836001900393508381526020019081526020016000205490506125e3565b809250505061264d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126da868684612ab5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ea612efc565b6128066004600084815260200190815260200160002054612abe565b9050919050565b60008054905090565b600033905090565b612838828260405180602001604052806000815250612b74565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128626124f9565b8786866040518563ffffffff1660e01b8152600401612884949392919061441e565b602060405180830381600087803b15801561289e57600080fd5b505af19250505080156128cf57506040513d601f19601f820116820180604052508101906128cc919061447f565b60015b612949573d80600081146128ff576040519150601f19603f3d011682016040523d82523d6000602084013e612904565b606091505b50600081511415612941576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129a4612efc565b6129b56129b083612584565b612abe565b9050919050565b6060600c80546129cb90613bc9565b80601f01602080910402602001604051908101604052809291908181526020018280546129f790613bc9565b8015612a445780601f10612a1957610100808354040283529160200191612a44565b820191906000526020600020905b815481529060010190602001808311612a2757829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612a8a57600183039250600a81066030018353600a8104905080612a8557612a8a565b612a5f565b508181036020830392508083525050919050565b600082612aab8584612c11565b1490509392505050565b60009392505050565b612ac6612efc565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b7e8383612c67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0c57600080549050600083820390505b612bbe600086838060010194508661283c565b612bf4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bab578160005414612c0957600080fd5b50505b505050565b60008082905060005b8451811015612c5c57612c4782868381518110612c3a57612c39613cad565b5b6020026020010151612e24565b91508080612c54906144ac565b915050612c1a565b508091505092915050565b6000805490506000821415612ca8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cb560008483856126bd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d2c83612d1d60008660006126c3565b612d2685612e4f565b176126eb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d92565b506000821415612e09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e1f6000848385612716565b505050565b6000818310612e3c57612e378284612e5f565b612e47565b612e468383612e5f565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e8290613bc9565b90600052602060002090601f016020900481019282612ea45760008555612eeb565b82601f10612ebd57805160ff1916838001178555612eeb565b82800160010185558215612eeb579182015b82811115612eea578251825591602001919060010190612ecf565b5b509050612ef89190612f4b565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f64576000816000905550600101612f4c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fb181612f7c565b8114612fbc57600080fd5b50565b600081359050612fce81612fa8565b92915050565b600060208284031215612fea57612fe9612f72565b5b6000612ff884828501612fbf565b91505092915050565b60008115159050919050565b61301681613001565b82525050565b6000602082019050613031600083018461300d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613071578082015181840152602081019050613056565b83811115613080576000848401525b50505050565b6000601f19601f8301169050919050565b60006130a282613037565b6130ac8185613042565b93506130bc818560208601613053565b6130c581613086565b840191505092915050565b600060208201905081810360008301526130ea8184613097565b905092915050565b6000819050919050565b613105816130f2565b811461311057600080fd5b50565b600081359050613122816130fc565b92915050565b60006020828403121561313e5761313d612f72565b5b600061314c84828501613113565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061318082613155565b9050919050565b61319081613175565b82525050565b60006020820190506131ab6000830184613187565b92915050565b6131ba81613175565b81146131c557600080fd5b50565b6000813590506131d7816131b1565b92915050565b600080604083850312156131f4576131f3612f72565b5b6000613202858286016131c8565b925050602061321385828601613113565b9150509250929050565b613226816130f2565b82525050565b6000602082019050613241600083018461321d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328982613086565b810181811067ffffffffffffffff821117156132a8576132a7613251565b5b80604052505050565b60006132bb612f68565b90506132c78282613280565b919050565b600067ffffffffffffffff8211156132e7576132e6613251565b5b6132f082613086565b9050602081019050919050565b82818337600083830152505050565b600061331f61331a846132cc565b6132b1565b90508281526020810184848401111561333b5761333a61324c565b5b6133468482856132fd565b509392505050565b600082601f83011261336357613362613247565b5b813561337384826020860161330c565b91505092915050565b60006020828403121561339257613391612f72565b5b600082013567ffffffffffffffff8111156133b0576133af612f77565b5b6133bc8482850161334e565b91505092915050565b6133ce81613001565b81146133d957600080fd5b50565b6000813590506133eb816133c5565b92915050565b60006020828403121561340757613406612f72565b5b6000613415848285016133dc565b91505092915050565b60008060006060848603121561343757613436612f72565b5b6000613445868287016131c8565b9350506020613456868287016131c8565b925050604061346786828701613113565b9150509250925092565b6000819050919050565b61348481613471565b82525050565b600060208201905061349f600083018461347b565b92915050565b600080fd5b600080fd5b60008083601f8401126134c5576134c4613247565b5b8235905067ffffffffffffffff8111156134e2576134e16134a5565b5b6020830191508360208202830111156134fe576134fd6134aa565b5b9250929050565b6000806020838503121561351c5761351b612f72565b5b600083013567ffffffffffffffff81111561353a57613539612f77565b5b613546858286016134af565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61358781613175565b82525050565b600067ffffffffffffffff82169050919050565b6135aa8161358d565b82525050565b6135b981613001565b82525050565b600062ffffff82169050919050565b6135d7816135bf565b82525050565b6080820160008201516135f3600085018261357e565b50602082015161360660208501826135a1565b50604082015161361960408501826135b0565b50606082015161362c60608501826135ce565b50505050565b600061363e83836135dd565b60808301905092915050565b6000602082019050919050565b600061366282613552565b61366c818561355d565b93506136778361356e565b8060005b838110156136a857815161368f8882613632565b975061369a8361364a565b92505060018101905061367b565b5085935050505092915050565b600060208201905081810360008301526136cf8184613657565b905092915050565b6000602082840312156136ed576136ec612f72565b5b60006136fb848285016131c8565b91505092915050565b61370d81613471565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b60006020828403121561374657613745612f72565b5b60006137548482850161371b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613792816130f2565b82525050565b60006137a48383613789565b60208301905092915050565b6000602082019050919050565b60006137c88261375d565b6137d28185613768565b93506137dd83613779565b8060005b8381101561380e5781516137f58882613798565b9750613800836137b0565b9250506001810190506137e1565b5085935050505092915050565b6000602082019050818103600083015261383581846137bd565b905092915050565b60008060006060848603121561385657613855612f72565b5b6000613864868287016131c8565b935050602061387586828701613113565b925050604061388686828701613113565b9150509250925092565b600080604083850312156138a7576138a6612f72565b5b60006138b5858286016131c8565b92505060206138c6858286016133dc565b9150509250929050565b600067ffffffffffffffff8211156138eb576138ea613251565b5b6138f482613086565b9050602081019050919050565b600061391461390f846138d0565b6132b1565b9050828152602081018484840111156139305761392f61324c565b5b61393b8482856132fd565b509392505050565b600082601f83011261395857613957613247565b5b8135613968848260208601613901565b91505092915050565b6000806000806080858703121561398b5761398a612f72565b5b6000613999878288016131c8565b94505060206139aa878288016131c8565b93505060406139bb87828801613113565b925050606085013567ffffffffffffffff8111156139dc576139db612f77565b5b6139e887828801613943565b91505092959194509250565b608082016000820151613a0a600085018261357e565b506020820151613a1d60208501826135a1565b506040820151613a3060408501826135b0565b506060820151613a4360608501826135ce565b50505050565b6000608082019050613a5e60008301846139f4565b92915050565b60008083601f840112613a7a57613a79613247565b5b8235905067ffffffffffffffff811115613a9757613a966134a5565b5b602083019150836020820283011115613ab357613ab26134aa565b5b9250929050565b600080600060408486031215613ad357613ad2612f72565b5b6000613ae186828701613113565b935050602084013567ffffffffffffffff811115613b0257613b01612f77565b5b613b0e86828701613a64565b92509250509250925092565b60008060408385031215613b3157613b30612f72565b5b6000613b3f858286016131c8565b9250506020613b50858286016131c8565b9150509250929050565b60008060408385031215613b7157613b70612f72565b5b6000613b7f85828601613113565b9250506020613b90858286016131c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613be157607f821691505b60208210811415613bf557613bf4613b9a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613c31601f83613042565b9150613c3c82613bfb565b602082019050919050565b60006020820190508181036000830152613c6081613c24565b9050919050565b600081905092915050565b50565b6000613c82600083613c67565b9150613c8d82613c72565b600082019050919050565b6000613ca382613c75565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d12601483613042565b9150613d1d82613cdc565b602082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d82826130f2565b9150613d8d836130f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613e03601483613042565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b6000613e44826130f2565b9150613e4f836130f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8857613e87613d48565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ec9601383613042565b9150613ed482613e93565b602082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613f35601783613042565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613fc7602f83613042565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b600081905092915050565b600061401382613037565b61401d8185613ffd565b935061402d818560208601613053565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461405b81613bc9565b6140658186613ffd565b945060018216600081146140805760018114614091576140c4565b60ff198316865281860193506140c4565b61409a85614039565b60005b838110156140bc5781548189015260018201915060208101905061409d565b838801955050505b50505092915050565b60006140d98286614008565b91506140e58285614008565b91506140f1828461404e565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061415a602283613042565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006141c6601883613042565b91506141d182614190565b602082019050919050565b600060208201905081810360008301526141f5816141b9565b9050919050565b60008160601b9050919050565b6000614214826141fc565b9050919050565b600061422682614209565b9050919050565b61423e61423982613175565b61421b565b82525050565b6000614250828461422d565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614295600e83613042565b91506142a08261425f565b602082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614327602683613042565b9150614332826142cb565b604082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614393602083613042565b915061439e8261435d565b602082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143f0826143c9565b6143fa81856143d4565b935061440a818560208601613053565b61441381613086565b840191505092915050565b60006080820190506144336000830187613187565b6144406020830186613187565b61444d604083018561321d565b818103606083015261445f81846143e5565b905095945050505050565b60008151905061447981612fa8565b92915050565b60006020828403121561449557614494612f72565b5b60006144a38482850161446a565b91505092915050565b60006144b7826130f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ea576144e9613d48565b5b60018201905091905056fea26469706673582212203a25493ec3bdbe6693f9dcfd60db148fae826bbc4a93dc811194d8438cac173864736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000954726962654865726f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025448000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 54726962654865726f0000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 5448000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

74987:3747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33545:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34447:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40930:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40371:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75256:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77967:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78073:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30198:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44637:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75057:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78471:150;;;;;;;;;;;;;:::i;:::-;;47550:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77507:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77723:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75450:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75178:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70128:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75375:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75145:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35840:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75405:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78371:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31382:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14293:103;;;;;;;;;;;;;:::i;:::-;;78156:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77861:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74004:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13645:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75331:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34623:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71044:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76588:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41488:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75216:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77587:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78260:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48333:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69541:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76969:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76021:561;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75294:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75087:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77420:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41953:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76808:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14551:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33545:639;33630:4;33969:10;33954:25;;:11;:25;;;;:102;;;;34046:10;34031:25;;:11;:25;;;;33954:102;:179;;;;34123:10;34108:25;;:11;:25;;;;33954:179;33934:199;;33545:639;;;:::o;34447:100::-;34501:13;34534:5;34527:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34447:100;:::o;40930:218::-;41006:7;41031:16;41039:7;41031;:16::i;:::-;41026:64;;41056:34;;;;;;;;;;;;;;41026:64;41110:15;:24;41126:7;41110:24;;;;;;;;;;;:30;;;;;;;;;;;;41103:37;;40930:218;;;:::o;40371:400::-;40452:13;40468:16;40476:7;40468;:16::i;:::-;40452:32;;40524:5;40501:28;;:19;:17;:19::i;:::-;:28;;;40497:175;;40549:44;40566:5;40573:19;:17;:19::i;:::-;40549:16;:44::i;:::-;40544:128;;40621:35;;;;;;;;;;;;;;40544:128;40497:175;40717:2;40684:15;:24;40700:7;40684:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40755:7;40751:2;40735:28;;40744:5;40735:28;;;;;;;;;;;;40441:330;40371:400;;:::o;75256:33::-;;;;:::o;77967:100::-;13531:13;:11;:13::i;:::-;78051:10:::1;78039:9;:22;;;;;;;;;;;;:::i;:::-;;77967:100:::0;:::o;78073:77::-;13531:13;:11;:13::i;:::-;78138:6:::1;78129;;:15;;;;;;;;;;;;;;;;;;78073:77:::0;:::o;30198:323::-;30259:7;30487:15;:13;:15::i;:::-;30472:12;;30456:13;;:28;:46;30449:53;;30198:323;:::o;44637:2817::-;44771:27;44801;44820:7;44801:18;:27::i;:::-;44771:57;;44886:4;44845:45;;44861:19;44845:45;;;44841:86;;44899:28;;;;;;;;;;;;;;44841:86;44941:27;44970:23;44997:35;45024:7;44997:26;:35::i;:::-;44940:92;;;;45132:68;45157:15;45174:4;45180:19;:17;:19::i;:::-;45132:24;:68::i;:::-;45127:180;;45220:43;45237:4;45243:19;:17;:19::i;:::-;45220:16;:43::i;:::-;45215:92;;45272:35;;;;;;;;;;;;;;45215:92;45127:180;45338:1;45324:16;;:2;:16;;;45320:52;;;45349:23;;;;;;;;;;;;;;45320:52;45385:43;45407:4;45413:2;45417:7;45426:1;45385:21;:43::i;:::-;45521:15;45518:160;;;45661:1;45640:19;45633:30;45518:160;46058:18;:24;46077:4;46058:24;;;;;;;;;;;;;;;;46056:26;;;;;;;;;;;;46127:18;:22;46146:2;46127:22;;;;;;;;;;;;;;;;46125:24;;;;;;;;;;;46449:146;46486:2;46535:45;46550:4;46556:2;46560:19;46535:14;:45::i;:::-;26597:8;46507:73;46449:18;:146::i;:::-;46420:17;:26;46438:7;46420:26;;;;;;;;;;;:175;;;;46766:1;26597:8;46715:19;:47;:52;46711:627;;;46788:19;46820:1;46810:7;:11;46788:33;;46977:1;46943:17;:30;46961:11;46943:30;;;;;;;;;;;;:35;46939:384;;;47081:13;;47066:11;:28;47062:242;;47261:19;47228:17;:30;47246:11;47228:30;;;;;;;;;;;:52;;;;47062:242;46939:384;46769:569;46711:627;47385:7;47381:2;47366:27;;47375:4;47366:27;;;;;;;;;;;;47404:42;47425:4;47431:2;47435:7;47444:1;47404:20;:42::i;:::-;44760:2694;;;44637:2817;;;:::o;75057:25::-;;;;:::o;78471:150::-;13531:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;78529:7:::2;78550;:5;:7::i;:::-;78542:21;;78571;78542:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78528:69;;;78612:2;78604:11;;;::::0;::::2;;78521:100;1801:1:::1;2755:7;:22;;;;78471:150::o:0;47550:185::-;47688:39;47705:4;47711:2;47715:7;47688:39;;;;;;;;;;;;:16;:39::i;:::-;47550:185;;;:::o;77507:74::-;13531:13;:11;:13::i;:::-;77570:5:::1;77563:4;:12;;;;77507:74:::0;:::o;77723:132::-;13531:13;:11;:13::i;:::-;77831:18:::1;77811:17;:38;;;;;;;;;;;;:::i;:::-;;77723:132:::0;:::o;75450:28::-;;;;;;;;;;;;;:::o;75178:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70128:528::-;70272:23;70338:22;70363:8;;:15;;70338:40;;70393:34;70451:14;70430:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;70393:73;;70486:9;70481:125;70502:14;70497:1;:19;70481:125;;70558:32;70578:8;;70587:1;70578:11;;;;;;;:::i;:::-;;;;;;;;70558:19;:32::i;:::-;70542:10;70553:1;70542:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;70518:3;;;;;70481:125;;;;70627:10;70620:17;;;;70128:528;;;;:::o;75375:25::-;;;;;;;;;;;;;:::o;75145:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35840:152::-;35912:7;35955:27;35974:7;35955:18;:27::i;:::-;35932:52;;35840:152;;;:::o;75405:40::-;;;;;;;;;;;;;:::o;78371:94::-;13531:13;:11;:13::i;:::-;78449:10:::1;78437:9;:22;;;;78371:94:::0;:::o;31382:233::-;31454:7;31495:1;31478:19;;:5;:19;;;31474:60;;;31506:28;;;;;;;;;;;;;;31474:60;25541:13;31552:18;:25;31571:5;31552:25;;;;;;;;;;;;;;;;:55;31545:62;;31382:233;;;:::o;14293:103::-;13531:13;:11;:13::i;:::-;14358:30:::1;14385:1;14358:18;:30::i;:::-;14293:103::o:0;78156:98::-;13531:13;:11;:13::i;:::-;78237:11:::1;78224:10;:24;;;;78156:98:::0;:::o;77861:100::-;13531:13;:11;:13::i;:::-;77945:10:::1;77933:9;:22;;;;;;;;;;;;:::i;:::-;;77861:100:::0;:::o;74004:900::-;74082:16;74136:19;74170:25;74210:22;74235:16;74245:5;74235:9;:16::i;:::-;74210:41;;74266:25;74308:14;74294:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74266:57;;74338:31;;:::i;:::-;74389:9;74401:15;:13;:15::i;:::-;74389:27;;74384:472;74433:14;74418:11;:29;74384:472;;74485:15;74498:1;74485:12;:15::i;:::-;74473:27;;74523:9;:16;;;74519:73;;;74564:8;;74519:73;74640:1;74614:28;;:9;:14;;;:28;;;74610:111;;74687:9;:14;;;74667:34;;74610:111;74764:5;74743:26;;:17;:26;;;74739:102;;;74820:1;74794:8;74803:13;;;;;;74794:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;74739:102;74384:472;74449:3;;;;;74384:472;;;;74877:8;74870:15;;;;;;;74004:900;;;:::o;13645:87::-;13691:7;13718:6;;;;;;;;;;;13711:13;;13645:87;:::o;75331:37::-;;;;:::o;34623:104::-;34679:13;34712:7;34705:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34623:104;:::o;71044:2513::-;71187:16;71254:4;71245:5;:13;71241:45;;71267:19;;;;;;;;;;;;;;71241:45;71301:19;71335:17;71355:14;:12;:14::i;:::-;71335:34;;71455:15;:13;:15::i;:::-;71447:5;:23;71443:87;;;71499:15;:13;:15::i;:::-;71491:23;;71443:87;71606:9;71599:4;:16;71595:73;;;71643:9;71636:16;;71595:73;71682:25;71710:16;71720:5;71710:9;:16::i;:::-;71682:44;;71904:4;71896:5;:12;71892:278;;;71929:19;71958:5;71951:4;:12;71929:34;;72000:17;71986:11;:31;71982:111;;;72062:11;72042:31;;71982:111;71910:198;71892:278;;;72153:1;72133:21;;71892:278;72184:25;72226:17;72212:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72184:60;;72284:1;72263:17;:22;72259:78;;;72313:8;72306:15;;;;;;;;72259:78;72481:31;72515:26;72535:5;72515:19;:26::i;:::-;72481:60;;72556:25;72801:9;:16;;;72796:92;;72858:9;:14;;;72838:34;;72796:92;72907:9;72919:5;72907:17;;72902:478;72931:4;72926:1;:9;;:45;;;;;72954:17;72939:11;:32;;72926:45;72902:478;;;73009:15;73022:1;73009:12;:15::i;:::-;72997:27;;73047:9;:16;;;73043:73;;;73088:8;;73043:73;73164:1;73138:28;;:9;:14;;;:28;;;73134:111;;73211:9;:14;;;73191:34;;73134:111;73288:5;73267:26;;:17;:26;;;73263:102;;;73344:1;73318:8;73327:13;;;;;;73318:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;73263:102;72902:478;72973:3;;;;;72902:478;;;;73482:11;73472:8;73465:29;73530:8;73523:15;;;;;;;;71044:2513;;;;;;:::o;76588:212::-;76653:11;75718:1;75704:11;:15;:52;;;;;75738:18;;75723:11;:33;;75704:52;75696:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75827:9;;75812:11;75796:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;75788:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76686:11:::1;75966;75959:4;;:18;;;;:::i;:::-;75946:9;:31;;75938:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;76715:6:::2;;;;;;;;;;;76714:7;76706:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;76758:36;76768:12;:10;:12::i;:::-;76782:11;76758:9;:36::i;:::-;75868:1:::1;76588:212:::0;;:::o;41488:308::-;41599:19;:17;:19::i;:::-;41587:31;;:8;:31;;;41583:61;;;41627:17;;;;;;;;;;;;;;41583:61;41709:8;41657:18;:39;41676:19;:17;:19::i;:::-;41657:39;;;;;;;;;;;;;;;:49;41697:8;41657:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41769:8;41733:55;;41748:19;:17;:19::i;:::-;41733:55;;;41779:8;41733:55;;;;;;:::i;:::-;;;;;;;;41488:308;;:::o;75216:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77587:130::-;13531:13;:11;:13::i;:::-;77692:19:::1;77671:18;:40;;;;77587:130:::0;:::o;78260:105::-;13531:13;:11;:13::i;:::-;78353:6:::1;78330:20;;:29;;;;;;;;;;;;;;;;;;78260:105:::0;:::o;48333:399::-;48500:31;48513:4;48519:2;48523:7;48500:12;:31::i;:::-;48564:1;48546:2;:14;;;:19;48542:183;;48585:56;48616:4;48622:2;48626:7;48635:5;48585:30;:56::i;:::-;48580:145;;48669:40;;;;;;;;;;;;;;48580:145;48542:183;48333:399;;;;:::o;69541:428::-;69625:21;;:::i;:::-;69659:31;;:::i;:::-;69715:15;:13;:15::i;:::-;69705:7;:25;:54;;;;69745:14;:12;:14::i;:::-;69734:7;:25;;69705:54;69701:103;;;69783:9;69776:16;;;;;69701:103;69826:21;69839:7;69826:12;:21::i;:::-;69814:33;;69862:9;:16;;;69858:65;;;69902:9;69895:16;;;;;69858:65;69940:21;69953:7;69940:12;:21::i;:::-;69933:28;;;69541:428;;;;:::o;76969:445::-;77043:13;77073:17;77081:8;77073:7;:17::i;:::-;77065:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77167:5;77155:17;;:8;;;;;;;;;;;:17;;;77151:64;;;77190:17;77183:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77151:64;77223:28;77254:10;:8;:10::i;:::-;77223:41;;77309:1;77284:14;77278:28;:32;:130;;;;;;;;;;;;;;;;;77346:14;77362:19;77372:8;77362:9;:19::i;:::-;77383:9;77329:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77278:130;77271:137;;;76969:445;;;;:::o;76021:561::-;76120:11;75718:1;75704:11;:15;:52;;;;;75738:18;;75723:11;:33;;75704:52;75696:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75827:9;;75812:11;75796:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;75788:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76148:20:::1;;;;;;;;;;;76140:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;76270:1;76255:11;76222:16;:30;76239:12;:10;:12::i;:::-;76222:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:49;;76214:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;76307:12;76349;:10;:12::i;:::-;76332:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;76322:41;;;;;;76307:56;;76378:50;76397:12;;76378:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76411:10;;76423:4;76378:18;:50::i;:::-;76370:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;76522:11;76489:16;:30;76506:12;:10;:12::i;:::-;76489:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;76456:16;:30;76473:12;:10;:12::i;:::-;76456:30;;;;;;;;;;;;;;;:77;;;;76540:36;76550:12;:10;:12::i;:::-;76564:11;76540:9;:36::i;:::-;76133:449;76021:561:::0;;;;:::o;75294:32::-;;;;:::o;75087:51::-;;;;;;;;;;;;;;;;;:::o;77420:81::-;13531:13;:11;:13::i;:::-;77489:6:::1;77478:8;;:17;;;;;;;;;;;;;;;;;;77420:81:::0;:::o;41953:164::-;42050:4;42074:18;:25;42093:5;42074:25;;;;;;;;;;;;;;;:35;42100:8;42074:35;;;;;;;;;;;;;;;;;;;;;;;;;42067:42;;41953:164;;;;:::o;76808:155::-;76894:11;75718:1;75704:11;:15;:52;;;;;75738:18;;75723:11;:33;;75704:52;75696:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75827:9;;75812:11;75796:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;75788:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13531:13:::1;:11;:13::i;:::-;76924:33:::2;76934:9;76945:11;76924:9;:33::i;:::-;76808:155:::0;;;:::o;14551:201::-;13531:13;:11;:13::i;:::-;14660:1:::1;14640:22;;:8;:22;;;;14632:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14716:28;14735:8;14716:18;:28::i;:::-;14551:201:::0;:::o;42375:282::-;42440:4;42496:7;42477:15;:13;:15::i;:::-;:26;;:66;;;;;42530:13;;42520:7;:23;42477:66;:153;;;;;42629:1;26317:8;42581:17;:26;42599:7;42581:26;;;;;;;;;;;;:44;:49;42477:153;42457:173;;42375:282;;;:::o;64141:105::-;64201:7;64228:10;64221:17;;64141:105;:::o;13810:132::-;13885:12;:10;:12::i;:::-;13874:23;;:7;:5;:7::i;:::-;:23;;;13866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13810:132::o;29714:92::-;29770:7;29714:92;:::o;36995:1275::-;37062:7;37082:12;37097:7;37082:22;;37165:4;37146:15;:13;:15::i;:::-;:23;37142:1061;;37199:13;;37192:4;:20;37188:1015;;;37237:14;37254:17;:23;37272:4;37254:23;;;;;;;;;;;;37237:40;;37371:1;26317:8;37343:6;:24;:29;37339:845;;;38008:113;38025:1;38015:6;:11;38008:113;;;38068:17;:25;38086:6;;;;;;;38068:25;;;;;;;;;;;;38059:34;;38008:113;;;38154:6;38147:13;;;;;;37339:845;37214:989;37188:1015;37142:1061;38231:31;;;;;;;;;;;;;;36995:1275;;;;:::o;43538:479::-;43640:27;43669:23;43710:38;43751:15;:24;43767:7;43751:24;;;;;;;;;;;43710:65;;43922:18;43899:41;;43979:19;43973:26;43954:45;;43884:126;43538:479;;;:::o;42766:659::-;42915:11;43080:16;43073:5;43069:28;43060:37;;43240:16;43229:9;43225:32;43212:45;;43390:15;43379:9;43376:30;43368:5;43357:9;43354:20;43351:56;43341:66;;42766:659;;;;;:::o;49394:159::-;;;;;:::o;63450:311::-;63585:7;63605:16;26721:3;63631:19;:41;;63605:68;;26721:3;63699:31;63710:4;63716:2;63720:9;63699:10;:31::i;:::-;63691:40;;:62;;63684:69;;;63450:311;;;;;:::o;38818:450::-;38898:14;39066:16;39059:5;39055:28;39046:37;;39243:5;39229:11;39204:23;39200:41;39197:52;39190:5;39187:63;39177:73;;38818:450;;;;:::o;50218:158::-;;;;;:::o;14912:191::-;14986:16;15005:6;;;;;;;;;;;14986:25;;15031:8;15022:6;;:17;;;;;;;;;;;;;;;;;;15086:8;15055:40;;15076:8;15055:40;;;;;;;;;;;;14975:128;14912:191;:::o;36443:161::-;36511:21;;:::i;:::-;36552:44;36571:17;:24;36589:5;36571:24;;;;;;;;;;;;36552:18;:44::i;:::-;36545:51;;36443:161;;;:::o;29885:103::-;29940:7;29967:13;;29960:20;;29885:103;:::o;12196:98::-;12249:7;12276:10;12269:17;;12196:98;:::o;57973:112::-;58050:27;58060:2;58064:8;58050:27;;;;;;;;;;;;:9;:27::i;:::-;57973:112;;:::o;50816:716::-;50979:4;51025:2;51000:45;;;51046:19;:17;:19::i;:::-;51067:4;51073:7;51082:5;51000:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50996:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51300:1;51283:6;:13;:18;51279:235;;;51329:40;;;;;;;;;;;;;;51279:235;51472:6;51466:13;51457:6;51453:2;51449:15;51442:38;50996:529;51169:54;;;51159:64;;;:6;:64;;;;51152:71;;;50816:716;;;;;;:::o;36181:166::-;36251:21;;:::i;:::-;36292:47;36311:27;36330:7;36311:18;:27::i;:::-;36292:18;:47::i;:::-;36285:54;;36181:166;;;:::o;78627:104::-;78687:13;78716:9;78709:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78627:104;:::o;64348:1581::-;64413:17;64838:4;64831;64825:11;64821:22;64814:29;;64930:3;64924:4;64917:17;65036:3;65275:5;65257:428;65283:1;65257:428;;;65323:1;65318:3;65314:11;65307:18;;65494:2;65488:4;65484:13;65480:2;65476:22;65471:3;65463:36;65588:2;65582:4;65578:13;65570:21;;65655:4;65645:25;;65663:5;;65645:25;65257:428;;;65261:21;65724:3;65719;65715:13;65839:4;65834:3;65830:14;65823:21;;65904:6;65899:3;65892:19;64452:1470;;64348:1581;;;:::o;4011:190::-;4136:4;4189;4160:25;4173:5;4180:4;4160:12;:25::i;:::-;:33;4153:40;;4011:190;;;;;:::o;63151:147::-;63288:6;63151:147;;;;;:::o;38369:366::-;38435:31;;:::i;:::-;38512:6;38479:9;:14;;:41;;;;;;;;;;;26200:3;38565:6;:33;;38531:9;:24;;:68;;;;;;;;;;;38657:1;26317:8;38629:6;:24;:29;;38610:9;:16;;:48;;;;;;;;;;;26721:3;38698:6;:28;;38669:9;:19;;:58;;;;;;;;;;;38369:366;;;:::o;57200:689::-;57331:19;57337:2;57341:8;57331:5;:19::i;:::-;57410:1;57392:2;:14;;;:19;57388:483;;57432:11;57446:13;;57432:27;;57478:13;57500:8;57494:3;:14;57478:30;;57527:233;57558:62;57597:1;57601:2;57605:7;;;;;;57614:5;57558:30;:62::i;:::-;57553:167;;57656:40;;;;;;;;;;;;;;57553:167;57755:3;57747:5;:11;57527:233;;57842:3;57825:13;;:20;57821:34;;57847:8;;;57821:34;57413:458;;57388:483;57200:689;;;:::o;4878:296::-;4961:7;4981:20;5004:4;4981:27;;5024:9;5019:118;5043:5;:12;5039:1;:16;5019:118;;;5092:33;5102:12;5116:5;5122:1;5116:8;;;;;;;;:::i;:::-;;;;;;;;5092:9;:33::i;:::-;5077:48;;5057:3;;;;;:::i;:::-;;;;5019:118;;;;5154:12;5147:19;;;4878:296;;;;:::o;51994:2454::-;52067:20;52090:13;;52067:36;;52130:1;52118:8;:13;52114:44;;;52140:18;;;;;;;;;;;;;;52114:44;52171:61;52201:1;52205:2;52209:12;52223:8;52171:21;:61::i;:::-;52715:1;25679:2;52685:1;:26;;52684:32;52672:8;:45;52646:18;:22;52665:2;52646:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52994:139;53031:2;53085:33;53108:1;53112:2;53116:1;53085:14;:33::i;:::-;53052:30;53073:8;53052:20;:30::i;:::-;:66;52994:18;:139::i;:::-;52960:17;:31;52978:12;52960:31;;;;;;;;;;;:173;;;;53150:16;53181:11;53210:8;53195:12;:23;53181:37;;53465:16;53461:2;53457:25;53445:37;;53837:12;53797:8;53756:1;53694:25;53635:1;53574;53547:335;53962:1;53948:12;53944:20;53902:346;54003:3;53994:7;53991:16;53902:346;;54221:7;54211:8;54208:1;54181:25;54178:1;54175;54170:59;54056:1;54047:7;54043:15;54032:26;;53902:346;;;53906:77;54293:1;54281:8;:13;54277:45;;;54303:19;;;;;;;;;;;;;;54277:45;54355:3;54339:13;:19;;;;52420:1950;;54380:60;54409:1;54413:2;54417:12;54431:8;54380:20;:60::i;:::-;52056:2392;51994:2454;;:::o;11085:149::-;11148:7;11179:1;11175;:5;:51;;11206:20;11221:1;11224;11206:14;:20::i;:::-;11175:51;;;11183:20;11198:1;11201;11183:14;:20::i;:::-;11175:51;11168:58;;11085:149;;;;:::o;39370:324::-;39440:14;39673:1;39663:8;39660:15;39634:24;39630:46;39620:56;;39370:324;;;:::o;11242:268::-;11310:13;11417:1;11411:4;11404:15;11446:1;11440:4;11433:15;11487:4;11481;11471:21;11462:30;;11242:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:117::-;9670:1;9667;9660:12;9684:117;9793:1;9790;9783:12;9824:568;9897:8;9907:6;9957:3;9950:4;9942:6;9938:17;9934:27;9924:122;;9965:79;;:::i;:::-;9924:122;10078:6;10065:20;10055:30;;10108:18;10100:6;10097:30;10094:117;;;10130:79;;:::i;:::-;10094:117;10244:4;10236:6;10232:17;10220:29;;10298:3;10290:4;10282:6;10278:17;10268:8;10264:32;10261:41;10258:128;;;10305:79;;:::i;:::-;10258:128;9824:568;;;;;:::o;10398:559::-;10484:6;10492;10541:2;10529:9;10520:7;10516:23;10512:32;10509:119;;;10547:79;;:::i;:::-;10509:119;10695:1;10684:9;10680:17;10667:31;10725:18;10717:6;10714:30;10711:117;;;10747:79;;:::i;:::-;10711:117;10860:80;10932:7;10923:6;10912:9;10908:22;10860:80;:::i;:::-;10842:98;;;;10638:312;10398:559;;;;;:::o;10963:145::-;11061:6;11095:5;11089:12;11079:22;;10963:145;;;:::o;11114:215::-;11244:11;11278:6;11273:3;11266:19;11318:4;11313:3;11309:14;11294:29;;11114:215;;;;:::o;11335:163::-;11433:4;11456:3;11448:11;;11486:4;11481:3;11477:14;11469:22;;11335:163;;;:::o;11504:108::-;11581:24;11599:5;11581:24;:::i;:::-;11576:3;11569:37;11504:108;;:::o;11618:101::-;11654:7;11694:18;11687:5;11683:30;11672:41;;11618:101;;;:::o;11725:105::-;11800:23;11817:5;11800:23;:::i;:::-;11795:3;11788:36;11725:105;;:::o;11836:99::-;11907:21;11922:5;11907:21;:::i;:::-;11902:3;11895:34;11836:99;;:::o;11941:91::-;11977:7;12017:8;12010:5;12006:20;11995:31;;11941:91;;;:::o;12038:105::-;12113:23;12130:5;12113:23;:::i;:::-;12108:3;12101:36;12038:105;;:::o;12221:864::-;12370:4;12365:3;12361:14;12457:4;12450:5;12446:16;12440:23;12476:63;12533:4;12528:3;12524:14;12510:12;12476:63;:::i;:::-;12385:164;12641:4;12634:5;12630:16;12624:23;12660:61;12715:4;12710:3;12706:14;12692:12;12660:61;:::i;:::-;12559:172;12815:4;12808:5;12804:16;12798:23;12834:57;12885:4;12880:3;12876:14;12862:12;12834:57;:::i;:::-;12741:160;12988:4;12981:5;12977:16;12971:23;13007:61;13062:4;13057:3;13053:14;13039:12;13007:61;:::i;:::-;12911:167;12339:746;12221:864;;:::o;13091:303::-;13222:10;13243:108;13347:3;13339:6;13243:108;:::i;:::-;13383:4;13378:3;13374:14;13360:28;;13091:303;;;;:::o;13400:144::-;13501:4;13533;13528:3;13524:14;13516:22;;13400:144;;;:::o;13626:980::-;13807:3;13836:85;13915:5;13836:85;:::i;:::-;13937:117;14047:6;14042:3;13937:117;:::i;:::-;13930:124;;14078:87;14159:5;14078:87;:::i;:::-;14188:7;14219:1;14204:377;14229:6;14226:1;14223:13;14204:377;;;14305:6;14299:13;14332:125;14453:3;14438:13;14332:125;:::i;:::-;14325:132;;14480:91;14564:6;14480:91;:::i;:::-;14470:101;;14264:317;14251:1;14248;14244:9;14239:14;;14204:377;;;14208:14;14597:3;14590:10;;13812:794;;;13626:980;;;;:::o;14612:497::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:170;15097:4;15088:6;14932:170;:::i;:::-;14924:178;;14612:497;;;;:::o;15115:329::-;15174:6;15223:2;15211:9;15202:7;15198:23;15194:32;15191:119;;;15229:79;;:::i;:::-;15191:119;15349:1;15374:53;15419:7;15410:6;15399:9;15395:22;15374:53;:::i;:::-;15364:63;;15320:117;15115:329;;;;:::o;15450:122::-;15523:24;15541:5;15523:24;:::i;:::-;15516:5;15513:35;15503:63;;15562:1;15559;15552:12;15503:63;15450:122;:::o;15578:139::-;15624:5;15662:6;15649:20;15640:29;;15678:33;15705:5;15678:33;:::i;:::-;15578:139;;;;:::o;15723:329::-;15782:6;15831:2;15819:9;15810:7;15806:23;15802:32;15799:119;;;15837:79;;:::i;:::-;15799:119;15957:1;15982:53;16027:7;16018:6;16007:9;16003:22;15982:53;:::i;:::-;15972:63;;15928:117;15723:329;;;;:::o;16058:114::-;16125:6;16159:5;16153:12;16143:22;;16058:114;;;:::o;16178:184::-;16277:11;16311:6;16306:3;16299:19;16351:4;16346:3;16342:14;16327:29;;16178:184;;;;:::o;16368:132::-;16435:4;16458:3;16450:11;;16488:4;16483:3;16479:14;16471:22;;16368:132;;;:::o;16506:108::-;16583:24;16601:5;16583:24;:::i;:::-;16578:3;16571:37;16506:108;;:::o;16620:179::-;16689:10;16710:46;16752:3;16744:6;16710:46;:::i;:::-;16788:4;16783:3;16779:14;16765:28;;16620:179;;;;:::o;16805:113::-;16875:4;16907;16902:3;16898:14;16890:22;;16805:113;;;:::o;16954:732::-;17073:3;17102:54;17150:5;17102:54;:::i;:::-;17172:86;17251:6;17246:3;17172:86;:::i;:::-;17165:93;;17282:56;17332:5;17282:56;:::i;:::-;17361:7;17392:1;17377:284;17402:6;17399:1;17396:13;17377:284;;;17478:6;17472:13;17505:63;17564:3;17549:13;17505:63;:::i;:::-;17498:70;;17591:60;17644:6;17591:60;:::i;:::-;17581:70;;17437:224;17424:1;17421;17417:9;17412:14;;17377:284;;;17381:14;17677:3;17670:10;;17078:608;;;16954:732;;;;:::o;17692:373::-;17835:4;17873:2;17862:9;17858:18;17850:26;;17922:9;17916:4;17912:20;17908:1;17897:9;17893:17;17886:47;17950:108;18053:4;18044:6;17950:108;:::i;:::-;17942:116;;17692:373;;;;:::o;18071:619::-;18148:6;18156;18164;18213:2;18201:9;18192:7;18188:23;18184:32;18181:119;;;18219:79;;:::i;:::-;18181:119;18339:1;18364:53;18409:7;18400:6;18389:9;18385:22;18364:53;:::i;:::-;18354:63;;18310:117;18466:2;18492:53;18537:7;18528:6;18517:9;18513:22;18492:53;:::i;:::-;18482:63;;18437:118;18594:2;18620:53;18665:7;18656:6;18645:9;18641:22;18620:53;:::i;:::-;18610:63;;18565:118;18071:619;;;;;:::o;18696:468::-;18761:6;18769;18818:2;18806:9;18797:7;18793:23;18789:32;18786:119;;;18824:79;;:::i;:::-;18786:119;18944:1;18969:53;19014:7;19005:6;18994:9;18990:22;18969:53;:::i;:::-;18959:63;;18915:117;19071:2;19097:50;19139:7;19130:6;19119:9;19115:22;19097:50;:::i;:::-;19087:60;;19042:115;18696:468;;;;;:::o;19170:307::-;19231:4;19321:18;19313:6;19310:30;19307:56;;;19343:18;;:::i;:::-;19307:56;19381:29;19403:6;19381:29;:::i;:::-;19373:37;;19465:4;19459;19455:15;19447:23;;19170:307;;;:::o;19483:410::-;19560:5;19585:65;19601:48;19642:6;19601:48;:::i;:::-;19585:65;:::i;:::-;19576:74;;19673:6;19666:5;19659:21;19711:4;19704:5;19700:16;19749:3;19740:6;19735:3;19731:16;19728:25;19725:112;;;19756:79;;:::i;:::-;19725:112;19846:41;19880:6;19875:3;19870;19846:41;:::i;:::-;19566:327;19483:410;;;;;:::o;19912:338::-;19967:5;20016:3;20009:4;20001:6;19997:17;19993:27;19983:122;;20024:79;;:::i;:::-;19983:122;20141:6;20128:20;20166:78;20240:3;20232:6;20225:4;20217:6;20213:17;20166:78;:::i;:::-;20157:87;;19973:277;19912:338;;;;:::o;20256:943::-;20351:6;20359;20367;20375;20424:3;20412:9;20403:7;20399:23;20395:33;20392:120;;;20431:79;;:::i;:::-;20392:120;20551:1;20576:53;20621:7;20612:6;20601:9;20597:22;20576:53;:::i;:::-;20566:63;;20522:117;20678:2;20704:53;20749:7;20740:6;20729:9;20725:22;20704:53;:::i;:::-;20694:63;;20649:118;20806:2;20832:53;20877:7;20868:6;20857:9;20853:22;20832:53;:::i;:::-;20822:63;;20777:118;20962:2;20951:9;20947:18;20934:32;20993:18;20985:6;20982:30;20979:117;;;21015:79;;:::i;:::-;20979:117;21120:62;21174:7;21165:6;21154:9;21150:22;21120:62;:::i;:::-;21110:72;;20905:287;20256:943;;;;;;;:::o;21277:874::-;21436:4;21431:3;21427:14;21523:4;21516:5;21512:16;21506:23;21542:63;21599:4;21594:3;21590:14;21576:12;21542:63;:::i;:::-;21451:164;21707:4;21700:5;21696:16;21690:23;21726:61;21781:4;21776:3;21772:14;21758:12;21726:61;:::i;:::-;21625:172;21881:4;21874:5;21870:16;21864:23;21900:57;21951:4;21946:3;21942:14;21928:12;21900:57;:::i;:::-;21807:160;22054:4;22047:5;22043:16;22037:23;22073:61;22128:4;22123:3;22119:14;22105:12;22073:61;:::i;:::-;21977:167;21405:746;21277:874;;:::o;22157:347::-;22312:4;22350:3;22339:9;22335:19;22327:27;;22364:133;22494:1;22483:9;22479:17;22470:6;22364:133;:::i;:::-;22157:347;;;;:::o;22527:568::-;22600:8;22610:6;22660:3;22653:4;22645:6;22641:17;22637:27;22627:122;;22668:79;;:::i;:::-;22627:122;22781:6;22768:20;22758:30;;22811:18;22803:6;22800:30;22797:117;;;22833:79;;:::i;:::-;22797:117;22947:4;22939:6;22935:17;22923:29;;23001:3;22993:4;22985:6;22981:17;22971:8;22967:32;22964:41;22961:128;;;23008:79;;:::i;:::-;22961:128;22527:568;;;;;:::o;23101:704::-;23196:6;23204;23212;23261:2;23249:9;23240:7;23236:23;23232:32;23229:119;;;23267:79;;:::i;:::-;23229:119;23387:1;23412:53;23457:7;23448:6;23437:9;23433:22;23412:53;:::i;:::-;23402:63;;23358:117;23542:2;23531:9;23527:18;23514:32;23573:18;23565:6;23562:30;23559:117;;;23595:79;;:::i;:::-;23559:117;23708:80;23780:7;23771:6;23760:9;23756:22;23708:80;:::i;:::-;23690:98;;;;23485:313;23101:704;;;;;:::o;23811:474::-;23879:6;23887;23936:2;23924:9;23915:7;23911:23;23907:32;23904:119;;;23942:79;;:::i;:::-;23904:119;24062:1;24087:53;24132:7;24123:6;24112:9;24108:22;24087:53;:::i;:::-;24077:63;;24033:117;24189:2;24215:53;24260:7;24251:6;24240:9;24236:22;24215:53;:::i;:::-;24205:63;;24160:118;23811:474;;;;;:::o;24291:::-;24359:6;24367;24416:2;24404:9;24395:7;24391:23;24387:32;24384:119;;;24422:79;;:::i;:::-;24384:119;24542:1;24567:53;24612:7;24603:6;24592:9;24588:22;24567:53;:::i;:::-;24557:63;;24513:117;24669:2;24695:53;24740:7;24731:6;24720:9;24716:22;24695:53;:::i;:::-;24685:63;;24640:118;24291:474;;;;;:::o;24771:180::-;24819:77;24816:1;24809:88;24916:4;24913:1;24906:15;24940:4;24937:1;24930:15;24957:320;25001:6;25038:1;25032:4;25028:12;25018:22;;25085:1;25079:4;25075:12;25106:18;25096:81;;25162:4;25154:6;25150:17;25140:27;;25096:81;25224:2;25216:6;25213:14;25193:18;25190:38;25187:84;;;25243:18;;:::i;:::-;25187:84;25008:269;24957:320;;;:::o;25283:181::-;25423:33;25419:1;25411:6;25407:14;25400:57;25283:181;:::o;25470:366::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:419::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26095:9;26089:4;26085:20;26081:1;26070:9;26066:17;26059:47;26123:131;26249:4;26123:131;:::i;:::-;26115:139;;25842:419;;;:::o;26267:147::-;26368:11;26405:3;26390:18;;26267:147;;;;:::o;26420:114::-;;:::o;26540:398::-;26699:3;26720:83;26801:1;26796:3;26720:83;:::i;:::-;26713:90;;26812:93;26901:3;26812:93;:::i;:::-;26930:1;26925:3;26921:11;26914:18;;26540:398;;;:::o;26944:379::-;27128:3;27150:147;27293:3;27150:147;:::i;:::-;27143:154;;27314:3;27307:10;;26944:379;;;:::o;27329:180::-;27377:77;27374:1;27367:88;27474:4;27471:1;27464:15;27498:4;27495:1;27488:15;27515:170;27655:22;27651:1;27643:6;27639:14;27632:46;27515:170;:::o;27691:366::-;27833:3;27854:67;27918:2;27913:3;27854:67;:::i;:::-;27847:74;;27930:93;28019:3;27930:93;:::i;:::-;28048:2;28043:3;28039:12;28032:19;;27691:366;;;:::o;28063:419::-;28229:4;28267:2;28256:9;28252:18;28244:26;;28316:9;28310:4;28306:20;28302:1;28291:9;28287:17;28280:47;28344:131;28470:4;28344:131;:::i;:::-;28336:139;;28063:419;;;:::o;28488:180::-;28536:77;28533:1;28526:88;28633:4;28630:1;28623:15;28657:4;28654:1;28647:15;28674:305;28714:3;28733:20;28751:1;28733:20;:::i;:::-;28728:25;;28767:20;28785:1;28767:20;:::i;:::-;28762:25;;28921:1;28853:66;28849:74;28846:1;28843:81;28840:107;;;28927:18;;:::i;:::-;28840:107;28971:1;28968;28964:9;28957:16;;28674:305;;;;:::o;28985:170::-;29125:22;29121:1;29113:6;29109:14;29102:46;28985:170;:::o;29161:366::-;29303:3;29324:67;29388:2;29383:3;29324:67;:::i;:::-;29317:74;;29400:93;29489:3;29400:93;:::i;:::-;29518:2;29513:3;29509:12;29502:19;;29161:366;;;:::o;29533:419::-;29699:4;29737:2;29726:9;29722:18;29714:26;;29786:9;29780:4;29776:20;29772:1;29761:9;29757:17;29750:47;29814:131;29940:4;29814:131;:::i;:::-;29806:139;;29533:419;;;:::o;29958:348::-;29998:7;30021:20;30039:1;30021:20;:::i;:::-;30016:25;;30055:20;30073:1;30055:20;:::i;:::-;30050:25;;30243:1;30175:66;30171:74;30168:1;30165:81;30160:1;30153:9;30146:17;30142:105;30139:131;;;30250:18;;:::i;:::-;30139:131;30298:1;30295;30291:9;30280:20;;29958:348;;;;:::o;30312:169::-;30452:21;30448:1;30440:6;30436:14;30429:45;30312:169;:::o;30487:366::-;30629:3;30650:67;30714:2;30709:3;30650:67;:::i;:::-;30643:74;;30726:93;30815:3;30726:93;:::i;:::-;30844:2;30839:3;30835:12;30828:19;;30487:366;;;:::o;30859:419::-;31025:4;31063:2;31052:9;31048:18;31040:26;;31112:9;31106:4;31102:20;31098:1;31087:9;31083:17;31076:47;31140:131;31266:4;31140:131;:::i;:::-;31132:139;;30859:419;;;:::o;31284:173::-;31424:25;31420:1;31412:6;31408:14;31401:49;31284:173;:::o;31463:366::-;31605:3;31626:67;31690:2;31685:3;31626:67;:::i;:::-;31619:74;;31702:93;31791:3;31702:93;:::i;:::-;31820:2;31815:3;31811:12;31804:19;;31463:366;;;:::o;31835:419::-;32001:4;32039:2;32028:9;32024:18;32016:26;;32088:9;32082:4;32078:20;32074:1;32063:9;32059:17;32052:47;32116:131;32242:4;32116:131;:::i;:::-;32108:139;;31835:419;;;:::o;32260:234::-;32400:34;32396:1;32388:6;32384:14;32377:58;32469:17;32464:2;32456:6;32452:15;32445:42;32260:234;:::o;32500:366::-;32642:3;32663:67;32727:2;32722:3;32663:67;:::i;:::-;32656:74;;32739:93;32828:3;32739:93;:::i;:::-;32857:2;32852:3;32848:12;32841:19;;32500:366;;;:::o;32872:419::-;33038:4;33076:2;33065:9;33061:18;33053:26;;33125:9;33119:4;33115:20;33111:1;33100:9;33096:17;33089:47;33153:131;33279:4;33153:131;:::i;:::-;33145:139;;32872:419;;;:::o;33297:148::-;33399:11;33436:3;33421:18;;33297:148;;;;:::o;33451:377::-;33557:3;33585:39;33618:5;33585:39;:::i;:::-;33640:89;33722:6;33717:3;33640:89;:::i;:::-;33633:96;;33738:52;33783:6;33778:3;33771:4;33764:5;33760:16;33738:52;:::i;:::-;33815:6;33810:3;33806:16;33799:23;;33561:267;33451:377;;;;:::o;33834:141::-;33883:4;33906:3;33898:11;;33929:3;33926:1;33919:14;33963:4;33960:1;33950:18;33942:26;;33834:141;;;:::o;34005:845::-;34108:3;34145:5;34139:12;34174:36;34200:9;34174:36;:::i;:::-;34226:89;34308:6;34303:3;34226:89;:::i;:::-;34219:96;;34346:1;34335:9;34331:17;34362:1;34357:137;;;;34508:1;34503:341;;;;34324:520;;34357:137;34441:4;34437:9;34426;34422:25;34417:3;34410:38;34477:6;34472:3;34468:16;34461:23;;34357:137;;34503:341;34570:38;34602:5;34570:38;:::i;:::-;34630:1;34644:154;34658:6;34655:1;34652:13;34644:154;;;34732:7;34726:14;34722:1;34717:3;34713:11;34706:35;34782:1;34773:7;34769:15;34758:26;;34680:4;34677:1;34673:12;34668:17;;34644:154;;;34827:6;34822:3;34818:16;34811:23;;34510:334;;34324:520;;34112:738;;34005:845;;;;:::o;34856:589::-;35081:3;35103:95;35194:3;35185:6;35103:95;:::i;:::-;35096:102;;35215:95;35306:3;35297:6;35215:95;:::i;:::-;35208:102;;35327:92;35415:3;35406:6;35327:92;:::i;:::-;35320:99;;35436:3;35429:10;;34856:589;;;;;;:::o;35451:221::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:4;35655:2;35647:6;35643:15;35636:29;35451:221;:::o;35678:366::-;35820:3;35841:67;35905:2;35900:3;35841:67;:::i;:::-;35834:74;;35917:93;36006:3;35917:93;:::i;:::-;36035:2;36030:3;36026:12;36019:19;;35678:366;;;:::o;36050:419::-;36216:4;36254:2;36243:9;36239:18;36231:26;;36303:9;36297:4;36293:20;36289:1;36278:9;36274:17;36267:47;36331:131;36457:4;36331:131;:::i;:::-;36323:139;;36050:419;;;:::o;36475:174::-;36615:26;36611:1;36603:6;36599:14;36592:50;36475:174;:::o;36655:366::-;36797:3;36818:67;36882:2;36877:3;36818:67;:::i;:::-;36811:74;;36894:93;36983:3;36894:93;:::i;:::-;37012:2;37007:3;37003:12;36996:19;;36655:366;;;:::o;37027:419::-;37193:4;37231:2;37220:9;37216:18;37208:26;;37280:9;37274:4;37270:20;37266:1;37255:9;37251:17;37244:47;37308:131;37434:4;37308:131;:::i;:::-;37300:139;;37027:419;;;:::o;37452:94::-;37485:8;37533:5;37529:2;37525:14;37504:35;;37452:94;;;:::o;37552:::-;37591:7;37620:20;37634:5;37620:20;:::i;:::-;37609:31;;37552:94;;;:::o;37652:100::-;37691:7;37720:26;37740:5;37720:26;:::i;:::-;37709:37;;37652:100;;;:::o;37758:157::-;37863:45;37883:24;37901:5;37883:24;:::i;:::-;37863:45;:::i;:::-;37858:3;37851:58;37758:157;;:::o;37921:256::-;38033:3;38048:75;38119:3;38110:6;38048:75;:::i;:::-;38148:2;38143:3;38139:12;38132:19;;38168:3;38161:10;;37921:256;;;;:::o;38183:164::-;38323:16;38319:1;38311:6;38307:14;38300:40;38183:164;:::o;38353:366::-;38495:3;38516:67;38580:2;38575:3;38516:67;:::i;:::-;38509:74;;38592:93;38681:3;38592:93;:::i;:::-;38710:2;38705:3;38701:12;38694:19;;38353:366;;;:::o;38725:419::-;38891:4;38929:2;38918:9;38914:18;38906:26;;38978:9;38972:4;38968:20;38964:1;38953:9;38949:17;38942:47;39006:131;39132:4;39006:131;:::i;:::-;38998:139;;38725:419;;;:::o;39150:225::-;39290:34;39286:1;39278:6;39274:14;39267:58;39359:8;39354:2;39346:6;39342:15;39335:33;39150:225;:::o;39381:366::-;39523:3;39544:67;39608:2;39603:3;39544:67;:::i;:::-;39537:74;;39620:93;39709:3;39620:93;:::i;:::-;39738:2;39733:3;39729:12;39722:19;;39381:366;;;:::o;39753:419::-;39919:4;39957:2;39946:9;39942:18;39934:26;;40006:9;40000:4;39996:20;39992:1;39981:9;39977:17;39970:47;40034:131;40160:4;40034:131;:::i;:::-;40026:139;;39753:419;;;:::o;40178:182::-;40318:34;40314:1;40306:6;40302:14;40295:58;40178:182;:::o;40366:366::-;40508:3;40529:67;40593:2;40588:3;40529:67;:::i;:::-;40522:74;;40605:93;40694:3;40605:93;:::i;:::-;40723:2;40718:3;40714:12;40707:19;;40366:366;;;:::o;40738:419::-;40904:4;40942:2;40931:9;40927:18;40919:26;;40991:9;40985:4;40981:20;40977:1;40966:9;40962:17;40955:47;41019:131;41145:4;41019:131;:::i;:::-;41011:139;;40738:419;;;:::o;41163:98::-;41214:6;41248:5;41242:12;41232:22;;41163:98;;;:::o;41267:168::-;41350:11;41384:6;41379:3;41372:19;41424:4;41419:3;41415:14;41400:29;;41267:168;;;;:::o;41441:360::-;41527:3;41555:38;41587:5;41555:38;:::i;:::-;41609:70;41672:6;41667:3;41609:70;:::i;:::-;41602:77;;41688:52;41733:6;41728:3;41721:4;41714:5;41710:16;41688:52;:::i;:::-;41765:29;41787:6;41765:29;:::i;:::-;41760:3;41756:39;41749:46;;41531:270;41441:360;;;;:::o;41807:640::-;42002:4;42040:3;42029:9;42025:19;42017:27;;42054:71;42122:1;42111:9;42107:17;42098:6;42054:71;:::i;:::-;42135:72;42203:2;42192:9;42188:18;42179:6;42135:72;:::i;:::-;42217;42285:2;42274:9;42270:18;42261:6;42217:72;:::i;:::-;42336:9;42330:4;42326:20;42321:2;42310:9;42306:18;42299:48;42364:76;42435:4;42426:6;42364:76;:::i;:::-;42356:84;;41807:640;;;;;;;:::o;42453:141::-;42509:5;42540:6;42534:13;42525:22;;42556:32;42582:5;42556:32;:::i;:::-;42453:141;;;;:::o;42600:349::-;42669:6;42718:2;42706:9;42697:7;42693:23;42689:32;42686:119;;;42724:79;;:::i;:::-;42686:119;42844:1;42869:63;42924:7;42915:6;42904:9;42900:22;42869:63;:::i;:::-;42859:73;;42815:127;42600:349;;;;:::o;42955:233::-;42994:3;43017:24;43035:5;43017:24;:::i;:::-;43008:33;;43063:66;43056:5;43053:77;43050:103;;;43133:18;;:::i;:::-;43050:103;43180:1;43173:5;43169:13;43162:20;;42955:233;;;:::o

Swarm Source

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