ETH Price: $3,100.57 (-0.35%)
Gas: 2 Gwei

Token

TheMetaLions (MLC)
 

Overview

Max Total Supply

360 MLC

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
icehawk.eth
Balance
6 MLC
0x32b11BC488086890554A10C6Dd08f73109930570
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:
MetaLion

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-10
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// 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.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MetaLion.sol



pragma solidity >=0.8.4 <0.9.0;





contract MetaLion is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public constant MAX_SUPPLY = 3333;

    bool public isFreeMintActive = false;
    bool public isDoubleFreeMintActive = false;
    bool public isPresaleMintActive = false;
    bool public isWhitelistMintActive = false;
    bool public isPublicMintActive = false;

    bytes32 public freeMintMerkleRoot = "";
    bytes32 public doubleFreeMintMerkleRoot = "";
    bytes32 public presaleMerkleRoot = "";
    bytes32 public whitelistMerkleRoot = "";

    uint256 public constant FREE_MINT_MAX = 1;
    uint256 public constant DOUBLE_FREE_MINT_MAX = 2;
    uint256 public constant PRESALE_MINT_MAX = 3;
    uint256 public constant WHITELIST_MINT_MAX = 2;
    uint256 public constant PUBLIC_MINT_MAX = 2;

    uint256 public constant PRESALE_PRICE = 0.08 ether;
    uint256 public constant WHITELIST_PRICE = 0.09 ether;
    uint256 public constant PUBLIC_PRICE = 0.1 ether;

    mapping(address => uint256) public freeMintCounts;
    mapping(address => uint256) public doubleFreeMintCounts;
    mapping(address => uint256) public presaleMintCounts;
    mapping(address => uint256) public whitelistMintCounts;
    mapping(address => uint256) public publicMintCounts;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    // -- Mint --

    function freeMint(bytes32[] calldata _merkleProof)
        public
        payable
        supplyCompliance(FREE_MINT_MAX)
        isValidMerkleProof(_merkleProof, freeMintMerkleRoot)
    {
        require(isFreeMintActive, "Free mint is not active");
        require(
            freeMintCounts[msg.sender] < FREE_MINT_MAX,
            "Exceeds maximum free mints per wallet"
        );

        freeMintCounts[msg.sender] += FREE_MINT_MAX;
        _safeMint(msg.sender, FREE_MINT_MAX);
    }

    function doubleFreeMint(bytes32[] calldata _merkleProof)
        public
        payable
        supplyCompliance(DOUBLE_FREE_MINT_MAX)
        isValidMerkleProof(_merkleProof, doubleFreeMintMerkleRoot)
    {
        require(isDoubleFreeMintActive, "Double free mint is not active");
        require(
            doubleFreeMintCounts[msg.sender] < DOUBLE_FREE_MINT_MAX,
            "Exceeds maximum free mints per wallet"
        );

        doubleFreeMintCounts[msg.sender] += DOUBLE_FREE_MINT_MAX;
        _safeMint(msg.sender, DOUBLE_FREE_MINT_MAX);
    }

    function presaleMint(uint256 _amount, bytes32[] calldata _merkleProof)
        public
        payable
        amountCompliance(msg.value, _amount, PRESALE_PRICE)
        supplyCompliance(_amount)
        isValidMerkleProof(_merkleProof, presaleMerkleRoot)
    {
        require(isPresaleMintActive, "Presale mint is not active");
        require(
            presaleMintCounts[msg.sender] < PRESALE_MINT_MAX,
            "Exceeds maximum presale mints per wallet"
        );

        presaleMintCounts[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    function whitelistMint(uint256 _amount, bytes32[] calldata _merkleProof)
        public
        payable
        amountCompliance(msg.value, _amount, WHITELIST_PRICE)
        supplyCompliance(_amount)
        isValidMerkleProof(_merkleProof, whitelistMerkleRoot)
    {
        require(isWhitelistMintActive, "Whitelist mint is not active");
        require(
            whitelistMintCounts[msg.sender] < WHITELIST_MINT_MAX,
            "Exceeds maximum whitelist mints per wallet"
        );

        whitelistMintCounts[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    function publicMint(uint256 _amount)
        public
        payable
        amountCompliance(msg.value, _amount, WHITELIST_PRICE)
        supplyCompliance(_amount)
    {
        require(isPublicMintActive, "Public mint is not active");
        require(
            publicMintCounts[msg.sender] < PUBLIC_MINT_MAX,
            "Exceeds maximum public mints per wallet"
        );

        publicMintCounts[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    // -- Metadata --

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }

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

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

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

    function setBaseExtension(string memory _baseExtension) public onlyOwner {
        baseExtension = _baseExtension;
    }

    // -- Merkle Roots --

    modifier isValidMerkleProof(
        bytes32[] calldata _merkleProof,
        bytes32 _root
    ) {
        require(
            MerkleProof.verify(
                _merkleProof,
                _root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Merkle proof is invalid"
        );
        _;
    }

    function setFreeMintMerkleRoot(bytes32 _freeMintMerkleRoot)
        public
        onlyOwner
    {
        freeMintMerkleRoot = _freeMintMerkleRoot;
    }

    function setDoubleFreeMintMerkleRoot(bytes32 _doubleFreeMintMerkleRoot)
        public
        onlyOwner
    {
        doubleFreeMintMerkleRoot = _doubleFreeMintMerkleRoot;
    }

    function setPresaleMerkleRoot(bytes32 _presaleMerkleRoot) public onlyOwner {
        presaleMerkleRoot = _presaleMerkleRoot;
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot)
        public
        onlyOwner
    {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    // -- Modifiers --

    modifier amountCompliance(
        uint256 _value,
        uint256 _amount,
        uint256 _cost
    ) {
        require(_value >= _amount * _cost, "Insufficient funds sent");
        _;
    }

    modifier supplyCompliance(uint256 _amount) {
        require(
            totalSupply() + _amount <= MAX_SUPPLY,
            "Insufficient supply remaining"
        );
        _;
    }

    // -- Active --

    function setIsFreeMintActive(bool _isFreeMintActive) public onlyOwner {
        isFreeMintActive = _isFreeMintActive;
    }

    function setIsDoubleFreeMintActive(bool _isDoubleFreeMintActive)
        public
        onlyOwner
    {
        isDoubleFreeMintActive = _isDoubleFreeMintActive;
    }

    function setIsPresaleMintActive(bool _isPresaleMintActive)
        public
        onlyOwner
    {
        isPresaleMintActive = _isPresaleMintActive;
    }

    function setIsWhitelistMintActive(bool _isWhitelistMintActive)
        public
        onlyOwner
    {
        isWhitelistMintActive = _isWhitelistMintActive;
    }

    function setIsPublicMintActive(bool _isPublicMintActive) public onlyOwner {
        isPublicMintActive = _isPublicMintActive;
    }

    // -- Admin --

    function airdrop(uint256 _amount, address _recipient) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            supply + _amount <= MAX_SUPPLY,
            "Insufficient supply remaining"
        );
        _safeMint(_recipient, _amount);
    }

    function airdropBatch(uint256 _amount, address[] calldata _recipient)
        public
        onlyOwner
    {
        uint256 supply = totalSupply();
        require(
            supply + (_amount * _recipient.length) <= MAX_SUPPLY,
            "Insufficient supply remaining"
        );

        for (uint256 i = 0; i < _recipient.length; i++) {
            _safeMint(_recipient[i], _amount);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOUBLE_FREE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address[]","name":"_recipient","type":"address[]"}],"name":"airdropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"doubleFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"doubleFreeMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doubleFreeMintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDoubleFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_doubleFreeMintMerkleRoot","type":"bytes32"}],"name":"setDoubleFreeMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freeMintMerkleRoot","type":"bytes32"}],"name":"setFreeMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isDoubleFreeMintActive","type":"bool"}],"name":"setIsDoubleFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreeMintActive","type":"bool"}],"name":"setIsFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPresaleMintActive","type":"bool"}],"name":"setIsPresaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicMintActive","type":"bool"}],"name":"setIsPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelistMintActive","type":"bool"}],"name":"setIsWhitelistMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleMerkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000364565b506000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506000600b60046101000a81548160ff0219169083151502179055506000600c556000600d556000600e556000600f55348015620000fa57600080fd5b506040516200518f3803806200518f833981810160405281019062000120919062000492565b828281600290805190602001906200013a92919062000364565b5080600390805190602001906200015392919062000364565b5062000164620001a660201b60201c565b60008190555050506200018c62000180620001af60201b60201c565b620001b760201b60201c565b6200019d816200027d60201b60201c565b50505062000752565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028d620002a960201b60201c565b8060099080519060200190620002a592919062000364565b5050565b620002b9620001af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002df6200033a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032f9062000572565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000372906200063a565b90600052602060002090601f016020900481019282620003965760008555620003e2565b82601f10620003b157805160ff1916838001178555620003e2565b82800160010185558215620003e2579182015b82811115620003e1578251825591602001919060010190620003c4565b5b509050620003f19190620003f5565b5090565b5b8082111562000410576000816000905550600101620003f6565b5090565b60006200042b6200042584620005bd565b62000594565b9050828152602081018484840111156200044a576200044962000709565b5b6200045784828562000604565b509392505050565b600082601f83011262000477576200047662000704565b5b81516200048984826020860162000414565b91505092915050565b600080600060608486031215620004ae57620004ad62000713565b5b600084015167ffffffffffffffff811115620004cf57620004ce6200070e565b5b620004dd868287016200045f565b935050602084015167ffffffffffffffff8111156200050157620005006200070e565b5b6200050f868287016200045f565b925050604084015167ffffffffffffffff8111156200053357620005326200070e565b5b62000541868287016200045f565b9150509250925092565b60006200055a602083620005f3565b9150620005678262000729565b602082019050919050565b600060208201905081810360008301526200058d816200054b565b9050919050565b6000620005a0620005b3565b9050620005ae828262000670565b919050565b6000604051905090565b600067ffffffffffffffff821115620005db57620005da620006d5565b5b620005e68262000718565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200062457808201518184015260208101905062000607565b8381111562000634576000848401525b50505050565b600060028204905060018216806200065357607f821691505b602082108114156200066a5762000669620006a6565b5b50919050565b6200067b8262000718565b810181811067ffffffffffffffff821117156200069d576200069c620006d5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a2d80620007626000396000f3fe6080604052600436106103a25760003560e01c8063715018a6116101e7578063c55581981161010d578063e1159c55116100a0578063e985e9c51161006f578063e985e9c514610d16578063f2fde38b14610d53578063fa3e33d914610d7c578063fabd1d2d14610da7576103a2565b8063e1159c5514610c7b578063e3e1e8ef14610ca6578063e4ad183814610cc2578063e85de81c14610ceb576103a2565b8063d2cab056116100dc578063d2cab05614610be4578063da3ef23f14610c00578063dde44b8914610c29578063e0918b5914610c52576103a2565b8063c555819814610b14578063c668286214610b3f578063c87b56dd14610b6a578063d04c93ea14610ba7576103a2565b8063a22cb46511610185578063b88d4fde11610154578063b88d4fde14610a7d578063bc63f02e14610a99578063bd32fb6614610ac2578063bda6663814610aeb576103a2565b8063a22cb465146109c1578063a80c9a70146109ea578063aa98e0c614610a15578063aad66a1214610a40576103a2565b806388d15d50116101c157806388d15d50146109245780638da5cb5b1461094057806395d89b411461096b5780639f402fc014610996576103a2565b8063715018a6146108b95780637a5b85c1146108d05780637c237f95146108fb576103a2565b806332cb6b0c116102cc578063611f3f101161026a57806368963df01161023957806368963df0146107e95780636c0360eb146108145780636e2ccc5f1461083f57806370a082311461087c576103a2565b8063611f3f101461072d57806361cf301c1461075857806362dc6e21146107815780636352211e146107ac576103a2565b80634138cc8f116102a65780634138cc8f1461068f57806342842e0e146106cc5780634a5d9fdf146106e857806355f804b314610704576103a2565b806332cb6b0c1461062f5780633bc4b0251461065a5780633ccfd60b14610685576103a2565b8063236e93b21161034457806328d7b2761161031357806328d7b276146105945780632b03a4aa146105bd5780632d6b6224146105e85780632db1154414610613576103a2565b8063236e93b2146104e957806323b872dd1461051257806323f631231461052e57806327626f3414610557576103a2565b8063095ea7b311610380578063095ea7b31461044c57806317e7f2951461046857806318160ddd1461049357806322212e2b146104be576103a2565b806301ffc9a7146103a757806306fdde03146103e4578063081812fc1461040f575b600080fd5b3480156103b357600080fd5b506103ce60048036038101906103c99190613909565b610dd2565b6040516103db9190613ee8565b60405180910390f35b3480156103f057600080fd5b506103f9610e64565b6040516104069190613f1e565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906139ac565b610ef6565b6040516104439190613e81565b60405180910390f35b61046660048036038101906104619190613822565b610f75565b005b34801561047457600080fd5b5061047d6110b9565b60405161048a9190614120565b60405180910390f35b34801561049f57600080fd5b506104a86110c5565b6040516104b59190614120565b60405180910390f35b3480156104ca57600080fd5b506104d36110dc565b6040516104e09190613f03565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906138af565b6110e2565b005b61052c6004803603810190610527919061370c565b611107565b005b34801561053a57600080fd5b50610555600480360381019061055091906138af565b61142c565b005b34801561056357600080fd5b5061057e6004803603810190610579919061369f565b611451565b60405161058b9190614120565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b691906138dc565b611469565b005b3480156105c957600080fd5b506105d261147b565b6040516105df9190614120565b60405180910390f35b3480156105f457600080fd5b506105fd611480565b60405161060a9190613ee8565b60405180910390f35b61062d600480360381019061062891906139ac565b611493565b005b34801561063b57600080fd5b5061064461167c565b6040516106519190614120565b60405180910390f35b34801561066657600080fd5b5061066f611682565b60405161067c9190614120565b60405180910390f35b61068d611687565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061369f565b61170f565b6040516106c39190614120565b60405180910390f35b6106e660048036038101906106e1919061370c565b611727565b005b61070260048036038101906106fd9190613862565b611747565b005b34801561071057600080fd5b5061072b60048036038101906107269190613963565b611991565b005b34801561073957600080fd5b506107426119b3565b60405161074f9190614120565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a91906138af565b6119bf565b005b34801561078d57600080fd5b506107966119e4565b6040516107a39190614120565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906139ac565b6119f0565b6040516107e09190613e81565b60405180910390f35b3480156107f557600080fd5b506107fe611a02565b60405161080b9190613f03565b60405180910390f35b34801561082057600080fd5b50610829611a08565b6040516108369190613f1e565b60405180910390f35b34801561084b57600080fd5b506108666004803603810190610861919061369f565b611a96565b6040516108739190614120565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e919061369f565b611aae565b6040516108b09190614120565b60405180910390f35b3480156108c557600080fd5b506108ce611b67565b005b3480156108dc57600080fd5b506108e5611b7b565b6040516108f29190613ee8565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906138dc565b611b8e565b005b61093e60048036038101906109399190613862565b611ba0565b005b34801561094c57600080fd5b50610955611dea565b6040516109629190613e81565b60405180910390f35b34801561097757600080fd5b50610980611e14565b60405161098d9190613f1e565b60405180910390f35b3480156109a257600080fd5b506109ab611ea6565b6040516109b89190613f03565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e391906137e2565b611eac565b005b3480156109f657600080fd5b506109ff611fb7565b604051610a0c9190614120565b60405180910390f35b348015610a2157600080fd5b50610a2a611fbc565b604051610a379190613f03565b60405180910390f35b348015610a4c57600080fd5b50610a676004803603810190610a62919061369f565b611fc2565b604051610a749190614120565b60405180910390f35b610a976004803603810190610a92919061375f565b611fda565b005b348015610aa557600080fd5b50610ac06004803603810190610abb91906139d9565b61204d565b005b348015610ace57600080fd5b50610ae96004803603810190610ae491906138dc565b6120c0565b005b348015610af757600080fd5b50610b126004803603810190610b0d9190613a19565b6120d2565b005b348015610b2057600080fd5b50610b2961219d565b604051610b369190613ee8565b60405180910390f35b348015610b4b57600080fd5b50610b546121b0565b604051610b619190613f1e565b60405180910390f35b348015610b7657600080fd5b50610b916004803603810190610b8c91906139ac565b61223e565b604051610b9e9190613f1e565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc9919061369f565b6122e5565b604051610bdb9190614120565b60405180910390f35b610bfe6004803603810190610bf99190613a79565b6122fd565b005b348015610c0c57600080fd5b50610c276004803603810190610c229190613963565b6125a1565b005b348015610c3557600080fd5b50610c506004803603810190610c4b91906138dc565b6125c3565b005b348015610c5e57600080fd5b50610c796004803603810190610c7491906138af565b6125d5565b005b348015610c8757600080fd5b50610c906125fa565b604051610c9d9190613ee8565b60405180910390f35b610cc06004803603810190610cbb9190613a79565b61260d565b005b348015610cce57600080fd5b50610ce96004803603810190610ce491906138af565b6128b1565b005b348015610cf757600080fd5b50610d006128d6565b604051610d0d9190614120565b60405180910390f35b348015610d2257600080fd5b50610d3d6004803603810190610d3891906136cc565b6128db565b604051610d4a9190613ee8565b60405180910390f35b348015610d5f57600080fd5b50610d7a6004803603810190610d75919061369f565b61296f565b005b348015610d8857600080fd5b50610d916129f3565b604051610d9e9190614120565b60405180910390f35b348015610db357600080fd5b50610dbc6129f8565b604051610dc99190613ee8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e73906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9f906143e5565b8015610eec5780601f10610ec157610100808354040283529160200191610eec565b820191906000526020600020905b815481529060010190602001808311610ecf57829003601f168201915b5050505050905090565b6000610f0182612a0b565b610f37576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f80826119f0565b90508073ffffffffffffffffffffffffffffffffffffffff16610fa1612a6a565b73ffffffffffffffffffffffffffffffffffffffff161461100457610fcd81610fc8612a6a565b6128db565b611003576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b67013fbe85edc9000081565b60006110cf612a72565b6001546000540303905090565b600e5481565b6110ea612a7b565b80600b60026101000a81548160ff02191690831515021790555050565b600061111282612af9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611179576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061118584612bc7565b9150915061119b8187611196612a6a565b612bee565b6111e7576111b0866111ab612a6a565b6128db565b6111e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561124e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8686866001612c32565b801561126657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061133485611310888887612c38565b7c020000000000000000000000000000000000000000000000000000000017612c60565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113bc5760006001850190506000600460008381526020019081526020016000205414156113ba5760005481146113b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114248686866001612c8b565b505050505050565b611434612a7b565b80600b60036101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b611471612a7b565b80600e8190555050565b600281565b600b60049054906101000a900460ff1681565b348167013fbe85edc9000080826114aa9190614297565b8310156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906140a0565b60405180910390fd5b83610d05816114f96110c5565b6115039190614210565b1115611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906140c0565b60405180910390fd5b600b60049054906101000a900460ff16611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614100565b60405180910390fd5b6002601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613fa0565b60405180910390fd5b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116649190614210565b925050819055506116753386612c91565b5050505050565b610d0581565b600181565b61168f612a7b565b6000611699611dea565b73ffffffffffffffffffffffffffffffffffffffff16476040516116bc90613e6c565b60006040518083038185875af1925050503d80600081146116f9576040519150601f19603f3d011682016040523d82523d6000602084013e6116fe565b606091505b505090508061170c57600080fd5b50565b60116020528060005260406000206000915090505481565b61174283838360405180602001604052806000815250611fda565b505050565b6002610d05816117556110c5565b61175f9190614210565b11156117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906140c0565b60405180910390fd5b8282600d54611817838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016117fc9190613e22565b60405160208183030381529060405280519060200120612caf565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613fe0565b60405180910390fd5b600b60019054906101000a900460ff166118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614060565b60405180910390fd5b6002601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614080565b60405180910390fd5b6002601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119779190614210565b92505081905550611989336002612c91565b505050505050565b611999612a7b565b80600990805190602001906119af9291906133f2565b5050565b67016345785d8a000081565b6119c7612a7b565b80600b60006101000a81548160ff02191690831515021790555050565b67011c37937e08000081565b60006119fb82612af9565b9050919050565b600c5481565b60098054611a15906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a41906143e5565b8015611a8e5780601f10611a6357610100808354040283529160200191611a8e565b820191906000526020600020905b815481529060010190602001808311611a7157829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b6f612a7b565b611b796000612cc6565b565b600b60009054906101000a900460ff1681565b611b96612a7b565b80600d8190555050565b6001610d0581611bae6110c5565b611bb89190614210565b1115611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906140c0565b60405180910390fd5b8282600c54611c70838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001611c559190613e22565b60405160208183030381529060405280519060200120612caf565b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fe0565b60405180910390fd5b600b60009054906101000a900460ff16611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613f80565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614080565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd09190614210565b92505081905550611de2336001612c91565b505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e23906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4f906143e5565b8015611e9c5780601f10611e7157610100808354040283529160200191611e9c565b820191906000526020600020905b815481529060010190602001808311611e7f57829003601f168201915b5050505050905090565b600d5481565b8060076000611eb9612a6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f66612a6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fab9190613ee8565b60405180910390a35050565b600381565b600f5481565b60146020528060005260406000206000915090505481565b611fe5848484611107565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120475761201084848484612d8c565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612055612a7b565b600061205f6110c5565b9050610d0583826120709190614210565b11156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a8906140c0565b60405180910390fd5b6120bb8284612c91565b505050565b6120c8612a7b565b80600f8190555050565b6120da612a7b565b60006120e46110c5565b9050610d0583839050856120f89190614297565b826121039190614210565b1115612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906140c0565b60405180910390fd5b60005b838390508110156121965761218384848381811061216857612167614573565b5b905060200201602081019061217d919061369f565b86612c91565b808061218e90614448565b915050612147565b5050505050565b600b60029054906101000a900460ff1681565b600a80546121bd906143e5565b80601f01602080910402602001604051908101604052809291908181526020018280546121e9906143e5565b80156122365780601f1061220b57610100808354040283529160200191612236565b820191906000526020600020905b81548152906001019060200180831161221957829003601f168201915b505050505081565b606061224982612a0b565b612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614040565b60405180910390fd5b6000612292612eec565b905060008151116122b257604051806020016040528060008152506122dd565b806122bc84612f7e565b6040516020016122cd929190613e3d565b6040516020818303038152906040525b915050919050565b60136020528060005260406000206000915090505481565b348367013fbe85edc9000080826123149190614297565b831015612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d906140a0565b60405180910390fd5b85610d05816123636110c5565b61236d9190614210565b11156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a5906140c0565b60405180910390fd5b8585600f54612425838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161240a9190613e22565b60405160208183030381529060405280519060200120612caf565b612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90613fe0565b60405180910390fd5b600b60039054906101000a900460ff166124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613f40565b60405180910390fd5b6002601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90614020565b60405180910390fd5b89601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125849190614210565b92505081905550612595338b612c91565b50505050505050505050565b6125a9612a7b565b80600a90805190602001906125bf9291906133f2565b5050565b6125cb612a7b565b80600c8190555050565b6125dd612a7b565b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b348367011c37937e08000080826126249190614297565b831015612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906140a0565b60405180910390fd5b85610d05816126736110c5565b61267d9190614210565b11156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5906140c0565b60405180910390fd5b8585600e54612735838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161271a9190613e22565b60405160208183030381529060405280519060200120612caf565b612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90613fe0565b60405180910390fd5b600b60029054906101000a900460ff166127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90613fc0565b60405180910390fd5b6003601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c906140e0565b60405180910390fd5b89601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128949190614210565b925050819055506128a5338b612c91565b50505050505050505050565b6128b9612a7b565b80600b60046101000a81548160ff02191690831515021790555050565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612977612a7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90613f60565b60405180910390fd5b6129f081612cc6565b50565b600281565b600b60039054906101000a900460ff1681565b600081612a16612a72565b11158015612a25575060005482105b8015612a63575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612a836130df565b73ffffffffffffffffffffffffffffffffffffffff16612aa1611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee90614000565b60405180910390fd5b565b60008082905080612b08612a72565b11612b9057600054811015612b8f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612b8d575b6000811415612b83576004600083600190039350838152602001908152602001600020549050612b58565b8092505050612bc2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c4f8686846130e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612cab8282604051806020016040528060008152506130f0565b5050565b600082612cbc858461318d565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db2612a6a565b8786866040518563ffffffff1660e01b8152600401612dd49493929190613e9c565b602060405180830381600087803b158015612dee57600080fd5b505af1925050508015612e1f57506040513d601f19601f82011682018060405250810190612e1c9190613936565b60015b612e99573d8060008114612e4f576040519150601f19603f3d011682016040523d82523d6000602084013e612e54565b606091505b50600081511415612e91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612efb906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612f27906143e5565b8015612f745780601f10612f4957610100808354040283529160200191612f74565b820191906000526020600020905b815481529060010190602001808311612f5757829003601f168201915b5050505050905090565b60606000821415612fc6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130da565b600082905060005b60008214612ff8578080612fe190614448565b915050600a82612ff19190614266565b9150612fce565b60008167ffffffffffffffff811115613014576130136145a2565b5b6040519080825280601f01601f1916602001820160405280156130465781602001600182028036833780820191505090505b5090505b600085146130d35760018261305f91906142f1565b9150600a8561306e91906144b5565b603061307a9190614210565b60f81b8183815181106130905761308f614573565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130cc9190614266565b945061304a565b8093505050505b919050565b600033905090565b60009392505050565b6130fa83836131e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461318857600080549050600083820390505b61313a6000868380600101945086612d8c565b613170576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061312757816000541461318557600080fd5b50505b505050565b60008082905060005b84518110156131d8576131c3828683815181106131b6576131b5614573565b5b60200260200101516133a0565b915080806131d090614448565b915050613196565b508091505092915050565b6000805490506000821415613224576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132316000848385612c32565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132a8836132996000866000612c38565b6132a2856133cb565b17612c60565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461334957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061330e565b506000821415613385576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061339b6000848385612c8b565b505050565b60008183106133b8576133b382846133db565b6133c3565b6133c283836133db565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546133fe906143e5565b90600052602060002090601f0160209004810192826134205760008555613467565b82601f1061343957805160ff1916838001178555613467565b82800160010185558215613467579182015b8281111561346657825182559160200191906001019061344b565b5b5090506134749190613478565b5090565b5b80821115613491576000816000905550600101613479565b5090565b60006134a86134a384614160565b61413b565b9050828152602081018484840111156134c4576134c36145e0565b5b6134cf8482856143a3565b509392505050565b60006134ea6134e584614191565b61413b565b905082815260208101848484011115613506576135056145e0565b5b6135118482856143a3565b509392505050565b60008135905061352881614984565b92915050565b60008083601f840112613544576135436145d6565b5b8235905067ffffffffffffffff811115613561576135606145d1565b5b60208301915083602082028301111561357d5761357c6145db565b5b9250929050565b60008083601f84011261359a576135996145d6565b5b8235905067ffffffffffffffff8111156135b7576135b66145d1565b5b6020830191508360208202830111156135d3576135d26145db565b5b9250929050565b6000813590506135e98161499b565b92915050565b6000813590506135fe816149b2565b92915050565b600081359050613613816149c9565b92915050565b600081519050613628816149c9565b92915050565b600082601f830112613643576136426145d6565b5b8135613653848260208601613495565b91505092915050565b600082601f830112613671576136706145d6565b5b81356136818482602086016134d7565b91505092915050565b600081359050613699816149e0565b92915050565b6000602082840312156136b5576136b46145ea565b5b60006136c384828501613519565b91505092915050565b600080604083850312156136e3576136e26145ea565b5b60006136f185828601613519565b925050602061370285828601613519565b9150509250929050565b600080600060608486031215613725576137246145ea565b5b600061373386828701613519565b935050602061374486828701613519565b92505060406137558682870161368a565b9150509250925092565b60008060008060808587031215613779576137786145ea565b5b600061378787828801613519565b945050602061379887828801613519565b93505060406137a98782880161368a565b925050606085013567ffffffffffffffff8111156137ca576137c96145e5565b5b6137d68782880161362e565b91505092959194509250565b600080604083850312156137f9576137f86145ea565b5b600061380785828601613519565b9250506020613818858286016135da565b9150509250929050565b60008060408385031215613839576138386145ea565b5b600061384785828601613519565b92505060206138588582860161368a565b9150509250929050565b60008060208385031215613879576138786145ea565b5b600083013567ffffffffffffffff811115613897576138966145e5565b5b6138a385828601613584565b92509250509250929050565b6000602082840312156138c5576138c46145ea565b5b60006138d3848285016135da565b91505092915050565b6000602082840312156138f2576138f16145ea565b5b6000613900848285016135ef565b91505092915050565b60006020828403121561391f5761391e6145ea565b5b600061392d84828501613604565b91505092915050565b60006020828403121561394c5761394b6145ea565b5b600061395a84828501613619565b91505092915050565b600060208284031215613979576139786145ea565b5b600082013567ffffffffffffffff811115613997576139966145e5565b5b6139a38482850161365c565b91505092915050565b6000602082840312156139c2576139c16145ea565b5b60006139d08482850161368a565b91505092915050565b600080604083850312156139f0576139ef6145ea565b5b60006139fe8582860161368a565b9250506020613a0f85828601613519565b9150509250929050565b600080600060408486031215613a3257613a316145ea565b5b6000613a408682870161368a565b935050602084013567ffffffffffffffff811115613a6157613a606145e5565b5b613a6d8682870161352e565b92509250509250925092565b600080600060408486031215613a9257613a916145ea565b5b6000613aa08682870161368a565b935050602084013567ffffffffffffffff811115613ac157613ac06145e5565b5b613acd86828701613584565b92509250509250925092565b613ae281614325565b82525050565b613af9613af482614325565b614491565b82525050565b613b0881614337565b82525050565b613b1781614343565b82525050565b6000613b28826141c2565b613b3281856141d8565b9350613b428185602086016143b2565b613b4b816145ef565b840191505092915050565b6000613b61826141cd565b613b6b81856141f4565b9350613b7b8185602086016143b2565b613b84816145ef565b840191505092915050565b6000613b9a826141cd565b613ba48185614205565b9350613bb48185602086016143b2565b80840191505092915050565b6000613bcd601c836141f4565b9150613bd88261460d565b602082019050919050565b6000613bf06026836141f4565b9150613bfb82614636565b604082019050919050565b6000613c136017836141f4565b9150613c1e82614685565b602082019050919050565b6000613c366027836141f4565b9150613c41826146ae565b604082019050919050565b6000613c59601a836141f4565b9150613c64826146fd565b602082019050919050565b6000613c7c6017836141f4565b9150613c8782614726565b602082019050919050565b6000613c9f600583614205565b9150613caa8261474f565b600582019050919050565b6000613cc26020836141f4565b9150613ccd82614778565b602082019050919050565b6000613ce5602a836141f4565b9150613cf0826147a1565b604082019050919050565b6000613d08602f836141f4565b9150613d13826147f0565b604082019050919050565b6000613d2b601e836141f4565b9150613d368261483f565b602082019050919050565b6000613d4e6025836141f4565b9150613d5982614868565b604082019050919050565b6000613d716000836141e9565b9150613d7c826148b7565b600082019050919050565b6000613d946017836141f4565b9150613d9f826148ba565b602082019050919050565b6000613db7601d836141f4565b9150613dc2826148e3565b602082019050919050565b6000613dda6028836141f4565b9150613de58261490c565b604082019050919050565b6000613dfd6019836141f4565b9150613e088261495b565b602082019050919050565b613e1c81614399565b82525050565b6000613e2e8284613ae8565b60148201915081905092915050565b6000613e498285613b8f565b9150613e558284613b8f565b9150613e6082613c92565b91508190509392505050565b6000613e7782613d64565b9150819050919050565b6000602082019050613e966000830184613ad9565b92915050565b6000608082019050613eb16000830187613ad9565b613ebe6020830186613ad9565b613ecb6040830185613e13565b8181036060830152613edd8184613b1d565b905095945050505050565b6000602082019050613efd6000830184613aff565b92915050565b6000602082019050613f186000830184613b0e565b92915050565b60006020820190508181036000830152613f388184613b56565b905092915050565b60006020820190508181036000830152613f5981613bc0565b9050919050565b60006020820190508181036000830152613f7981613be3565b9050919050565b60006020820190508181036000830152613f9981613c06565b9050919050565b60006020820190508181036000830152613fb981613c29565b9050919050565b60006020820190508181036000830152613fd981613c4c565b9050919050565b60006020820190508181036000830152613ff981613c6f565b9050919050565b6000602082019050818103600083015261401981613cb5565b9050919050565b6000602082019050818103600083015261403981613cd8565b9050919050565b6000602082019050818103600083015261405981613cfb565b9050919050565b6000602082019050818103600083015261407981613d1e565b9050919050565b6000602082019050818103600083015261409981613d41565b9050919050565b600060208201905081810360008301526140b981613d87565b9050919050565b600060208201905081810360008301526140d981613daa565b9050919050565b600060208201905081810360008301526140f981613dcd565b9050919050565b6000602082019050818103600083015261411981613df0565b9050919050565b60006020820190506141356000830184613e13565b92915050565b6000614145614156565b90506141518282614417565b919050565b6000604051905090565b600067ffffffffffffffff82111561417b5761417a6145a2565b5b614184826145ef565b9050602081019050919050565b600067ffffffffffffffff8211156141ac576141ab6145a2565b5b6141b5826145ef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061421b82614399565b915061422683614399565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425b5761425a6144e6565b5b828201905092915050565b600061427182614399565b915061427c83614399565b92508261428c5761428b614515565b5b828204905092915050565b60006142a282614399565b91506142ad83614399565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e6576142e56144e6565b5b828202905092915050565b60006142fc82614399565b915061430783614399565b92508282101561431a576143196144e6565b5b828203905092915050565b600061433082614379565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143d05780820151818401526020810190506143b5565b838111156143df576000848401525b50505050565b600060028204905060018216806143fd57607f821691505b6020821081141561441157614410614544565b5b50919050565b614420826145ef565b810181811067ffffffffffffffff8211171561443f5761443e6145a2565b5b80604052505050565b600061445382614399565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614486576144856144e6565b5b600182019050919050565b600061449c826144a3565b9050919050565b60006144ae82614600565b9050919050565b60006144c082614399565b91506144cb83614399565b9250826144db576144da614515565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206d696e74206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f45786365656473206d6178696d756d207075626c6963206d696e74732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206d696e74206973206e6f7420616374697665000000000000600082015250565b7f4d65726b6c652070726f6f6620697320696e76616c6964000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d2077686974656c697374206d696e74732060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446f75626c652066726565206d696e74206973206e6f74206163746976650000600082015250565b7f45786365656473206d6178696d756d2066726565206d696e747320706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b50565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f496e73756666696369656e7420737570706c792072656d61696e696e67000000600082015250565b7f45786365656473206d6178696d756d2070726573616c65206d696e747320706560008201527f722077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973206e6f742061637469766500000000000000600082015250565b61498d81614325565b811461499857600080fd5b50565b6149a481614337565b81146149af57600080fd5b50565b6149bb81614343565b81146149c657600080fd5b50565b6149d28161434d565b81146149dd57600080fd5b50565b6149e981614399565b81146149f457600080fd5b5056fea2646970667358221220fc8dc54f915387dc15f2400cb3d2733707483797ac5233367d3c1b976b24845d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c5468654d6574614c696f6e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4c430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6d6574616c696f6e636972636c652e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063715018a6116101e7578063c55581981161010d578063e1159c55116100a0578063e985e9c51161006f578063e985e9c514610d16578063f2fde38b14610d53578063fa3e33d914610d7c578063fabd1d2d14610da7576103a2565b8063e1159c5514610c7b578063e3e1e8ef14610ca6578063e4ad183814610cc2578063e85de81c14610ceb576103a2565b8063d2cab056116100dc578063d2cab05614610be4578063da3ef23f14610c00578063dde44b8914610c29578063e0918b5914610c52576103a2565b8063c555819814610b14578063c668286214610b3f578063c87b56dd14610b6a578063d04c93ea14610ba7576103a2565b8063a22cb46511610185578063b88d4fde11610154578063b88d4fde14610a7d578063bc63f02e14610a99578063bd32fb6614610ac2578063bda6663814610aeb576103a2565b8063a22cb465146109c1578063a80c9a70146109ea578063aa98e0c614610a15578063aad66a1214610a40576103a2565b806388d15d50116101c157806388d15d50146109245780638da5cb5b1461094057806395d89b411461096b5780639f402fc014610996576103a2565b8063715018a6146108b95780637a5b85c1146108d05780637c237f95146108fb576103a2565b806332cb6b0c116102cc578063611f3f101161026a57806368963df01161023957806368963df0146107e95780636c0360eb146108145780636e2ccc5f1461083f57806370a082311461087c576103a2565b8063611f3f101461072d57806361cf301c1461075857806362dc6e21146107815780636352211e146107ac576103a2565b80634138cc8f116102a65780634138cc8f1461068f57806342842e0e146106cc5780634a5d9fdf146106e857806355f804b314610704576103a2565b806332cb6b0c1461062f5780633bc4b0251461065a5780633ccfd60b14610685576103a2565b8063236e93b21161034457806328d7b2761161031357806328d7b276146105945780632b03a4aa146105bd5780632d6b6224146105e85780632db1154414610613576103a2565b8063236e93b2146104e957806323b872dd1461051257806323f631231461052e57806327626f3414610557576103a2565b8063095ea7b311610380578063095ea7b31461044c57806317e7f2951461046857806318160ddd1461049357806322212e2b146104be576103a2565b806301ffc9a7146103a757806306fdde03146103e4578063081812fc1461040f575b600080fd5b3480156103b357600080fd5b506103ce60048036038101906103c99190613909565b610dd2565b6040516103db9190613ee8565b60405180910390f35b3480156103f057600080fd5b506103f9610e64565b6040516104069190613f1e565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906139ac565b610ef6565b6040516104439190613e81565b60405180910390f35b61046660048036038101906104619190613822565b610f75565b005b34801561047457600080fd5b5061047d6110b9565b60405161048a9190614120565b60405180910390f35b34801561049f57600080fd5b506104a86110c5565b6040516104b59190614120565b60405180910390f35b3480156104ca57600080fd5b506104d36110dc565b6040516104e09190613f03565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906138af565b6110e2565b005b61052c6004803603810190610527919061370c565b611107565b005b34801561053a57600080fd5b50610555600480360381019061055091906138af565b61142c565b005b34801561056357600080fd5b5061057e6004803603810190610579919061369f565b611451565b60405161058b9190614120565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b691906138dc565b611469565b005b3480156105c957600080fd5b506105d261147b565b6040516105df9190614120565b60405180910390f35b3480156105f457600080fd5b506105fd611480565b60405161060a9190613ee8565b60405180910390f35b61062d600480360381019061062891906139ac565b611493565b005b34801561063b57600080fd5b5061064461167c565b6040516106519190614120565b60405180910390f35b34801561066657600080fd5b5061066f611682565b60405161067c9190614120565b60405180910390f35b61068d611687565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061369f565b61170f565b6040516106c39190614120565b60405180910390f35b6106e660048036038101906106e1919061370c565b611727565b005b61070260048036038101906106fd9190613862565b611747565b005b34801561071057600080fd5b5061072b60048036038101906107269190613963565b611991565b005b34801561073957600080fd5b506107426119b3565b60405161074f9190614120565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a91906138af565b6119bf565b005b34801561078d57600080fd5b506107966119e4565b6040516107a39190614120565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906139ac565b6119f0565b6040516107e09190613e81565b60405180910390f35b3480156107f557600080fd5b506107fe611a02565b60405161080b9190613f03565b60405180910390f35b34801561082057600080fd5b50610829611a08565b6040516108369190613f1e565b60405180910390f35b34801561084b57600080fd5b506108666004803603810190610861919061369f565b611a96565b6040516108739190614120565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e919061369f565b611aae565b6040516108b09190614120565b60405180910390f35b3480156108c557600080fd5b506108ce611b67565b005b3480156108dc57600080fd5b506108e5611b7b565b6040516108f29190613ee8565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906138dc565b611b8e565b005b61093e60048036038101906109399190613862565b611ba0565b005b34801561094c57600080fd5b50610955611dea565b6040516109629190613e81565b60405180910390f35b34801561097757600080fd5b50610980611e14565b60405161098d9190613f1e565b60405180910390f35b3480156109a257600080fd5b506109ab611ea6565b6040516109b89190613f03565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e391906137e2565b611eac565b005b3480156109f657600080fd5b506109ff611fb7565b604051610a0c9190614120565b60405180910390f35b348015610a2157600080fd5b50610a2a611fbc565b604051610a379190613f03565b60405180910390f35b348015610a4c57600080fd5b50610a676004803603810190610a62919061369f565b611fc2565b604051610a749190614120565b60405180910390f35b610a976004803603810190610a92919061375f565b611fda565b005b348015610aa557600080fd5b50610ac06004803603810190610abb91906139d9565b61204d565b005b348015610ace57600080fd5b50610ae96004803603810190610ae491906138dc565b6120c0565b005b348015610af757600080fd5b50610b126004803603810190610b0d9190613a19565b6120d2565b005b348015610b2057600080fd5b50610b2961219d565b604051610b369190613ee8565b60405180910390f35b348015610b4b57600080fd5b50610b546121b0565b604051610b619190613f1e565b60405180910390f35b348015610b7657600080fd5b50610b916004803603810190610b8c91906139ac565b61223e565b604051610b9e9190613f1e565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc9919061369f565b6122e5565b604051610bdb9190614120565b60405180910390f35b610bfe6004803603810190610bf99190613a79565b6122fd565b005b348015610c0c57600080fd5b50610c276004803603810190610c229190613963565b6125a1565b005b348015610c3557600080fd5b50610c506004803603810190610c4b91906138dc565b6125c3565b005b348015610c5e57600080fd5b50610c796004803603810190610c7491906138af565b6125d5565b005b348015610c8757600080fd5b50610c906125fa565b604051610c9d9190613ee8565b60405180910390f35b610cc06004803603810190610cbb9190613a79565b61260d565b005b348015610cce57600080fd5b50610ce96004803603810190610ce491906138af565b6128b1565b005b348015610cf757600080fd5b50610d006128d6565b604051610d0d9190614120565b60405180910390f35b348015610d2257600080fd5b50610d3d6004803603810190610d3891906136cc565b6128db565b604051610d4a9190613ee8565b60405180910390f35b348015610d5f57600080fd5b50610d7a6004803603810190610d75919061369f565b61296f565b005b348015610d8857600080fd5b50610d916129f3565b604051610d9e9190614120565b60405180910390f35b348015610db357600080fd5b50610dbc6129f8565b604051610dc99190613ee8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e73906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9f906143e5565b8015610eec5780601f10610ec157610100808354040283529160200191610eec565b820191906000526020600020905b815481529060010190602001808311610ecf57829003601f168201915b5050505050905090565b6000610f0182612a0b565b610f37576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f80826119f0565b90508073ffffffffffffffffffffffffffffffffffffffff16610fa1612a6a565b73ffffffffffffffffffffffffffffffffffffffff161461100457610fcd81610fc8612a6a565b6128db565b611003576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b67013fbe85edc9000081565b60006110cf612a72565b6001546000540303905090565b600e5481565b6110ea612a7b565b80600b60026101000a81548160ff02191690831515021790555050565b600061111282612af9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611179576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061118584612bc7565b9150915061119b8187611196612a6a565b612bee565b6111e7576111b0866111ab612a6a565b6128db565b6111e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561124e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8686866001612c32565b801561126657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061133485611310888887612c38565b7c020000000000000000000000000000000000000000000000000000000017612c60565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113bc5760006001850190506000600460008381526020019081526020016000205414156113ba5760005481146113b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114248686866001612c8b565b505050505050565b611434612a7b565b80600b60036101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b611471612a7b565b80600e8190555050565b600281565b600b60049054906101000a900460ff1681565b348167013fbe85edc9000080826114aa9190614297565b8310156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906140a0565b60405180910390fd5b83610d05816114f96110c5565b6115039190614210565b1115611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906140c0565b60405180910390fd5b600b60049054906101000a900460ff16611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614100565b60405180910390fd5b6002601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613fa0565b60405180910390fd5b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116649190614210565b925050819055506116753386612c91565b5050505050565b610d0581565b600181565b61168f612a7b565b6000611699611dea565b73ffffffffffffffffffffffffffffffffffffffff16476040516116bc90613e6c565b60006040518083038185875af1925050503d80600081146116f9576040519150601f19603f3d011682016040523d82523d6000602084013e6116fe565b606091505b505090508061170c57600080fd5b50565b60116020528060005260406000206000915090505481565b61174283838360405180602001604052806000815250611fda565b505050565b6002610d05816117556110c5565b61175f9190614210565b11156117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906140c0565b60405180910390fd5b8282600d54611817838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016117fc9190613e22565b60405160208183030381529060405280519060200120612caf565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613fe0565b60405180910390fd5b600b60019054906101000a900460ff166118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614060565b60405180910390fd5b6002601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614080565b60405180910390fd5b6002601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119779190614210565b92505081905550611989336002612c91565b505050505050565b611999612a7b565b80600990805190602001906119af9291906133f2565b5050565b67016345785d8a000081565b6119c7612a7b565b80600b60006101000a81548160ff02191690831515021790555050565b67011c37937e08000081565b60006119fb82612af9565b9050919050565b600c5481565b60098054611a15906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a41906143e5565b8015611a8e5780601f10611a6357610100808354040283529160200191611a8e565b820191906000526020600020905b815481529060010190602001808311611a7157829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b6f612a7b565b611b796000612cc6565b565b600b60009054906101000a900460ff1681565b611b96612a7b565b80600d8190555050565b6001610d0581611bae6110c5565b611bb89190614210565b1115611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906140c0565b60405180910390fd5b8282600c54611c70838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001611c559190613e22565b60405160208183030381529060405280519060200120612caf565b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fe0565b60405180910390fd5b600b60009054906101000a900460ff16611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613f80565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614080565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd09190614210565b92505081905550611de2336001612c91565b505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e23906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4f906143e5565b8015611e9c5780601f10611e7157610100808354040283529160200191611e9c565b820191906000526020600020905b815481529060010190602001808311611e7f57829003601f168201915b5050505050905090565b600d5481565b8060076000611eb9612a6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f66612a6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fab9190613ee8565b60405180910390a35050565b600381565b600f5481565b60146020528060005260406000206000915090505481565b611fe5848484611107565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120475761201084848484612d8c565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612055612a7b565b600061205f6110c5565b9050610d0583826120709190614210565b11156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a8906140c0565b60405180910390fd5b6120bb8284612c91565b505050565b6120c8612a7b565b80600f8190555050565b6120da612a7b565b60006120e46110c5565b9050610d0583839050856120f89190614297565b826121039190614210565b1115612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906140c0565b60405180910390fd5b60005b838390508110156121965761218384848381811061216857612167614573565b5b905060200201602081019061217d919061369f565b86612c91565b808061218e90614448565b915050612147565b5050505050565b600b60029054906101000a900460ff1681565b600a80546121bd906143e5565b80601f01602080910402602001604051908101604052809291908181526020018280546121e9906143e5565b80156122365780601f1061220b57610100808354040283529160200191612236565b820191906000526020600020905b81548152906001019060200180831161221957829003601f168201915b505050505081565b606061224982612a0b565b612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614040565b60405180910390fd5b6000612292612eec565b905060008151116122b257604051806020016040528060008152506122dd565b806122bc84612f7e565b6040516020016122cd929190613e3d565b6040516020818303038152906040525b915050919050565b60136020528060005260406000206000915090505481565b348367013fbe85edc9000080826123149190614297565b831015612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d906140a0565b60405180910390fd5b85610d05816123636110c5565b61236d9190614210565b11156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a5906140c0565b60405180910390fd5b8585600f54612425838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161240a9190613e22565b60405160208183030381529060405280519060200120612caf565b612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90613fe0565b60405180910390fd5b600b60039054906101000a900460ff166124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613f40565b60405180910390fd5b6002601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90614020565b60405180910390fd5b89601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125849190614210565b92505081905550612595338b612c91565b50505050505050505050565b6125a9612a7b565b80600a90805190602001906125bf9291906133f2565b5050565b6125cb612a7b565b80600c8190555050565b6125dd612a7b565b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b348367011c37937e08000080826126249190614297565b831015612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906140a0565b60405180910390fd5b85610d05816126736110c5565b61267d9190614210565b11156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5906140c0565b60405180910390fd5b8585600e54612735838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161271a9190613e22565b60405160208183030381529060405280519060200120612caf565b612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90613fe0565b60405180910390fd5b600b60029054906101000a900460ff166127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90613fc0565b60405180910390fd5b6003601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c906140e0565b60405180910390fd5b89601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128949190614210565b925050819055506128a5338b612c91565b50505050505050505050565b6128b9612a7b565b80600b60046101000a81548160ff02191690831515021790555050565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612977612a7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90613f60565b60405180910390fd5b6129f081612cc6565b50565b600281565b600b60039054906101000a900460ff1681565b600081612a16612a72565b11158015612a25575060005482105b8015612a63575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612a836130df565b73ffffffffffffffffffffffffffffffffffffffff16612aa1611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee90614000565b60405180910390fd5b565b60008082905080612b08612a72565b11612b9057600054811015612b8f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612b8d575b6000811415612b83576004600083600190039350838152602001908152602001600020549050612b58565b8092505050612bc2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c4f8686846130e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612cab8282604051806020016040528060008152506130f0565b5050565b600082612cbc858461318d565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db2612a6a565b8786866040518563ffffffff1660e01b8152600401612dd49493929190613e9c565b602060405180830381600087803b158015612dee57600080fd5b505af1925050508015612e1f57506040513d601f19601f82011682018060405250810190612e1c9190613936565b60015b612e99573d8060008114612e4f576040519150601f19603f3d011682016040523d82523d6000602084013e612e54565b606091505b50600081511415612e91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612efb906143e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612f27906143e5565b8015612f745780601f10612f4957610100808354040283529160200191612f74565b820191906000526020600020905b815481529060010190602001808311612f5757829003601f168201915b5050505050905090565b60606000821415612fc6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130da565b600082905060005b60008214612ff8578080612fe190614448565b915050600a82612ff19190614266565b9150612fce565b60008167ffffffffffffffff811115613014576130136145a2565b5b6040519080825280601f01601f1916602001820160405280156130465781602001600182028036833780820191505090505b5090505b600085146130d35760018261305f91906142f1565b9150600a8561306e91906144b5565b603061307a9190614210565b60f81b8183815181106130905761308f614573565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130cc9190614266565b945061304a565b8093505050505b919050565b600033905090565b60009392505050565b6130fa83836131e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461318857600080549050600083820390505b61313a6000868380600101945086612d8c565b613170576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061312757816000541461318557600080fd5b50505b505050565b60008082905060005b84518110156131d8576131c3828683815181106131b6576131b5614573565b5b60200260200101516133a0565b915080806131d090614448565b915050613196565b508091505092915050565b6000805490506000821415613224576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132316000848385612c32565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132a8836132996000866000612c38565b6132a2856133cb565b17612c60565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461334957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061330e565b506000821415613385576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061339b6000848385612c8b565b505050565b60008183106133b8576133b382846133db565b6133c3565b6133c283836133db565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546133fe906143e5565b90600052602060002090601f0160209004810192826134205760008555613467565b82601f1061343957805160ff1916838001178555613467565b82800160010185558215613467579182015b8281111561346657825182559160200191906001019061344b565b5b5090506134749190613478565b5090565b5b80821115613491576000816000905550600101613479565b5090565b60006134a86134a384614160565b61413b565b9050828152602081018484840111156134c4576134c36145e0565b5b6134cf8482856143a3565b509392505050565b60006134ea6134e584614191565b61413b565b905082815260208101848484011115613506576135056145e0565b5b6135118482856143a3565b509392505050565b60008135905061352881614984565b92915050565b60008083601f840112613544576135436145d6565b5b8235905067ffffffffffffffff811115613561576135606145d1565b5b60208301915083602082028301111561357d5761357c6145db565b5b9250929050565b60008083601f84011261359a576135996145d6565b5b8235905067ffffffffffffffff8111156135b7576135b66145d1565b5b6020830191508360208202830111156135d3576135d26145db565b5b9250929050565b6000813590506135e98161499b565b92915050565b6000813590506135fe816149b2565b92915050565b600081359050613613816149c9565b92915050565b600081519050613628816149c9565b92915050565b600082601f830112613643576136426145d6565b5b8135613653848260208601613495565b91505092915050565b600082601f830112613671576136706145d6565b5b81356136818482602086016134d7565b91505092915050565b600081359050613699816149e0565b92915050565b6000602082840312156136b5576136b46145ea565b5b60006136c384828501613519565b91505092915050565b600080604083850312156136e3576136e26145ea565b5b60006136f185828601613519565b925050602061370285828601613519565b9150509250929050565b600080600060608486031215613725576137246145ea565b5b600061373386828701613519565b935050602061374486828701613519565b92505060406137558682870161368a565b9150509250925092565b60008060008060808587031215613779576137786145ea565b5b600061378787828801613519565b945050602061379887828801613519565b93505060406137a98782880161368a565b925050606085013567ffffffffffffffff8111156137ca576137c96145e5565b5b6137d68782880161362e565b91505092959194509250565b600080604083850312156137f9576137f86145ea565b5b600061380785828601613519565b9250506020613818858286016135da565b9150509250929050565b60008060408385031215613839576138386145ea565b5b600061384785828601613519565b92505060206138588582860161368a565b9150509250929050565b60008060208385031215613879576138786145ea565b5b600083013567ffffffffffffffff811115613897576138966145e5565b5b6138a385828601613584565b92509250509250929050565b6000602082840312156138c5576138c46145ea565b5b60006138d3848285016135da565b91505092915050565b6000602082840312156138f2576138f16145ea565b5b6000613900848285016135ef565b91505092915050565b60006020828403121561391f5761391e6145ea565b5b600061392d84828501613604565b91505092915050565b60006020828403121561394c5761394b6145ea565b5b600061395a84828501613619565b91505092915050565b600060208284031215613979576139786145ea565b5b600082013567ffffffffffffffff811115613997576139966145e5565b5b6139a38482850161365c565b91505092915050565b6000602082840312156139c2576139c16145ea565b5b60006139d08482850161368a565b91505092915050565b600080604083850312156139f0576139ef6145ea565b5b60006139fe8582860161368a565b9250506020613a0f85828601613519565b9150509250929050565b600080600060408486031215613a3257613a316145ea565b5b6000613a408682870161368a565b935050602084013567ffffffffffffffff811115613a6157613a606145e5565b5b613a6d8682870161352e565b92509250509250925092565b600080600060408486031215613a9257613a916145ea565b5b6000613aa08682870161368a565b935050602084013567ffffffffffffffff811115613ac157613ac06145e5565b5b613acd86828701613584565b92509250509250925092565b613ae281614325565b82525050565b613af9613af482614325565b614491565b82525050565b613b0881614337565b82525050565b613b1781614343565b82525050565b6000613b28826141c2565b613b3281856141d8565b9350613b428185602086016143b2565b613b4b816145ef565b840191505092915050565b6000613b61826141cd565b613b6b81856141f4565b9350613b7b8185602086016143b2565b613b84816145ef565b840191505092915050565b6000613b9a826141cd565b613ba48185614205565b9350613bb48185602086016143b2565b80840191505092915050565b6000613bcd601c836141f4565b9150613bd88261460d565b602082019050919050565b6000613bf06026836141f4565b9150613bfb82614636565b604082019050919050565b6000613c136017836141f4565b9150613c1e82614685565b602082019050919050565b6000613c366027836141f4565b9150613c41826146ae565b604082019050919050565b6000613c59601a836141f4565b9150613c64826146fd565b602082019050919050565b6000613c7c6017836141f4565b9150613c8782614726565b602082019050919050565b6000613c9f600583614205565b9150613caa8261474f565b600582019050919050565b6000613cc26020836141f4565b9150613ccd82614778565b602082019050919050565b6000613ce5602a836141f4565b9150613cf0826147a1565b604082019050919050565b6000613d08602f836141f4565b9150613d13826147f0565b604082019050919050565b6000613d2b601e836141f4565b9150613d368261483f565b602082019050919050565b6000613d4e6025836141f4565b9150613d5982614868565b604082019050919050565b6000613d716000836141e9565b9150613d7c826148b7565b600082019050919050565b6000613d946017836141f4565b9150613d9f826148ba565b602082019050919050565b6000613db7601d836141f4565b9150613dc2826148e3565b602082019050919050565b6000613dda6028836141f4565b9150613de58261490c565b604082019050919050565b6000613dfd6019836141f4565b9150613e088261495b565b602082019050919050565b613e1c81614399565b82525050565b6000613e2e8284613ae8565b60148201915081905092915050565b6000613e498285613b8f565b9150613e558284613b8f565b9150613e6082613c92565b91508190509392505050565b6000613e7782613d64565b9150819050919050565b6000602082019050613e966000830184613ad9565b92915050565b6000608082019050613eb16000830187613ad9565b613ebe6020830186613ad9565b613ecb6040830185613e13565b8181036060830152613edd8184613b1d565b905095945050505050565b6000602082019050613efd6000830184613aff565b92915050565b6000602082019050613f186000830184613b0e565b92915050565b60006020820190508181036000830152613f388184613b56565b905092915050565b60006020820190508181036000830152613f5981613bc0565b9050919050565b60006020820190508181036000830152613f7981613be3565b9050919050565b60006020820190508181036000830152613f9981613c06565b9050919050565b60006020820190508181036000830152613fb981613c29565b9050919050565b60006020820190508181036000830152613fd981613c4c565b9050919050565b60006020820190508181036000830152613ff981613c6f565b9050919050565b6000602082019050818103600083015261401981613cb5565b9050919050565b6000602082019050818103600083015261403981613cd8565b9050919050565b6000602082019050818103600083015261405981613cfb565b9050919050565b6000602082019050818103600083015261407981613d1e565b9050919050565b6000602082019050818103600083015261409981613d41565b9050919050565b600060208201905081810360008301526140b981613d87565b9050919050565b600060208201905081810360008301526140d981613daa565b9050919050565b600060208201905081810360008301526140f981613dcd565b9050919050565b6000602082019050818103600083015261411981613df0565b9050919050565b60006020820190506141356000830184613e13565b92915050565b6000614145614156565b90506141518282614417565b919050565b6000604051905090565b600067ffffffffffffffff82111561417b5761417a6145a2565b5b614184826145ef565b9050602081019050919050565b600067ffffffffffffffff8211156141ac576141ab6145a2565b5b6141b5826145ef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061421b82614399565b915061422683614399565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425b5761425a6144e6565b5b828201905092915050565b600061427182614399565b915061427c83614399565b92508261428c5761428b614515565b5b828204905092915050565b60006142a282614399565b91506142ad83614399565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e6576142e56144e6565b5b828202905092915050565b60006142fc82614399565b915061430783614399565b92508282101561431a576143196144e6565b5b828203905092915050565b600061433082614379565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143d05780820151818401526020810190506143b5565b838111156143df576000848401525b50505050565b600060028204905060018216806143fd57607f821691505b6020821081141561441157614410614544565b5b50919050565b614420826145ef565b810181811067ffffffffffffffff8211171561443f5761443e6145a2565b5b80604052505050565b600061445382614399565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614486576144856144e6565b5b600182019050919050565b600061449c826144a3565b9050919050565b60006144ae82614600565b9050919050565b60006144c082614399565b91506144cb83614399565b9250826144db576144da614515565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206d696e74206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f45786365656473206d6178696d756d207075626c6963206d696e74732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206d696e74206973206e6f7420616374697665000000000000600082015250565b7f4d65726b6c652070726f6f6620697320696e76616c6964000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d2077686974656c697374206d696e74732060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446f75626c652066726565206d696e74206973206e6f74206163746976650000600082015250565b7f45786365656473206d6178696d756d2066726565206d696e747320706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b50565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f496e73756666696369656e7420737570706c792072656d61696e696e67000000600082015250565b7f45786365656473206d6178696d756d2070726573616c65206d696e747320706560008201527f722077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973206e6f742061637469766500000000000000600082015250565b61498d81614325565b811461499857600080fd5b50565b6149a481614337565b81146149af57600080fd5b50565b6149bb81614343565b81146149c657600080fd5b50565b6149d28161434d565b81146149dd57600080fd5b50565b6149e981614399565b81146149f457600080fd5b5056fea2646970667358221220fc8dc54f915387dc15f2400cb3d2733707483797ac5233367d3c1b976b24845d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c5468654d6574614c696f6e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4c430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6d6574616c696f6e636972636c652e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TheMetaLions
Arg [1] : _symbol (string): MLC
Arg [2] : _initBaseURI (string): https://metalioncircle.io/api/metadata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 5468654d6574614c696f6e730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4c430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [8] : 68747470733a2f2f6d6574616c696f6e636972636c652e696f2f6170692f6d65
Arg [9] : 7461646174612f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

66367:8741:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33254:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40647:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40080:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67305:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29907:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66897:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73691:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44286:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73859:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67539:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72612:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67143:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66754:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70232:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66518:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66989;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74916:189;;;:::i;:::-;;67477:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47207:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68447:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71624:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67364:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73378:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67248:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35549:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66801:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66446:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67421:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31091:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14033:103;;;;;;;;;;;;;:::i;:::-;;66568:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72421:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67933:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34332:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66846:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41205:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67092:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66941:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67659:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47998:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74198:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72752:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74487:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66660:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66474:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70752:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67598:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69620:604;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71736:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72254:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73511:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66611:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69026:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74035:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67037:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41596:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67196:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66706:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33254:639;33339:4;33678:10;33663:25;;:11;:25;;;;:102;;;;33755:10;33740:25;;:11;:25;;;;33663:102;:179;;;;33832:10;33817:25;;:11;:25;;;;33663:179;33643:199;;33254:639;;;:::o;34156:100::-;34210:13;34243:5;34236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34156:100;:::o;40647:218::-;40723:7;40748:16;40756:7;40748;:16::i;:::-;40743:64;;40773:34;;;;;;;;;;;;;;40743:64;40827:15;:24;40843:7;40827:24;;;;;;;;;;;:30;;;;;;;;;;;;40820:37;;40647:218;;;:::o;40080:408::-;40169:13;40185:16;40193:7;40185;:16::i;:::-;40169:32;;40241:5;40218:28;;:19;:17;:19::i;:::-;:28;;;40214:175;;40266:44;40283:5;40290:19;:17;:19::i;:::-;40266:16;:44::i;:::-;40261:128;;40338:35;;;;;;;;;;;;;;40261:128;40214:175;40434:2;40401:15;:24;40417:7;40401:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40472:7;40468:2;40452:28;;40461:5;40452:28;;;;;;;;;;;;40158:330;40080:408;;:::o;67305:52::-;67347:10;67305:52;:::o;29907:323::-;29968:7;30196:15;:13;:15::i;:::-;30181:12;;30165:13;;:28;:46;30158:53;;29907:323;:::o;66897:37::-;;;;:::o;73691:160::-;13271:13;:11;:13::i;:::-;73823:20:::1;73801:19;;:42;;;;;;;;;;;;;;;;;;73691:160:::0;:::o;44286:2825::-;44428:27;44458;44477:7;44458:18;:27::i;:::-;44428:57;;44543:4;44502:45;;44518:19;44502:45;;;44498:86;;44556:28;;;;;;;;;;;;;;44498:86;44598:27;44627:23;44654:35;44681:7;44654:26;:35::i;:::-;44597:92;;;;44789:68;44814:15;44831:4;44837:19;:17;:19::i;:::-;44789:24;:68::i;:::-;44784:180;;44877:43;44894:4;44900:19;:17;:19::i;:::-;44877:16;:43::i;:::-;44872:92;;44929:35;;;;;;;;;;;;;;44872:92;44784:180;44995:1;44981:16;;:2;:16;;;44977:52;;;45006:23;;;;;;;;;;;;;;44977:52;45042:43;45064:4;45070:2;45074:7;45083:1;45042:21;:43::i;:::-;45178:15;45175:160;;;45318:1;45297:19;45290:30;45175:160;45715:18;:24;45734:4;45715:24;;;;;;;;;;;;;;;;45713:26;;;;;;;;;;;;45784:18;:22;45803:2;45784:22;;;;;;;;;;;;;;;;45782:24;;;;;;;;;;;46106:146;46143:2;46192:45;46207:4;46213:2;46217:19;46192:14;:45::i;:::-;26306:8;46164:73;46106:18;:146::i;:::-;46077:17;:26;46095:7;46077:26;;;;;;;;;;;:175;;;;46423:1;26306:8;46372:19;:47;:52;46368:627;;;46445:19;46477:1;46467:7;:11;46445:33;;46634:1;46600:17;:30;46618:11;46600:30;;;;;;;;;;;;:35;46596:384;;;46738:13;;46723:11;:28;46719:242;;46918:19;46885:17;:30;46903:11;46885:30;;;;;;;;;;;:52;;;;46719:242;46596:384;46426:569;46368:627;47042:7;47038:2;47023:27;;47032:4;47023:27;;;;;;;;;;;;47061:42;47082:4;47088:2;47092:7;47101:1;47061:20;:42::i;:::-;44417:2694;;;44286:2825;;;:::o;73859:168::-;13271:13;:11;:13::i;:::-;73997:22:::1;73973:21;;:46;;;;;;;;;;;;;;;;;;73859:168:::0;:::o;67539:52::-;;;;;;;;;;;;;;;;;:::o;72612:132::-;13271:13;:11;:13::i;:::-;72718:18:::1;72698:17;:38;;;;72612:132:::0;:::o;67143:46::-;67188:1;67143:46;:::o;66754:38::-;;;;;;;;;;;;;:::o;70232:487::-;70328:9;70339:7;67347:10;73096:5;73086:7;:15;;;;:::i;:::-;73076:6;:25;;73068:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;70391:7:::1;66555:4;73249:7;73233:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73211:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;70424:18:::2;;;;;;;;;;;70416:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;67238:1;70505:16;:28;70522:10;70505:28;;;;;;;;;;;;;;;;:46;70483:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;70663:7;70631:16;:28;70648:10;70631:28;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;70681:30;70691:10;70703:7;70681:9;:30::i;:::-;73140:1:::1;70232:487:::0;;;;:::o;66518:41::-;66555:4;66518:41;:::o;66989:::-;67029:1;66989:41;:::o;74916:189::-;13271:13;:11;:13::i;:::-;74973:12:::1;74999:7;:5;:7::i;:::-;74991:21;;75020;74991:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74972:98;;;75089:7;75081:16;;;::::0;::::1;;74961:144;74916:189::o:0;67477:55::-;;;;;;;;;;;;;;;;;:::o;47207:193::-;47353:39;47370:4;47376:2;47380:7;47353:39;;;;;;;;;;;;:16;:39::i;:::-;47207:193;;;:::o;68447:571::-;67084:1;66555:4;73249:7;73233:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73211:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;68613:12:::1;;68627:24;;72029:146;72066:12;;72029:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72097:5;72148:10;72131:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72121:39;;;;;;72029:18;:146::i;:::-;72007:219;;;;;;;;;;;;:::i;:::-;;;;;;;;;68677:22:::2;;;;;;;;;;;68669:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;67084:1;68767:20;:32;68788:10;68767:32;;;;;;;;;;;;;;;;:55;68745:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;67084:1;68900:20;:32;68921:10;68900:32;;;;;;;;;;;;;;;;:56;;;;;;;:::i;:::-;;;;;;;;68967:43;68977:10;67084:1;68967:9;:43::i;:::-;73338:1:::1;;;68447:571:::0;;;:::o;71624:104::-;13271:13;:11;:13::i;:::-;71709:11:::1;71699:7;:21;;;;;;;;;;;;:::i;:::-;;71624:104:::0;:::o;67364:48::-;67403:9;67364:48;:::o;73378:125::-;13271:13;:11;:13::i;:::-;73478:17:::1;73459:16;;:36;;;;;;;;;;;;;;;;;;73378:125:::0;:::o;67248:50::-;67288:10;67248:50;:::o;35549:152::-;35621:7;35664:27;35683:7;35664:18;:27::i;:::-;35641:52;;35549:152;;;:::o;66801:38::-;;;;:::o;66446:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67421:49::-;;;;;;;;;;;;;;;;;:::o;31091:233::-;31163:7;31204:1;31187:19;;:5;:19;;;31183:60;;;31215:28;;;;;;;;;;;;;;31183:60;25250:13;31261:18;:25;31280:5;31261:25;;;;;;;;;;;;;;;;:55;31254:62;;31091:233;;;:::o;14033:103::-;13271:13;:11;:13::i;:::-;14098:30:::1;14125:1;14098:18;:30::i;:::-;14033:103::o:0;66568:36::-;;;;;;;;;;;;;:::o;72421:183::-;13271:13;:11;:13::i;:::-;72571:25:::1;72544:24;:52;;;;72421:183:::0;:::o;67933:506::-;67029:1;66555:4;73249:7;73233:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73211:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;68086:12:::1;;68100:18;;72029:146;72066:12;;72029:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72097:5;72148:10;72131:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72121:39;;;;;;72029:18;:146::i;:::-;72007:219;;;;;;;;;;;;:::i;:::-;;;;;;;;;68144:16:::2;;;;;;;;;;;68136:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;67029:1;68221:14;:26;68236:10;68221:26;;;;;;;;;;;;;;;;:42;68199:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;67029:1;68341:14;:26;68356:10;68341:26;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;68395:36;68405:10;67029:1;68395:9;:36::i;:::-;73338:1:::1;;;67933:506:::0;;;:::o;13385:87::-;13431:7;13458:6;;;;;;;;;;;13451:13;;13385:87;:::o;34332:104::-;34388:13;34421:7;34414:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34332:104;:::o;66846:44::-;;;;:::o;41205:234::-;41352:8;41300:18;:39;41319:19;:17;:19::i;:::-;41300:39;;;;;;;;;;;;;;;:49;41340:8;41300:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41412:8;41376:55;;41391:19;:17;:19::i;:::-;41376:55;;;41422:8;41376:55;;;;;;:::i;:::-;;;;;;;;41205:234;;:::o;67092:44::-;67135:1;67092:44;:::o;66941:39::-;;;;:::o;67659:51::-;;;;;;;;;;;;;;;;;:::o;47998:407::-;48173:31;48186:4;48192:2;48196:7;48173:12;:31::i;:::-;48237:1;48219:2;:14;;;:19;48215:183;;48258:56;48289:4;48295:2;48299:7;48308:5;48258:30;:56::i;:::-;48253:145;;48342:40;;;;;;;;;;;;;;48253:145;48215:183;47998:407;;;;:::o;74198:281::-;13271:13;:11;:13::i;:::-;74280:14:::1;74297:13;:11;:13::i;:::-;74280:30;;66555:4;74352:7;74343:6;:16;;;;:::i;:::-;:30;;74321:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;74441:30;74451:10;74463:7;74441:9;:30::i;:::-;74269:210;74198:281:::0;;:::o;72752:163::-;13271:13;:11;:13::i;:::-;72887:20:::1;72865:19;:42;;;;72752:163:::0;:::o;74487:421::-;13271:13;:11;:13::i;:::-;74608:14:::1;74625:13;:11;:13::i;:::-;74608:30;;66555:4;74691:10;;:17;;74681:7;:27;;;;:::i;:::-;74671:6;:38;;;;:::i;:::-;:52;;74649:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;74798:9;74793:108;74817:10;;:17;;74813:1;:21;74793:108;;;74856:33;74866:10;;74877:1;74866:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;74881:7;74856:9;:33::i;:::-;74836:3;;;;;:::i;:::-;;;;74793:108;;;;74597:311;74487:421:::0;;;:::o;66660:39::-;;;;;;;;;;;;;:::o;66474:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70752:639::-;70871:13;70924:17;70932:8;70924:7;:17::i;:::-;70902:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;71029:28;71060:10;:8;:10::i;:::-;71029:41;;71132:1;71107:14;71101:28;:32;:282;;;;;;;;;;;;;;;;;71225:14;71266:19;:8;:17;:19::i;:::-;71182:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71101:282;71081:302;;;70752:639;;;:::o;67598:54::-;;;;;;;;;;;;;;;;;:::o;69620:604::-;69752:9;69763:7;67347:10;73096:5;73086:7;:15;;;;:::i;:::-;73076:6;:25;;73068:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;69815:7:::1;66555:4;73249:7;73233:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73211:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;69852:12:::2;;69866:19;;72029:146;72066:12;;72029:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72097:5;72148:10;72131:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72121:39;;;;;;72029:18;:146::i;:::-;72007:219;;;;;;;;;;;;:::i;:::-;;;;;;;;;69911:21:::3;;;;;;;;;;;69903:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;67188:1;69998:19;:31;70018:10;69998:31;;;;;;;;;;;;;;;;:52;69976:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;70168:7;70133:19;:31;70153:10;70133:31;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;70186:30;70196:10;70208:7;70186:9;:30::i;:::-;73338:1:::2;;;73140::::1;69620:604:::0;;;;;;:::o;71736:122::-;13271:13;:11;:13::i;:::-;71836:14:::1;71820:13;:30;;;;;;;;;;;;:::i;:::-;;71736:122:::0;:::o;72254:159::-;13271:13;:11;:13::i;:::-;72386:19:::1;72365:18;:40;;;;72254:159:::0;:::o;73511:172::-;13271:13;:11;:13::i;:::-;73652:23:::1;73627:22;;:48;;;;;;;;;;;;;;;;;;73511:172:::0;:::o;66611:42::-;;;;;;;;;;;;;:::o;69026:586::-;69156:9;69167:7;67288:10;73096:5;73086:7;:15;;;;:::i;:::-;73076:6;:25;;73068:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;69217:7:::1;66555:4;73249:7;73233:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73211:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;69254:12:::2;;69268:17;;72029:146;72066:12;;72029:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72097:5;72148:10;72131:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72121:39;;;;;;72029:18;:146::i;:::-;72007:219;;;;;;;;;;;;:::i;:::-;;;;;;;;;69311:19:::3;;;;;;;;;;;69303:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67135:1;69394:17;:29;69412:10;69394:29;;;;;;;;;;;;;;;;:48;69372:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;69556:7;69523:17;:29;69541:10;69523:29;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;69574:30;69584:10;69596:7;69574:9;:30::i;:::-;73338:1:::2;;;73140::::1;69026:586:::0;;;;;;:::o;74035:133::-;13271:13;:11;:13::i;:::-;74141:19:::1;74120:18;;:40;;;;;;;;;;;;;;;;;;74035:133:::0;:::o;67037:48::-;67084:1;67037:48;:::o;41596:164::-;41693:4;41717:18;:25;41736:5;41717:25;;;;;;;;;;;;;;;:35;41743:8;41717:35;;;;;;;;;;;;;;;;;;;;;;;;;41710:42;;41596:164;;;;:::o;14291:201::-;13271:13;:11;:13::i;:::-;14400:1:::1;14380:22;;:8;:22;;;;14372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14456:28;14475:8;14456:18;:28::i;:::-;14291:201:::0;:::o;67196:43::-;67238:1;67196:43;:::o;66706:41::-;;;;;;;;;;;;;:::o;42018:282::-;42083:4;42139:7;42120:15;:13;:15::i;:::-;:26;;:66;;;;;42173:13;;42163:7;:23;42120:66;:153;;;;;42272:1;26026:8;42224:17;:26;42242:7;42224:26;;;;;;;;;;;;:44;:49;42120:153;42100:173;;42018:282;;;:::o;64326:105::-;64386:7;64413:10;64406:17;;64326:105;:::o;71399:101::-;71464:7;71491:1;71484:8;;71399:101;:::o;13550:132::-;13625:12;:10;:12::i;:::-;13614:23;;:7;:5;:7::i;:::-;:23;;;13606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13550:132::o;36704:1275::-;36771:7;36791:12;36806:7;36791:22;;36874:4;36855:15;:13;:15::i;:::-;:23;36851:1061;;36908:13;;36901:4;:20;36897:1015;;;36946:14;36963:17;:23;36981:4;36963:23;;;;;;;;;;;;36946:40;;37080:1;26026:8;37052:6;:24;:29;37048:845;;;37717:113;37734:1;37724:6;:11;37717:113;;;37777:17;:25;37795:6;;;;;;;37777:25;;;;;;;;;;;;37768:34;;37717:113;;;37863:6;37856:13;;;;;;37048:845;36923:989;36897:1015;36851:1061;37940:31;;;;;;;;;;;;;;36704:1275;;;;:::o;43181:485::-;43283:27;43312:23;43353:38;43394:15;:24;43410:7;43394:24;;;;;;;;;;;43353:65;;43571:18;43548:41;;43628:19;43622:26;43603:45;;43533:126;43181:485;;;:::o;42409:659::-;42558:11;42723:16;42716:5;42712:28;42703:37;;42883:16;42872:9;42868:32;42855:45;;43033:15;43022:9;43019:30;43011:5;43000:9;42997:20;42994:56;42984:66;;42409:659;;;;;:::o;49067:159::-;;;;;:::o;63635:311::-;63770:7;63790:16;26430:3;63816:19;:41;;63790:68;;26430:3;63884:31;63895:4;63901:2;63905:9;63884:10;:31::i;:::-;63876:40;;:62;;63869:69;;;63635:311;;;;;:::o;38527:450::-;38607:14;38775:16;38768:5;38764:28;38755:37;;38952:5;38938:11;38913:23;38909:41;38906:52;38899:5;38896:63;38886:73;;38527:450;;;;:::o;49891:158::-;;;;;:::o;58158:112::-;58235:27;58245:2;58249:8;58235:27;;;;;;;;;;;;:9;:27::i;:::-;58158:112;;:::o;3751:190::-;3876:4;3929;3900:25;3913:5;3920:4;3900:12;:25::i;:::-;:33;3893:40;;3751:190;;;;;:::o;14652:191::-;14726:16;14745:6;;;;;;;;;;;14726:25;;14771:8;14762:6;;:17;;;;;;;;;;;;;;;;;;14826:8;14795:40;;14816:8;14795:40;;;;;;;;;;;;14715:128;14652:191;:::o;50489:716::-;50652:4;50698:2;50673:45;;;50719:19;:17;:19::i;:::-;50740:4;50746:7;50755:5;50673:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50669:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50973:1;50956:6;:13;:18;50952:235;;;51002:40;;;;;;;;;;;;;;50952:235;51145:6;51139:13;51130:6;51126:2;51122:15;51115:38;50669:529;50842:54;;;50832:64;;;:6;:64;;;;50825:71;;;50489:716;;;;;;:::o;71508:108::-;71568:13;71601:7;71594:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71508:108;:::o;465:723::-;521:13;751:1;742:5;:10;738:53;;;769:10;;;;;;;;;;;;;;;;;;;;;738:53;801:12;816:5;801:20;;832:14;857:78;872:1;864:4;:9;857:78;;890:8;;;;;:::i;:::-;;;;921:2;913:10;;;;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945:39;;995:154;1011:1;1002:5;:10;995:154;;1039:1;1029:11;;;;;:::i;:::-;;;1106:2;1098:5;:10;;;;:::i;:::-;1085:2;:24;;;;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1135:2;1126:11;;;;;:::i;:::-;;;995:154;;;1173:6;1159:21;;;;;465:723;;;;:::o;11936:98::-;11989:7;12016:10;12009:17;;11936:98;:::o;63336:147::-;63473:6;63336:147;;;;;:::o;57385:689::-;57516:19;57522:2;57526:8;57516:5;:19::i;:::-;57595:1;57577:2;:14;;;:19;57573:483;;57617:11;57631:13;;57617:27;;57663:13;57685:8;57679:3;:14;57663:30;;57712:233;57743:62;57782:1;57786:2;57790:7;;;;;;57799:5;57743:30;:62::i;:::-;57738:167;;57841:40;;;;;;;;;;;;;;57738:167;57940:3;57932:5;:11;57712:233;;58027:3;58010:13;;:20;58006:34;;58032:8;;;58006:34;57598:458;;57573:483;57385:689;;;:::o;4618:296::-;4701:7;4721:20;4744:4;4721:27;;4764:9;4759:118;4783:5;:12;4779:1;:16;4759:118;;;4832:33;4842:12;4856:5;4862:1;4856:8;;;;;;;;:::i;:::-;;;;;;;;4832:9;:33::i;:::-;4817:48;;4797:3;;;;;:::i;:::-;;;;4759:118;;;;4894:12;4887:19;;;4618:296;;;;:::o;51667:2966::-;51740:20;51763:13;;51740:36;;51803:1;51791:8;:13;51787:44;;;51813:18;;;;;;;;;;;;;;51787:44;51844:61;51874:1;51878:2;51882:12;51896:8;51844:21;:61::i;:::-;52388:1;25388:2;52358:1;:26;;52357:32;52345:8;:45;52319:18;:22;52338:2;52319:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52667:139;52704:2;52758:33;52781:1;52785:2;52789:1;52758:14;:33::i;:::-;52725:30;52746:8;52725:20;:30::i;:::-;:66;52667:18;:139::i;:::-;52633:17;:31;52651:12;52633:31;;;;;;;;;;;:173;;;;52823:16;52854:11;52883:8;52868:12;:23;52854:37;;53404:16;53400:2;53396:25;53384:37;;53776:12;53736:8;53695:1;53633:25;53574:1;53513;53486:335;54147:1;54133:12;54129:20;54087:346;54188:3;54179:7;54176:16;54087:346;;54406:7;54396:8;54393:1;54366:25;54363:1;54360;54355:59;54241:1;54232:7;54228:15;54217:26;;54087:346;;;54091:77;54478:1;54466:8;:13;54462:45;;;54488:19;;;;;;;;;;;;;;54462:45;54540:3;54524:13;:19;;;;52093:2462;;54565:60;54594:1;54598:2;54602:12;54616:8;54565:20;:60::i;:::-;51729:2904;51667:2966;;:::o;10825:149::-;10888:7;10919:1;10915;:5;:51;;10946:20;10961:1;10964;10946:14;:20::i;:::-;10915:51;;;10923:20;10938:1;10941;10923:14;:20::i;:::-;10915:51;10908:58;;10825:149;;;;:::o;39079:324::-;39149:14;39382:1;39372:8;39369:15;39343:24;39339:46;39329:56;;39079:324;;;:::o;10982:268::-;11050:13;11157:1;11151:4;11144:15;11186:1;11180:4;11173:15;11227:4;11221;11211:21;11202:30;;10982:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:139::-;2353:5;2391:6;2378:20;2369:29;;2407:33;2434:5;2407:33;:::i;:::-;2307:139;;;;:::o;2452:137::-;2497:5;2535:6;2522:20;2513:29;;2551:32;2577:5;2551:32;:::i;:::-;2452:137;;;;:::o;2595:141::-;2651:5;2682:6;2676:13;2667:22;;2698:32;2724:5;2698:32;:::i;:::-;2595:141;;;;:::o;2755:338::-;2810:5;2859:3;2852:4;2844:6;2840:17;2836:27;2826:122;;2867:79;;:::i;:::-;2826:122;2984:6;2971:20;3009:78;3083:3;3075:6;3068:4;3060:6;3056:17;3009:78;:::i;:::-;3000:87;;2816:277;2755:338;;;;:::o;3113:340::-;3169:5;3218:3;3211:4;3203:6;3199:17;3195:27;3185:122;;3226:79;;:::i;:::-;3185:122;3343:6;3330:20;3368:79;3443:3;3435:6;3428:4;3420:6;3416:17;3368:79;:::i;:::-;3359:88;;3175:278;3113:340;;;;:::o;3459:139::-;3505:5;3543:6;3530:20;3521:29;;3559:33;3586:5;3559:33;:::i;:::-;3459:139;;;;:::o;3604:329::-;3663:6;3712:2;3700:9;3691:7;3687:23;3683:32;3680:119;;;3718:79;;:::i;:::-;3680:119;3838:1;3863:53;3908:7;3899:6;3888:9;3884:22;3863:53;:::i;:::-;3853:63;;3809:117;3604:329;;;;:::o;3939:474::-;4007:6;4015;4064:2;4052:9;4043:7;4039:23;4035:32;4032:119;;;4070:79;;:::i;:::-;4032:119;4190:1;4215:53;4260:7;4251:6;4240:9;4236:22;4215:53;:::i;:::-;4205:63;;4161:117;4317:2;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4288:118;3939:474;;;;;:::o;4419:619::-;4496:6;4504;4512;4561:2;4549:9;4540:7;4536:23;4532:32;4529:119;;;4567:79;;:::i;:::-;4529:119;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:53;4885:7;4876:6;4865:9;4861:22;4840:53;:::i;:::-;4830:63;;4785:118;4942:2;4968:53;5013:7;5004:6;4993:9;4989:22;4968:53;:::i;:::-;4958:63;;4913:118;4419:619;;;;;:::o;5044:943::-;5139:6;5147;5155;5163;5212:3;5200:9;5191:7;5187:23;5183:33;5180:120;;;5219:79;;:::i;:::-;5180:120;5339:1;5364:53;5409:7;5400:6;5389:9;5385:22;5364:53;:::i;:::-;5354:63;;5310:117;5466:2;5492:53;5537:7;5528:6;5517:9;5513:22;5492:53;:::i;:::-;5482:63;;5437:118;5594:2;5620:53;5665:7;5656:6;5645:9;5641:22;5620:53;:::i;:::-;5610:63;;5565:118;5750:2;5739:9;5735:18;5722:32;5781:18;5773:6;5770:30;5767:117;;;5803:79;;:::i;:::-;5767:117;5908:62;5962:7;5953:6;5942:9;5938:22;5908:62;:::i;:::-;5898:72;;5693:287;5044:943;;;;;;;:::o;5993:468::-;6058:6;6066;6115:2;6103:9;6094:7;6090:23;6086:32;6083:119;;;6121:79;;:::i;:::-;6083:119;6241:1;6266:53;6311:7;6302:6;6291:9;6287:22;6266:53;:::i;:::-;6256:63;;6212:117;6368:2;6394:50;6436:7;6427:6;6416:9;6412:22;6394:50;:::i;:::-;6384:60;;6339:115;5993:468;;;;;:::o;6467:474::-;6535:6;6543;6592:2;6580:9;6571:7;6567:23;6563:32;6560:119;;;6598:79;;:::i;:::-;6560:119;6718:1;6743:53;6788:7;6779:6;6768:9;6764:22;6743:53;:::i;:::-;6733:63;;6689:117;6845:2;6871:53;6916:7;6907:6;6896:9;6892:22;6871:53;:::i;:::-;6861:63;;6816:118;6467:474;;;;;:::o;6947:559::-;7033:6;7041;7090:2;7078:9;7069:7;7065:23;7061:32;7058:119;;;7096:79;;:::i;:::-;7058:119;7244:1;7233:9;7229:17;7216:31;7274:18;7266:6;7263:30;7260:117;;;7296:79;;:::i;:::-;7260:117;7409:80;7481:7;7472:6;7461:9;7457:22;7409:80;:::i;:::-;7391:98;;;;7187:312;6947:559;;;;;:::o;7512:323::-;7568:6;7617:2;7605:9;7596:7;7592:23;7588:32;7585:119;;;7623:79;;:::i;:::-;7585:119;7743:1;7768:50;7810:7;7801:6;7790:9;7786:22;7768:50;:::i;:::-;7758:60;;7714:114;7512:323;;;;:::o;7841:329::-;7900:6;7949:2;7937:9;7928:7;7924:23;7920:32;7917:119;;;7955:79;;:::i;:::-;7917:119;8075:1;8100:53;8145:7;8136:6;8125:9;8121:22;8100:53;:::i;:::-;8090:63;;8046:117;7841:329;;;;:::o;8176:327::-;8234:6;8283:2;8271:9;8262:7;8258:23;8254:32;8251:119;;;8289:79;;:::i;:::-;8251:119;8409:1;8434:52;8478:7;8469:6;8458:9;8454:22;8434:52;:::i;:::-;8424:62;;8380:116;8176:327;;;;:::o;8509:349::-;8578:6;8627:2;8615:9;8606:7;8602:23;8598:32;8595:119;;;8633:79;;:::i;:::-;8595:119;8753:1;8778:63;8833:7;8824:6;8813:9;8809:22;8778:63;:::i;:::-;8768:73;;8724:127;8509:349;;;;:::o;8864:509::-;8933:6;8982:2;8970:9;8961:7;8957:23;8953:32;8950:119;;;8988:79;;:::i;:::-;8950:119;9136:1;9125:9;9121:17;9108:31;9166:18;9158:6;9155:30;9152:117;;;9188:79;;:::i;:::-;9152:117;9293:63;9348:7;9339:6;9328:9;9324:22;9293:63;:::i;:::-;9283:73;;9079:287;8864:509;;;;:::o;9379:329::-;9438:6;9487:2;9475:9;9466:7;9462:23;9458:32;9455:119;;;9493:79;;:::i;:::-;9455:119;9613:1;9638:53;9683:7;9674:6;9663:9;9659:22;9638:53;:::i;:::-;9628:63;;9584:117;9379:329;;;;:::o;9714:474::-;9782:6;9790;9839:2;9827:9;9818:7;9814:23;9810:32;9807:119;;;9845:79;;:::i;:::-;9807:119;9965:1;9990:53;10035:7;10026:6;10015:9;10011:22;9990:53;:::i;:::-;9980:63;;9936:117;10092:2;10118:53;10163:7;10154:6;10143:9;10139:22;10118:53;:::i;:::-;10108:63;;10063:118;9714:474;;;;;:::o;10194:704::-;10289:6;10297;10305;10354:2;10342:9;10333:7;10329:23;10325:32;10322:119;;;10360:79;;:::i;:::-;10322:119;10480:1;10505:53;10550:7;10541:6;10530:9;10526:22;10505:53;:::i;:::-;10495:63;;10451:117;10635:2;10624:9;10620:18;10607:32;10666:18;10658:6;10655:30;10652:117;;;10688:79;;:::i;:::-;10652:117;10801:80;10873:7;10864:6;10853:9;10849:22;10801:80;:::i;:::-;10783:98;;;;10578:313;10194:704;;;;;:::o;10904:::-;10999:6;11007;11015;11064:2;11052:9;11043:7;11039:23;11035:32;11032:119;;;11070:79;;:::i;:::-;11032:119;11190:1;11215:53;11260:7;11251:6;11240:9;11236:22;11215:53;:::i;:::-;11205:63;;11161:117;11345:2;11334:9;11330:18;11317:32;11376:18;11368:6;11365:30;11362:117;;;11398:79;;:::i;:::-;11362:117;11511:80;11583:7;11574:6;11563:9;11559:22;11511:80;:::i;:::-;11493:98;;;;11288:313;10904:704;;;;;:::o;11614:118::-;11701:24;11719:5;11701:24;:::i;:::-;11696:3;11689:37;11614:118;;:::o;11738:157::-;11843:45;11863:24;11881:5;11863:24;:::i;:::-;11843:45;:::i;:::-;11838:3;11831:58;11738:157;;:::o;11901:109::-;11982:21;11997:5;11982:21;:::i;:::-;11977:3;11970:34;11901:109;;:::o;12016:118::-;12103:24;12121:5;12103:24;:::i;:::-;12098:3;12091:37;12016:118;;:::o;12140:360::-;12226:3;12254:38;12286:5;12254:38;:::i;:::-;12308:70;12371:6;12366:3;12308:70;:::i;:::-;12301:77;;12387:52;12432:6;12427:3;12420:4;12413:5;12409:16;12387:52;:::i;:::-;12464:29;12486:6;12464:29;:::i;:::-;12459:3;12455:39;12448:46;;12230:270;12140:360;;;;:::o;12506:364::-;12594:3;12622:39;12655:5;12622:39;:::i;:::-;12677:71;12741:6;12736:3;12677:71;:::i;:::-;12670:78;;12757:52;12802:6;12797:3;12790:4;12783:5;12779:16;12757:52;:::i;:::-;12834:29;12856:6;12834:29;:::i;:::-;12829:3;12825:39;12818:46;;12598:272;12506:364;;;;:::o;12876:377::-;12982:3;13010:39;13043:5;13010:39;:::i;:::-;13065:89;13147:6;13142:3;13065:89;:::i;:::-;13058:96;;13163:52;13208:6;13203:3;13196:4;13189:5;13185:16;13163:52;:::i;:::-;13240:6;13235:3;13231:16;13224:23;;12986:267;12876:377;;;;:::o;13259:366::-;13401:3;13422:67;13486:2;13481:3;13422:67;:::i;:::-;13415:74;;13498:93;13587:3;13498:93;:::i;:::-;13616:2;13611:3;13607:12;13600:19;;13259:366;;;:::o;13631:::-;13773:3;13794:67;13858:2;13853:3;13794:67;:::i;:::-;13787:74;;13870:93;13959:3;13870:93;:::i;:::-;13988:2;13983:3;13979:12;13972:19;;13631:366;;;:::o;14003:::-;14145:3;14166:67;14230:2;14225:3;14166:67;:::i;:::-;14159:74;;14242:93;14331:3;14242:93;:::i;:::-;14360:2;14355:3;14351:12;14344:19;;14003:366;;;:::o;14375:::-;14517:3;14538:67;14602:2;14597:3;14538:67;:::i;:::-;14531:74;;14614:93;14703:3;14614:93;:::i;:::-;14732:2;14727:3;14723:12;14716:19;;14375:366;;;:::o;14747:::-;14889:3;14910:67;14974:2;14969:3;14910:67;:::i;:::-;14903:74;;14986:93;15075:3;14986:93;:::i;:::-;15104:2;15099:3;15095:12;15088:19;;14747:366;;;:::o;15119:::-;15261:3;15282:67;15346:2;15341:3;15282:67;:::i;:::-;15275:74;;15358:93;15447:3;15358:93;:::i;:::-;15476:2;15471:3;15467:12;15460:19;;15119:366;;;:::o;15491:400::-;15651:3;15672:84;15754:1;15749:3;15672:84;:::i;:::-;15665:91;;15765:93;15854:3;15765:93;:::i;:::-;15883:1;15878:3;15874:11;15867:18;;15491:400;;;:::o;15897:366::-;16039:3;16060:67;16124:2;16119:3;16060:67;:::i;:::-;16053:74;;16136:93;16225:3;16136:93;:::i;:::-;16254:2;16249:3;16245:12;16238:19;;15897:366;;;:::o;16269:::-;16411:3;16432:67;16496:2;16491:3;16432:67;:::i;:::-;16425:74;;16508:93;16597:3;16508:93;:::i;:::-;16626:2;16621:3;16617:12;16610:19;;16269:366;;;:::o;16641:::-;16783:3;16804:67;16868:2;16863:3;16804:67;:::i;:::-;16797:74;;16880:93;16969:3;16880:93;:::i;:::-;16998:2;16993:3;16989:12;16982:19;;16641:366;;;:::o;17013:::-;17155:3;17176:67;17240:2;17235:3;17176:67;:::i;:::-;17169:74;;17252:93;17341:3;17252:93;:::i;:::-;17370:2;17365:3;17361:12;17354:19;;17013:366;;;:::o;17385:::-;17527:3;17548:67;17612:2;17607:3;17548:67;:::i;:::-;17541:74;;17624:93;17713:3;17624:93;:::i;:::-;17742:2;17737:3;17733:12;17726:19;;17385:366;;;:::o;17757:398::-;17916:3;17937:83;18018:1;18013:3;17937:83;:::i;:::-;17930:90;;18029:93;18118:3;18029:93;:::i;:::-;18147:1;18142:3;18138:11;18131:18;;17757:398;;;:::o;18161:366::-;18303:3;18324:67;18388:2;18383:3;18324:67;:::i;:::-;18317:74;;18400:93;18489:3;18400:93;:::i;:::-;18518:2;18513:3;18509:12;18502:19;;18161:366;;;:::o;18533:::-;18675:3;18696:67;18760:2;18755:3;18696:67;:::i;:::-;18689:74;;18772:93;18861:3;18772:93;:::i;:::-;18890:2;18885:3;18881:12;18874:19;;18533:366;;;:::o;18905:::-;19047:3;19068:67;19132:2;19127:3;19068:67;:::i;:::-;19061:74;;19144:93;19233:3;19144:93;:::i;:::-;19262:2;19257:3;19253:12;19246:19;;18905:366;;;:::o;19277:::-;19419:3;19440:67;19504:2;19499:3;19440:67;:::i;:::-;19433:74;;19516:93;19605:3;19516:93;:::i;:::-;19634:2;19629:3;19625:12;19618:19;;19277:366;;;:::o;19649:118::-;19736:24;19754:5;19736:24;:::i;:::-;19731:3;19724:37;19649:118;;:::o;19773:256::-;19885:3;19900:75;19971:3;19962:6;19900:75;:::i;:::-;20000:2;19995:3;19991:12;19984:19;;20020:3;20013:10;;19773:256;;;;:::o;20035:701::-;20316:3;20338:95;20429:3;20420:6;20338:95;:::i;:::-;20331:102;;20450:95;20541:3;20532:6;20450:95;:::i;:::-;20443:102;;20562:148;20706:3;20562:148;:::i;:::-;20555:155;;20727:3;20720:10;;20035:701;;;;;:::o;20742:379::-;20926:3;20948:147;21091:3;20948:147;:::i;:::-;20941:154;;21112:3;21105:10;;20742:379;;;:::o;21127:222::-;21220:4;21258:2;21247:9;21243:18;21235:26;;21271:71;21339:1;21328:9;21324:17;21315:6;21271:71;:::i;:::-;21127:222;;;;:::o;21355:640::-;21550:4;21588:3;21577:9;21573:19;21565:27;;21602:71;21670:1;21659:9;21655:17;21646:6;21602:71;:::i;:::-;21683:72;21751:2;21740:9;21736:18;21727:6;21683:72;:::i;:::-;21765;21833:2;21822:9;21818:18;21809:6;21765:72;:::i;:::-;21884:9;21878:4;21874:20;21869:2;21858:9;21854:18;21847:48;21912:76;21983:4;21974:6;21912:76;:::i;:::-;21904:84;;21355:640;;;;;;;:::o;22001:210::-;22088:4;22126:2;22115:9;22111:18;22103:26;;22139:65;22201:1;22190:9;22186:17;22177:6;22139:65;:::i;:::-;22001:210;;;;:::o;22217:222::-;22310:4;22348:2;22337:9;22333:18;22325:26;;22361:71;22429:1;22418:9;22414:17;22405:6;22361:71;:::i;:::-;22217:222;;;;:::o;22445:313::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:78;22746:4;22737:6;22673:78;:::i;:::-;22665:86;;22445:313;;;;:::o;22764:419::-;22930:4;22968:2;22957:9;22953:18;22945:26;;23017:9;23011:4;23007:20;23003:1;22992:9;22988:17;22981:47;23045:131;23171:4;23045:131;:::i;:::-;23037:139;;22764:419;;;:::o;23189:::-;23355:4;23393:2;23382:9;23378:18;23370:26;;23442:9;23436:4;23432:20;23428:1;23417:9;23413:17;23406:47;23470:131;23596:4;23470:131;:::i;:::-;23462:139;;23189:419;;;:::o;23614:::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:::-;24205:4;24243:2;24232:9;24228:18;24220:26;;24292:9;24286:4;24282:20;24278:1;24267:9;24263:17;24256:47;24320:131;24446:4;24320:131;:::i;:::-;24312:139;;24039:419;;;:::o;24464:::-;24630:4;24668:2;24657:9;24653:18;24645:26;;24717:9;24711:4;24707:20;24703:1;24692:9;24688:17;24681:47;24745:131;24871:4;24745:131;:::i;:::-;24737:139;;24464:419;;;:::o;24889:::-;25055:4;25093:2;25082:9;25078:18;25070:26;;25142:9;25136:4;25132:20;25128:1;25117:9;25113:17;25106:47;25170:131;25296:4;25170:131;:::i;:::-;25162:139;;24889:419;;;:::o;25314:::-;25480:4;25518:2;25507:9;25503:18;25495:26;;25567:9;25561:4;25557:20;25553:1;25542:9;25538:17;25531:47;25595:131;25721:4;25595:131;:::i;:::-;25587:139;;25314:419;;;:::o;25739:::-;25905:4;25943:2;25932:9;25928:18;25920:26;;25992:9;25986:4;25982:20;25978:1;25967:9;25963:17;25956:47;26020:131;26146:4;26020:131;:::i;:::-;26012:139;;25739:419;;;:::o;26164:::-;26330:4;26368:2;26357:9;26353:18;26345:26;;26417:9;26411:4;26407:20;26403:1;26392:9;26388:17;26381:47;26445:131;26571:4;26445:131;:::i;:::-;26437:139;;26164:419;;;:::o;26589:::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:::-;27180:4;27218:2;27207:9;27203:18;27195:26;;27267:9;27261:4;27257:20;27253:1;27242:9;27238:17;27231:47;27295:131;27421:4;27295:131;:::i;:::-;27287:139;;27014:419;;;:::o;27439:::-;27605:4;27643:2;27632:9;27628:18;27620:26;;27692:9;27686:4;27682:20;27678:1;27667:9;27663:17;27656:47;27720:131;27846:4;27720:131;:::i;:::-;27712:139;;27439:419;;;:::o;27864:::-;28030:4;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:131;28271:4;28145:131;:::i;:::-;28137:139;;27864:419;;;:::o;28289:::-;28455:4;28493:2;28482:9;28478:18;28470:26;;28542:9;28536:4;28532:20;28528:1;28517:9;28513:17;28506:47;28570:131;28696:4;28570:131;:::i;:::-;28562:139;;28289:419;;;:::o;28714:::-;28880:4;28918:2;28907:9;28903:18;28895:26;;28967:9;28961:4;28957:20;28953:1;28942:9;28938:17;28931:47;28995:131;29121:4;28995:131;:::i;:::-;28987:139;;28714:419;;;:::o;29139:222::-;29232:4;29270:2;29259:9;29255:18;29247:26;;29283:71;29351:1;29340:9;29336:17;29327:6;29283:71;:::i;:::-;29139:222;;;;:::o;29367:129::-;29401:6;29428:20;;:::i;:::-;29418:30;;29457:33;29485:4;29477:6;29457:33;:::i;:::-;29367:129;;;:::o;29502:75::-;29535:6;29568:2;29562:9;29552:19;;29502:75;:::o;29583:307::-;29644:4;29734:18;29726:6;29723:30;29720:56;;;29756:18;;:::i;:::-;29720:56;29794:29;29816:6;29794:29;:::i;:::-;29786:37;;29878:4;29872;29868:15;29860:23;;29583:307;;;:::o;29896:308::-;29958:4;30048:18;30040:6;30037:30;30034:56;;;30070:18;;:::i;:::-;30034:56;30108:29;30130:6;30108:29;:::i;:::-;30100:37;;30192:4;30186;30182:15;30174:23;;29896:308;;;:::o;30210:98::-;30261:6;30295:5;30289:12;30279:22;;30210:98;;;:::o;30314:99::-;30366:6;30400:5;30394:12;30384:22;;30314:99;;;:::o;30419:168::-;30502:11;30536:6;30531:3;30524:19;30576:4;30571:3;30567:14;30552:29;;30419:168;;;;:::o;30593:147::-;30694:11;30731:3;30716:18;;30593:147;;;;:::o;30746:169::-;30830:11;30864:6;30859:3;30852:19;30904:4;30899:3;30895:14;30880:29;;30746:169;;;;:::o;30921:148::-;31023:11;31060:3;31045:18;;30921:148;;;;:::o;31075:305::-;31115:3;31134:20;31152:1;31134:20;:::i;:::-;31129:25;;31168:20;31186:1;31168:20;:::i;:::-;31163:25;;31322:1;31254:66;31250:74;31247:1;31244:81;31241:107;;;31328:18;;:::i;:::-;31241:107;31372:1;31369;31365:9;31358:16;;31075:305;;;;:::o;31386:185::-;31426:1;31443:20;31461:1;31443:20;:::i;:::-;31438:25;;31477:20;31495:1;31477:20;:::i;:::-;31472:25;;31516:1;31506:35;;31521:18;;:::i;:::-;31506:35;31563:1;31560;31556:9;31551:14;;31386:185;;;;:::o;31577:348::-;31617:7;31640:20;31658:1;31640:20;:::i;:::-;31635:25;;31674:20;31692:1;31674:20;:::i;:::-;31669:25;;31862:1;31794:66;31790:74;31787:1;31784:81;31779:1;31772:9;31765:17;31761:105;31758:131;;;31869:18;;:::i;:::-;31758:131;31917:1;31914;31910:9;31899:20;;31577:348;;;;:::o;31931:191::-;31971:4;31991:20;32009:1;31991:20;:::i;:::-;31986:25;;32025:20;32043:1;32025:20;:::i;:::-;32020:25;;32064:1;32061;32058:8;32055:34;;;32069:18;;:::i;:::-;32055:34;32114:1;32111;32107:9;32099:17;;31931:191;;;;:::o;32128:96::-;32165:7;32194:24;32212:5;32194:24;:::i;:::-;32183:35;;32128:96;;;:::o;32230:90::-;32264:7;32307:5;32300:13;32293:21;32282:32;;32230:90;;;:::o;32326:77::-;32363:7;32392:5;32381:16;;32326:77;;;:::o;32409:149::-;32445:7;32485:66;32478:5;32474:78;32463:89;;32409:149;;;:::o;32564:126::-;32601:7;32641:42;32634:5;32630:54;32619:65;;32564:126;;;:::o;32696:77::-;32733:7;32762:5;32751:16;;32696:77;;;:::o;32779:154::-;32863:6;32858:3;32853;32840:30;32925:1;32916:6;32911:3;32907:16;32900:27;32779:154;;;:::o;32939:307::-;33007:1;33017:113;33031:6;33028:1;33025:13;33017:113;;;33116:1;33111:3;33107:11;33101:18;33097:1;33092:3;33088:11;33081:39;33053:2;33050:1;33046:10;33041:15;;33017:113;;;33148:6;33145:1;33142:13;33139:101;;;33228:1;33219:6;33214:3;33210:16;33203:27;33139:101;32988:258;32939:307;;;:::o;33252:320::-;33296:6;33333:1;33327:4;33323:12;33313:22;;33380:1;33374:4;33370:12;33401:18;33391:81;;33457:4;33449:6;33445:17;33435:27;;33391:81;33519:2;33511:6;33508:14;33488:18;33485:38;33482:84;;;33538:18;;:::i;:::-;33482:84;33303:269;33252:320;;;:::o;33578:281::-;33661:27;33683:4;33661:27;:::i;:::-;33653:6;33649:40;33791:6;33779:10;33776:22;33755:18;33743:10;33740:34;33737:62;33734:88;;;33802:18;;:::i;:::-;33734:88;33842:10;33838:2;33831:22;33621:238;33578:281;;:::o;33865:233::-;33904:3;33927:24;33945:5;33927:24;:::i;:::-;33918:33;;33973:66;33966:5;33963:77;33960:103;;;34043:18;;:::i;:::-;33960:103;34090:1;34083:5;34079:13;34072:20;;33865:233;;;:::o;34104:100::-;34143:7;34172:26;34192:5;34172:26;:::i;:::-;34161:37;;34104:100;;;:::o;34210:94::-;34249:7;34278:20;34292:5;34278:20;:::i;:::-;34267:31;;34210:94;;;:::o;34310:176::-;34342:1;34359:20;34377:1;34359:20;:::i;:::-;34354:25;;34393:20;34411:1;34393:20;:::i;:::-;34388:25;;34432:1;34422:35;;34437:18;;:::i;:::-;34422:35;34478:1;34475;34471:9;34466:14;;34310:176;;;;:::o;34492:180::-;34540:77;34537:1;34530:88;34637:4;34634:1;34627:15;34661:4;34658:1;34651:15;34678:180;34726:77;34723:1;34716:88;34823:4;34820:1;34813:15;34847:4;34844:1;34837:15;34864:180;34912:77;34909:1;34902:88;35009:4;35006:1;34999:15;35033:4;35030:1;35023:15;35050:180;35098:77;35095:1;35088:88;35195:4;35192:1;35185:15;35219:4;35216:1;35209:15;35236:180;35284:77;35281:1;35274:88;35381:4;35378:1;35371:15;35405:4;35402:1;35395:15;35422:117;35531:1;35528;35521:12;35545:117;35654:1;35651;35644:12;35668:117;35777:1;35774;35767:12;35791:117;35900:1;35897;35890:12;35914:117;36023:1;36020;36013:12;36037:117;36146:1;36143;36136:12;36160:102;36201:6;36252:2;36248:7;36243:2;36236:5;36232:14;36228:28;36218:38;;36160:102;;;:::o;36268:94::-;36301:8;36349:5;36345:2;36341:14;36320:35;;36268:94;;;:::o;36368:178::-;36508:30;36504:1;36496:6;36492:14;36485:54;36368:178;:::o;36552:225::-;36692:34;36688:1;36680:6;36676:14;36669:58;36761:8;36756:2;36748:6;36744:15;36737:33;36552:225;:::o;36783:173::-;36923:25;36919:1;36911:6;36907:14;36900:49;36783:173;:::o;36962:226::-;37102:34;37098:1;37090:6;37086:14;37079:58;37171:9;37166:2;37158:6;37154:15;37147:34;36962:226;:::o;37194:176::-;37334:28;37330:1;37322:6;37318:14;37311:52;37194:176;:::o;37376:173::-;37516:25;37512:1;37504:6;37500:14;37493:49;37376:173;:::o;37555:155::-;37695:7;37691:1;37683:6;37679:14;37672:31;37555:155;:::o;37716:182::-;37856:34;37852:1;37844:6;37840:14;37833:58;37716:182;:::o;37904:229::-;38044:34;38040:1;38032:6;38028:14;38021:58;38113:12;38108:2;38100:6;38096:15;38089:37;37904:229;:::o;38139:234::-;38279:34;38275:1;38267:6;38263:14;38256:58;38348:17;38343:2;38335:6;38331:15;38324:42;38139:234;:::o;38379:180::-;38519:32;38515:1;38507:6;38503:14;38496:56;38379:180;:::o;38565:224::-;38705:34;38701:1;38693:6;38689:14;38682:58;38774:7;38769:2;38761:6;38757:15;38750:32;38565:224;:::o;38795:114::-;;:::o;38915:173::-;39055:25;39051:1;39043:6;39039:14;39032:49;38915:173;:::o;39094:179::-;39234:31;39230:1;39222:6;39218:14;39211:55;39094:179;:::o;39279:227::-;39419:34;39415:1;39407:6;39403:14;39396:58;39488:10;39483:2;39475:6;39471:15;39464:35;39279:227;:::o;39512:175::-;39652:27;39648:1;39640:6;39636:14;39629:51;39512:175;:::o;39693:122::-;39766:24;39784:5;39766:24;:::i;:::-;39759:5;39756:35;39746:63;;39805:1;39802;39795:12;39746:63;39693:122;:::o;39821:116::-;39891:21;39906:5;39891:21;:::i;:::-;39884:5;39881:32;39871:60;;39927:1;39924;39917:12;39871:60;39821:116;:::o;39943:122::-;40016:24;40034:5;40016:24;:::i;:::-;40009:5;40006:35;39996:63;;40055:1;40052;40045:12;39996:63;39943:122;:::o;40071:120::-;40143:23;40160:5;40143:23;:::i;:::-;40136:5;40133:34;40123:62;;40181:1;40178;40171:12;40123:62;40071:120;:::o;40197:122::-;40270:24;40288:5;40270:24;:::i;:::-;40263:5;40260:35;40250:63;;40309:1;40306;40299:12;40250:63;40197:122;:::o

Swarm Source

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