ETH Price: $3,441.14 (+2.06%)
Gas: 5 Gwei

Token

AlphaQueen (AQ)
 

Overview

Max Total Supply

3,000 AQ

Holders

1,215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AQ
0x5164370B3BA971474d10da1D409ce8872Cb8ca97
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:
AlphaQueen

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-06-26
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: AlphaQueen.sol


// creator : Jason Siauw
// contact : [email protected]

pragma solidity ^0.8.4;





contract AlphaQueen is ERC721A, Ownable {
    using SafeMath for uint256;
    address private wallet1;
    address private wallet2;
    address private wallet3;
    address private wallet4;
    address private wallet5;
    string public baseURI;
    uint256 public maxSupply;
    bytes32 public merkleRoot;
    bool public allowPreMint; 
    bool public allowPublicMint; 
    uint256 public price;
    mapping( address => uint256 ) public totalBuy;

    constructor(
        address wallet1_,
        address wallet2_,
        address wallet3_,
        address wallet4_,
        address wallet5_,
        bytes32 merkleRoot_,
        string memory baseURI_
    ) ERC721A("AlphaQueen", "AQ") {
        wallet1 = wallet1_ ;
        wallet2 = wallet2_ ;
        wallet3 = wallet3_ ;
        wallet4 = wallet4_ ;
        wallet5 = wallet5_ ;
        merkleRoot = merkleRoot_;
        maxSupply = 3000;
        price = 0.019 ether;

        baseURI = baseURI_;
        allowPreMint = false ;
        allowPublicMint = false ;
    }

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

    function isWhitelist(
        address adr,
        bytes32[] calldata proof,
        bytes32 root
    ) internal pure returns (bool) {
        return MerkleProof.verify(proof, root, leaf(adr));
    }

    function beTheFirstQueen(
        uint256 quantity,
        bytes32[] calldata proof
    ) external payable {
        require( isWhitelist(msg.sender, proof, merkleRoot), "AlphaQueen: not permission to whitelist mint" );
        require( allowPreMint, "AlphaQueen: not allow to mint now" );
        require( quantity > 0, "AlphaQueen: quantity must be bigger then 0" );
        require( quantity < 3, "AlphaQueen: quantity must be smaller then 3" );
        require( totalSupply() + quantity <= maxSupply, "AlphaQueen: out of max supply" );
        require( totalBuy[msg.sender] + quantity < 3, "AlphaQueen: out of balance" );

        if ( totalBuy[msg.sender] == 0 ) {
            if ( quantity == 2 ) {
                require( msg.value >= price , "AlphaQueen: not enough ether" );
            }
        }
        else if ( totalBuy[msg.sender] == 1 ) {
            require( msg.value >= price , "AlphaQueen: not enough ether" );
        }

        totalBuy[msg.sender] = totalBuy[msg.sender] + quantity ;
        _safeMint(msg.sender, quantity);
    }

    function beTheQueen(
        uint256 quantity
    ) external payable {
        require( allowPublicMint, "AlphaQueen: not allow to mint now" );
        require( quantity > 0, "AlphaQueen: quantity must be bigger then 0" );
        require( quantity < 3, "AlphaQueen: quantity must be smaller then 3" );
        require( totalSupply() + quantity <= maxSupply, "AlphaQueen: out of max supply" );
        require( totalBuy[msg.sender] + quantity < 3, "AlphaQueen: out of balance" );

        if ( totalBuy[msg.sender] == 0 ) {
            if ( quantity == 2 ) {
                require( msg.value >= price , "AlphaQueen: not enough ether" );
            }
        }
        else if ( totalBuy[msg.sender] == 1 ) {
            require( msg.value >= price , "AlphaQueen: not enough ether" );
        }
        totalBuy[msg.sender] = totalBuy[msg.sender] + quantity ;
        _safeMint(msg.sender, quantity);
    }

    function airdrop(
        address to,
        uint256 quantity
    ) external onlyOwner {
        require( totalSupply() < maxSupply, "AlphaQueen: out of max supply" );
        _safeMint(to, quantity);
    }

    function beTheDevQueen(
        uint256 quantity
    ) external onlyOwner {
        require( totalSupply() < maxSupply, "AlphaQueen: out of max supply" );
        _safeMint(msg.sender, quantity);
    }

    function flipAllowPreMint() public onlyOwner {
        allowPreMint = !allowPreMint;
    }

    function flipAllowPublicMint() public onlyOwner {
        allowPublicMint = !allowPublicMint;
    }

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

    function setPrice(
        uint256 newPrice
    ) external onlyOwner {
        price = newPrice ;
    }

    function setTokenURI(
        string memory newBaseURI
    ) external onlyOwner {
        baseURI = newBaseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "AlphaQueen: insufficient balance");
        uint256 payment1 = address(this).balance.div(100).mul(85);
        uint256 payment2 = address(this).balance.div(1000).mul(95);
        uint256 payment3 = address(this).balance.div(1000).mul(15);
        uint256 payment4 = address(this).balance.div(1000).mul(25);
        uint256 payment5 = address(this).balance.div(1000).mul(15);
        payable(wallet1).transfer(payment1);
        payable(wallet2).transfer(payment2);
        payable(wallet3).transfer(payment3);
        payable(wallet4).transfer(payment4);
        payable(wallet5).transfer(payment5);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1_","type":"address"},{"internalType":"address","name":"wallet2_","type":"address"},{"internalType":"address","name":"wallet3_","type":"address"},{"internalType":"address","name":"wallet4_","type":"address"},{"internalType":"address","name":"wallet5_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowPreMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"beTheDevQueen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"beTheFirstQueen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"beTheQueen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipAllowPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipAllowPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"price","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004758380380620047588339818101604052810190620000379190620004fb565b6040518060400160405280600a81526020017f416c706861517565656e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f41510000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200039f565b508060039080519060200190620000d49291906200039f565b50620000e5620002cc60201b60201c565b60008190555050506200010d62000101620002d160201b60201c565b620002d960201b60201c565b86600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601081905550610bb8600f81905550664380663abb800060128190555080600e9080519060200190620002889291906200039f565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555050505050505050620007c3565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003ad90620006a0565b90600052602060002090601f016020900481019282620003d157600085556200041d565b82601f10620003ec57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041c578251825591602001919060010190620003ff565b5b5090506200042c919062000430565b5090565b5b808211156200044b57600081600090555060010162000431565b5090565b6000620004666200046084620005f6565b620005cd565b9050828152602081018484840111156200048557620004846200076f565b5b620004928482856200066a565b509392505050565b600081519050620004ab816200078f565b92915050565b600081519050620004c281620007a9565b92915050565b600082601f830112620004e057620004df6200076a565b5b8151620004f28482602086016200044f565b91505092915050565b600080600080600080600060e0888a0312156200051d576200051c62000779565b5b60006200052d8a828b016200049a565b9750506020620005408a828b016200049a565b9650506040620005538a828b016200049a565b9550506060620005668a828b016200049a565b9450506080620005798a828b016200049a565b93505060a06200058c8a828b01620004b1565b92505060c088015167ffffffffffffffff811115620005b057620005af62000774565b5b620005be8a828b01620004c8565b91505092959891949750929550565b6000620005d9620005ec565b9050620005e78282620006d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200061457620006136200073b565b5b6200061f826200077e565b9050602081019050919050565b600062000639826200064a565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200068a5780820151818401526020810190506200066d565b838111156200069a576000848401525b50505050565b60006002820490506001821680620006b957607f821691505b60208210811415620006d057620006cf6200070c565b5b50919050565b620006e1826200077e565b810181811067ffffffffffffffff821117156200070357620007026200073b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200079a816200062c565b8114620007a657600080fd5b50565b620007b48162000640565b8114620007c057600080fd5b50565b613f8580620007d36000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106b7578063d5abeb01146106f4578063e0df5b6f1461071f578063e985e9c514610748578063f2fde38b14610785576101f9565b8063a035b1fe1461060f578063a22cb4651461063a578063b5a9f81914610663578063b88d4fde1461068e576101f9565b806391b7f5ed116100dc57806391b7f5ed14610574578063945d6c891461059d57806395d89b41146105b95780639edcc310146105e4576101f9565b8063715018a6146104e05780637cb64759146104f75780638ba4cc3c146105205780638da5cb5b14610549576101f9565b80632eb4a7ab116101905780635130d7341161015f5780635130d734146103d55780635c51f2e3146104125780636352211e1461043b5780636c0360eb1461047857806370a08231146104a3576101f9565b80632eb4a7ab1461034e578063321aeb41146103795780633ccfd60b1461039557806342842e0e146103ac576101f9565b806312798d6a116101cc57806312798d6a146102cc57806318160ddd146102e35780631c856b831461030e57806323b872dd14610325576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061315a565b6107ae565b6040516102329190613631565b60405180910390f35b34801561024757600080fd5b50610250610840565b60405161025d9190613667565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131fd565b6108d2565b60405161029a91906135ca565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906130ed565b61094e565b005b3480156102d857600080fd5b506102e1610a8f565b005b3480156102ef57600080fd5b506102f8610b37565b60405161030591906137c9565b60405180910390f35b34801561031a57600080fd5b50610323610b4e565b005b34801561033157600080fd5b5061034c60048036038101906103479190612fd7565b610bf6565b005b34801561035a57600080fd5b50610363610f1b565b604051610370919061364c565b60405180910390f35b610393600480360381019061038e91906131fd565b610f21565b005b3480156103a157600080fd5b506103aa6112a0565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612fd7565b61164e565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612f6a565b61166e565b60405161040991906137c9565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906131fd565b611686565b005b34801561044757600080fd5b50610462600480360381019061045d91906131fd565b61175a565b60405161046f91906135ca565b60405180910390f35b34801561048457600080fd5b5061048d61176c565b60405161049a9190613667565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190612f6a565b6117fa565b6040516104d791906137c9565b60405180910390f35b3480156104ec57600080fd5b506104f56118b3565b005b34801561050357600080fd5b5061051e6004803603810190610519919061312d565b61193b565b005b34801561052c57600080fd5b50610547600480360381019061054291906130ed565b6119c1565b005b34801561055557600080fd5b5061055e611a96565b60405161056b91906135ca565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906131fd565b611ac0565b005b6105b760048036038101906105b2919061322a565b611b46565b005b3480156105c557600080fd5b506105ce611f14565b6040516105db9190613667565b60405180910390f35b3480156105f057600080fd5b506105f9611fa6565b6040516106069190613631565b60405180910390f35b34801561061b57600080fd5b50610624611fb9565b60405161063191906137c9565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906130ad565b611fbf565b005b34801561066f57600080fd5b50610678612137565b6040516106859190613631565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061302a565b61214a565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131fd565b6121bd565b6040516106eb9190613667565b60405180910390f35b34801561070057600080fd5b5061070961225d565b60405161071691906137c9565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906131b4565b612263565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612f97565b6122f9565b60405161077c9190613631565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612f6a565b61238d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084f90613a64565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90613a64565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108dd82612485565b610913576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109598261175a565b90508073ffffffffffffffffffffffffffffffffffffffff1661097a6124e4565b73ffffffffffffffffffffffffffffffffffffffff16146109dd576109a6816109a16124e4565b6122f9565b6109dc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a976124ec565b73ffffffffffffffffffffffffffffffffffffffff16610ab5611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613709565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000610b416124f4565b6001546000540303905090565b610b566124ec565b73ffffffffffffffffffffffffffffffffffffffff16610b74611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613709565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000610c01826124f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c74846125c7565b91509150610c8a8187610c856124e4565b6125e9565b610cd657610c9f86610c9a6124e4565b6122f9565b610cd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4a868686600161262d565b8015610d5557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e2385610dff888887612633565b7c02000000000000000000000000000000000000000000000000000000001761265b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eab576000600185019050600060046000838152602001908152602001600020541415610ea9576000548114610ea8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f138686866001612686565b505050505050565b60105481565b601160019054906101000a900460ff16610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613729565b60405180910390fd5b60008111610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa906136e9565b60405180910390fd5b60038110610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906136c9565b60405180910390fd5b600f5481611002610b37565b61100c91906138c3565b111561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613749565b60405180910390fd5b600381601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109a91906138c3565b106110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613769565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561117657600281141561117157601254341015611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906137a9565b60405180910390fd5b5b611205565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561120457601254341015611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906137a9565b60405180910390fd5b5b5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125091906138c3565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061129d338261268c565b50565b6112a86124ec565b73ffffffffffffffffffffffffffffffffffffffff166112c6611a96565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613709565b60405180910390fd5b6000471161135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613689565b60405180910390fd5b6000611388605561137a6064476126aa90919063ffffffff16565b6126c090919063ffffffff16565b905060006113b4605f6113a66103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b905060006113e0600f6113d26103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b9050600061140c60196113fe6103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b90506000611438600f61142a6103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f193505050501580156114a2573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561150b573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611574573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156115dd573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611646573d6000803e3d6000fd5b505050505050565b6116698383836040518060200160405280600081525061214a565b505050565b60136020528060005260406000206000915090505481565b61168e6124ec565b73ffffffffffffffffffffffffffffffffffffffff166116ac611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613709565b60405180910390fd5b600f5461170d610b37565b1061174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490613749565b60405180910390fd5b611757338261268c565b50565b6000611765826124f9565b9050919050565b600e805461177990613a64565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590613a64565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611862576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118bb6124ec565b73ffffffffffffffffffffffffffffffffffffffff166118d9611a96565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613709565b60405180910390fd5b61193960006126d6565b565b6119436124ec565b73ffffffffffffffffffffffffffffffffffffffff16611961611a96565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90613709565b60405180910390fd5b8060108190555050565b6119c96124ec565b73ffffffffffffffffffffffffffffffffffffffff166119e7611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613709565b60405180910390fd5b600f54611a48610b37565b10611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90613749565b60405180910390fd5b611a92828261268c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ac86124ec565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613709565b60405180910390fd5b8060128190555050565b611b5433838360105461279c565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613789565b60405180910390fd5b601160009054906101000a900460ff16611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613729565b60405180910390fd5b60008311611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906136e9565b60405180910390fd5b60038310611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906136c9565b60405180910390fd5b600f5483611c74610b37565b611c7e91906138c3565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613749565b60405180910390fd5b600383601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d0c91906138c3565b10611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390613769565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611de8576002831415611de357601254341015611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd9906137a9565b60405180910390fd5b5b611e77565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611e7657601254341015611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c906137a9565b60405180910390fd5b5b5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec291906138c3565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f0f338461268c565b505050565b606060038054611f2390613a64565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f90613a64565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b60125481565b611fc76124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120396124e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e66124e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212b9190613631565b60405180910390a35050565b601160009054906101000a900460ff1681565b612155848484610bf6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b757612180848484846127fc565b6121b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606121c882612485565b6121fe576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600e805461220d90613a64565b9050141561222a5760405180602001604052806000815250612256565b600e6122358361295c565b60405160200161224692919061359b565b6040516020818303038152906040525b9050919050565b600f5481565b61226b6124ec565b73ffffffffffffffffffffffffffffffffffffffff16612289611a96565b73ffffffffffffffffffffffffffffffffffffffff16146122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613709565b60405180910390fd5b80600e90805190602001906122f5929190612d13565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123956124ec565b73ffffffffffffffffffffffffffffffffffffffff166123b3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612470906136a9565b60405180910390fd5b612482816126d6565b50565b6000816124906124f4565b1115801561249f575060005482105b80156124dd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b600080829050806125086124f4565b116125905760005481101561258f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561258d575b6000811415612583576004600083600190039350838152602001908152602001600020549050612558565b80925050506125c2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861264a8686846129b6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126a68282604051806020016040528060008152506129bf565b5050565b600081836126b89190613919565b905092915050565b600081836126ce919061394a565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127f2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050836127ed88612a5c565b612a8c565b9050949350505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128226124e4565b8786866040518563ffffffff1660e01b815260040161284494939291906135e5565b602060405180830381600087803b15801561285e57600080fd5b505af192505050801561288f57506040513d601f19601f8201168201806040525081019061288c9190613187565b60015b612909573d80600081146128bf576040519150601f19603f3d011682016040523d82523d6000602084013e6128c4565b606091505b50600081511415612901576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156129a257600183039250600a81066030018353600a81049050612982565b508181036020830392508083525050919050565b60009392505050565b6129c98383612aa3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a5757600080549050600083820390505b612a0960008683806001019450866127fc565b612a3f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129f6578160005414612a5457600080fd5b50505b505050565b600081604051602001612a6f9190613580565b604051602081830303815290604052805190602001209050919050565b600082612a998584612c77565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b10576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612b4b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b58600084838561262d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bcf83612bc06000866000612633565b612bc985612cec565b1761265b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bf357806000819055505050612c726000848385612686565b505050565b60008082905060005b8451811015612ce1576000858281518110612c9e57612c9d613bc1565b5b60200260200101519050808311612cc057612cb98382612cfc565b9250612ccd565b612cca8184612cfc565b92505b508080612cd990613ac7565b915050612c80565b508091505092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612d1f90613a64565b90600052602060002090601f016020900481019282612d415760008555612d88565b82601f10612d5a57805160ff1916838001178555612d88565b82800160010185558215612d88579182015b82811115612d87578251825591602001919060010190612d6c565b5b509050612d959190612d99565b5090565b5b80821115612db2576000816000905550600101612d9a565b5090565b6000612dc9612dc484613809565b6137e4565b905082815260208101848484011115612de557612de4613c2e565b5b612df0848285613a22565b509392505050565b6000612e0b612e068461383a565b6137e4565b905082815260208101848484011115612e2757612e26613c2e565b5b612e32848285613a22565b509392505050565b600081359050612e4981613edc565b92915050565b60008083601f840112612e6557612e64613c24565b5b8235905067ffffffffffffffff811115612e8257612e81613c1f565b5b602083019150836020820283011115612e9e57612e9d613c29565b5b9250929050565b600081359050612eb481613ef3565b92915050565b600081359050612ec981613f0a565b92915050565b600081359050612ede81613f21565b92915050565b600081519050612ef381613f21565b92915050565b600082601f830112612f0e57612f0d613c24565b5b8135612f1e848260208601612db6565b91505092915050565b600082601f830112612f3c57612f3b613c24565b5b8135612f4c848260208601612df8565b91505092915050565b600081359050612f6481613f38565b92915050565b600060208284031215612f8057612f7f613c38565b5b6000612f8e84828501612e3a565b91505092915050565b60008060408385031215612fae57612fad613c38565b5b6000612fbc85828601612e3a565b9250506020612fcd85828601612e3a565b9150509250929050565b600080600060608486031215612ff057612fef613c38565b5b6000612ffe86828701612e3a565b935050602061300f86828701612e3a565b925050604061302086828701612f55565b9150509250925092565b6000806000806080858703121561304457613043613c38565b5b600061305287828801612e3a565b945050602061306387828801612e3a565b935050604061307487828801612f55565b925050606085013567ffffffffffffffff81111561309557613094613c33565b5b6130a187828801612ef9565b91505092959194509250565b600080604083850312156130c4576130c3613c38565b5b60006130d285828601612e3a565b92505060206130e385828601612ea5565b9150509250929050565b6000806040838503121561310457613103613c38565b5b600061311285828601612e3a565b925050602061312385828601612f55565b9150509250929050565b60006020828403121561314357613142613c38565b5b600061315184828501612eba565b91505092915050565b6000602082840312156131705761316f613c38565b5b600061317e84828501612ecf565b91505092915050565b60006020828403121561319d5761319c613c38565b5b60006131ab84828501612ee4565b91505092915050565b6000602082840312156131ca576131c9613c38565b5b600082013567ffffffffffffffff8111156131e8576131e7613c33565b5b6131f484828501612f27565b91505092915050565b60006020828403121561321357613212613c38565b5b600061322184828501612f55565b91505092915050565b60008060006040848603121561324357613242613c38565b5b600061325186828701612f55565b935050602084013567ffffffffffffffff81111561327257613271613c33565b5b61327e86828701612e4f565b92509250509250925092565b613293816139a4565b82525050565b6132aa6132a5826139a4565b613b10565b82525050565b6132b9816139b6565b82525050565b6132c8816139c2565b82525050565b60006132d982613880565b6132e38185613896565b93506132f3818560208601613a31565b6132fc81613c3d565b840191505092915050565b60006133128261388b565b61331c81856138a7565b935061332c818560208601613a31565b61333581613c3d565b840191505092915050565b600061334b8261388b565b61335581856138b8565b9350613365818560208601613a31565b80840191505092915050565b6000815461337e81613a64565b61338881866138b8565b945060018216600081146133a357600181146133b4576133e7565b60ff198316865281860193506133e7565b6133bd8561386b565b60005b838110156133df578154818901526001820191506020810190506133c0565b838801955050505b50505092915050565b60006133fd6020836138a7565b915061340882613c5b565b602082019050919050565b60006134206026836138a7565b915061342b82613c84565b604082019050919050565b6000613443602b836138a7565b915061344e82613cd3565b604082019050919050565b6000613466602a836138a7565b915061347182613d22565b604082019050919050565b60006134896005836138b8565b915061349482613d71565b600582019050919050565b60006134ac6020836138a7565b91506134b782613d9a565b602082019050919050565b60006134cf6021836138a7565b91506134da82613dc3565b604082019050919050565b60006134f2601d836138a7565b91506134fd82613e12565b602082019050919050565b6000613515601a836138a7565b915061352082613e3b565b602082019050919050565b6000613538602c836138a7565b915061354382613e64565b604082019050919050565b600061355b601c836138a7565b915061356682613eb3565b602082019050919050565b61357a81613a18565b82525050565b600061358c8284613299565b60148201915081905092915050565b60006135a78285613371565b91506135b38284613340565b91506135be8261347c565b91508190509392505050565b60006020820190506135df600083018461328a565b92915050565b60006080820190506135fa600083018761328a565b613607602083018661328a565b6136146040830185613571565b818103606083015261362681846132ce565b905095945050505050565b600060208201905061364660008301846132b0565b92915050565b600060208201905061366160008301846132bf565b92915050565b600060208201905081810360008301526136818184613307565b905092915050565b600060208201905081810360008301526136a2816133f0565b9050919050565b600060208201905081810360008301526136c281613413565b9050919050565b600060208201905081810360008301526136e281613436565b9050919050565b6000602082019050818103600083015261370281613459565b9050919050565b600060208201905081810360008301526137228161349f565b9050919050565b60006020820190508181036000830152613742816134c2565b9050919050565b60006020820190508181036000830152613762816134e5565b9050919050565b6000602082019050818103600083015261378281613508565b9050919050565b600060208201905081810360008301526137a28161352b565b9050919050565b600060208201905081810360008301526137c28161354e565b9050919050565b60006020820190506137de6000830184613571565b92915050565b60006137ee6137ff565b90506137fa8282613a96565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613bf0565b5b61382d82613c3d565b9050602081019050919050565b600067ffffffffffffffff82111561385557613854613bf0565b5b61385e82613c3d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ce82613a18565b91506138d983613a18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390e5761390d613b34565b5b828201905092915050565b600061392482613a18565b915061392f83613a18565b92508261393f5761393e613b63565b5b828204905092915050565b600061395582613a18565b915061396083613a18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399957613998613b34565b5b828202905092915050565b60006139af826139f8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a4f578082015181840152602081019050613a34565b83811115613a5e576000848401525b50505050565b60006002820490506001821680613a7c57607f821691505b60208210811415613a9057613a8f613b92565b5b50919050565b613a9f82613c3d565b810181811067ffffffffffffffff82111715613abe57613abd613bf0565b5b80604052505050565b6000613ad282613a18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0557613b04613b34565b5b600182019050919050565b6000613b1b82613b22565b9050919050565b6000613b2d82613c4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c706861517565656e3a20696e73756666696369656e742062616c616e6365600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a207175616e74697479206d75737420626520736d6160008201527f6c6c6572207468656e2033000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a207175616e74697479206d7573742062652062696760008201527f676572207468656e203000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c706861517565656e3a206e6f7420616c6c6f7720746f206d696e74206e6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a206f7574206f66206d617820737570706c79000000600082015250565b7f416c706861517565656e3a206f7574206f662062616c616e6365000000000000600082015250565b7f416c706861517565656e3a206e6f74207065726d697373696f6e20746f20776860008201527f6974656c697374206d696e740000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a206e6f7420656e6f75676820657468657200000000600082015250565b613ee5816139a4565b8114613ef057600080fd5b50565b613efc816139b6565b8114613f0757600080fd5b50565b613f13816139c2565b8114613f1e57600080fd5b50565b613f2a816139cc565b8114613f3557600080fd5b50565b613f4181613a18565b8114613f4c57600080fd5b5056fea264697066735822122012788e95e5c95d6e31762802b6d1ad790f7215ce8029eabdefe216e9e7f4e27264736f6c6343000807003300000000000000000000000012e9f511b14056bbe2cf5fd9eb1593d5b58ac9c000000000000000000000000054009c79fcca9fb664811d476385c90ea3287a260000000000000000000000000a3aaf8d4cc435a52f57e1d5708f1b2db8c4fe3d00000000000000000000000053f2f6a662e374bacdaef47fe220b4a52d8c8a2900000000000000000000000049f32999315e8c2f081fdccc2c0909a67cffb2529f2ef23a48d5f3ffb6110a0568be128c800df1f2b1f4313edc8c034df41b1f2800000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52417155753536544c4e6d7443376b465457316241444e726b7a365263586471356752736f446664706f44662f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106b7578063d5abeb01146106f4578063e0df5b6f1461071f578063e985e9c514610748578063f2fde38b14610785576101f9565b8063a035b1fe1461060f578063a22cb4651461063a578063b5a9f81914610663578063b88d4fde1461068e576101f9565b806391b7f5ed116100dc57806391b7f5ed14610574578063945d6c891461059d57806395d89b41146105b95780639edcc310146105e4576101f9565b8063715018a6146104e05780637cb64759146104f75780638ba4cc3c146105205780638da5cb5b14610549576101f9565b80632eb4a7ab116101905780635130d7341161015f5780635130d734146103d55780635c51f2e3146104125780636352211e1461043b5780636c0360eb1461047857806370a08231146104a3576101f9565b80632eb4a7ab1461034e578063321aeb41146103795780633ccfd60b1461039557806342842e0e146103ac576101f9565b806312798d6a116101cc57806312798d6a146102cc57806318160ddd146102e35780631c856b831461030e57806323b872dd14610325576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061315a565b6107ae565b6040516102329190613631565b60405180910390f35b34801561024757600080fd5b50610250610840565b60405161025d9190613667565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131fd565b6108d2565b60405161029a91906135ca565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906130ed565b61094e565b005b3480156102d857600080fd5b506102e1610a8f565b005b3480156102ef57600080fd5b506102f8610b37565b60405161030591906137c9565b60405180910390f35b34801561031a57600080fd5b50610323610b4e565b005b34801561033157600080fd5b5061034c60048036038101906103479190612fd7565b610bf6565b005b34801561035a57600080fd5b50610363610f1b565b604051610370919061364c565b60405180910390f35b610393600480360381019061038e91906131fd565b610f21565b005b3480156103a157600080fd5b506103aa6112a0565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612fd7565b61164e565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612f6a565b61166e565b60405161040991906137c9565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906131fd565b611686565b005b34801561044757600080fd5b50610462600480360381019061045d91906131fd565b61175a565b60405161046f91906135ca565b60405180910390f35b34801561048457600080fd5b5061048d61176c565b60405161049a9190613667565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190612f6a565b6117fa565b6040516104d791906137c9565b60405180910390f35b3480156104ec57600080fd5b506104f56118b3565b005b34801561050357600080fd5b5061051e6004803603810190610519919061312d565b61193b565b005b34801561052c57600080fd5b50610547600480360381019061054291906130ed565b6119c1565b005b34801561055557600080fd5b5061055e611a96565b60405161056b91906135ca565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906131fd565b611ac0565b005b6105b760048036038101906105b2919061322a565b611b46565b005b3480156105c557600080fd5b506105ce611f14565b6040516105db9190613667565b60405180910390f35b3480156105f057600080fd5b506105f9611fa6565b6040516106069190613631565b60405180910390f35b34801561061b57600080fd5b50610624611fb9565b60405161063191906137c9565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906130ad565b611fbf565b005b34801561066f57600080fd5b50610678612137565b6040516106859190613631565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061302a565b61214a565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131fd565b6121bd565b6040516106eb9190613667565b60405180910390f35b34801561070057600080fd5b5061070961225d565b60405161071691906137c9565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906131b4565b612263565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612f97565b6122f9565b60405161077c9190613631565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612f6a565b61238d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084f90613a64565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90613a64565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108dd82612485565b610913576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109598261175a565b90508073ffffffffffffffffffffffffffffffffffffffff1661097a6124e4565b73ffffffffffffffffffffffffffffffffffffffff16146109dd576109a6816109a16124e4565b6122f9565b6109dc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a976124ec565b73ffffffffffffffffffffffffffffffffffffffff16610ab5611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613709565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000610b416124f4565b6001546000540303905090565b610b566124ec565b73ffffffffffffffffffffffffffffffffffffffff16610b74611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613709565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000610c01826124f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c74846125c7565b91509150610c8a8187610c856124e4565b6125e9565b610cd657610c9f86610c9a6124e4565b6122f9565b610cd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4a868686600161262d565b8015610d5557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e2385610dff888887612633565b7c02000000000000000000000000000000000000000000000000000000001761265b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eab576000600185019050600060046000838152602001908152602001600020541415610ea9576000548114610ea8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f138686866001612686565b505050505050565b60105481565b601160019054906101000a900460ff16610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613729565b60405180910390fd5b60008111610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa906136e9565b60405180910390fd5b60038110610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906136c9565b60405180910390fd5b600f5481611002610b37565b61100c91906138c3565b111561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613749565b60405180910390fd5b600381601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109a91906138c3565b106110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613769565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561117657600281141561117157601254341015611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906137a9565b60405180910390fd5b5b611205565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561120457601254341015611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906137a9565b60405180910390fd5b5b5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125091906138c3565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061129d338261268c565b50565b6112a86124ec565b73ffffffffffffffffffffffffffffffffffffffff166112c6611a96565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613709565b60405180910390fd5b6000471161135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613689565b60405180910390fd5b6000611388605561137a6064476126aa90919063ffffffff16565b6126c090919063ffffffff16565b905060006113b4605f6113a66103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b905060006113e0600f6113d26103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b9050600061140c60196113fe6103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b90506000611438600f61142a6103e8476126aa90919063ffffffff16565b6126c090919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f193505050501580156114a2573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561150b573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611574573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156115dd573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611646573d6000803e3d6000fd5b505050505050565b6116698383836040518060200160405280600081525061214a565b505050565b60136020528060005260406000206000915090505481565b61168e6124ec565b73ffffffffffffffffffffffffffffffffffffffff166116ac611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613709565b60405180910390fd5b600f5461170d610b37565b1061174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490613749565b60405180910390fd5b611757338261268c565b50565b6000611765826124f9565b9050919050565b600e805461177990613a64565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590613a64565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611862576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118bb6124ec565b73ffffffffffffffffffffffffffffffffffffffff166118d9611a96565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613709565b60405180910390fd5b61193960006126d6565b565b6119436124ec565b73ffffffffffffffffffffffffffffffffffffffff16611961611a96565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90613709565b60405180910390fd5b8060108190555050565b6119c96124ec565b73ffffffffffffffffffffffffffffffffffffffff166119e7611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613709565b60405180910390fd5b600f54611a48610b37565b10611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90613749565b60405180910390fd5b611a92828261268c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ac86124ec565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613709565b60405180910390fd5b8060128190555050565b611b5433838360105461279c565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613789565b60405180910390fd5b601160009054906101000a900460ff16611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613729565b60405180910390fd5b60008311611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906136e9565b60405180910390fd5b60038310611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906136c9565b60405180910390fd5b600f5483611c74610b37565b611c7e91906138c3565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613749565b60405180910390fd5b600383601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d0c91906138c3565b10611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390613769565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611de8576002831415611de357601254341015611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd9906137a9565b60405180910390fd5b5b611e77565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611e7657601254341015611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c906137a9565b60405180910390fd5b5b5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec291906138c3565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f0f338461268c565b505050565b606060038054611f2390613a64565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f90613a64565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b60125481565b611fc76124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120396124e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e66124e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212b9190613631565b60405180910390a35050565b601160009054906101000a900460ff1681565b612155848484610bf6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b757612180848484846127fc565b6121b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606121c882612485565b6121fe576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600e805461220d90613a64565b9050141561222a5760405180602001604052806000815250612256565b600e6122358361295c565b60405160200161224692919061359b565b6040516020818303038152906040525b9050919050565b600f5481565b61226b6124ec565b73ffffffffffffffffffffffffffffffffffffffff16612289611a96565b73ffffffffffffffffffffffffffffffffffffffff16146122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613709565b60405180910390fd5b80600e90805190602001906122f5929190612d13565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123956124ec565b73ffffffffffffffffffffffffffffffffffffffff166123b3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612470906136a9565b60405180910390fd5b612482816126d6565b50565b6000816124906124f4565b1115801561249f575060005482105b80156124dd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b600080829050806125086124f4565b116125905760005481101561258f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561258d575b6000811415612583576004600083600190039350838152602001908152602001600020549050612558565b80925050506125c2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861264a8686846129b6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126a68282604051806020016040528060008152506129bf565b5050565b600081836126b89190613919565b905092915050565b600081836126ce919061394a565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127f2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050836127ed88612a5c565b612a8c565b9050949350505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128226124e4565b8786866040518563ffffffff1660e01b815260040161284494939291906135e5565b602060405180830381600087803b15801561285e57600080fd5b505af192505050801561288f57506040513d601f19601f8201168201806040525081019061288c9190613187565b60015b612909573d80600081146128bf576040519150601f19603f3d011682016040523d82523d6000602084013e6128c4565b606091505b50600081511415612901576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156129a257600183039250600a81066030018353600a81049050612982565b508181036020830392508083525050919050565b60009392505050565b6129c98383612aa3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a5757600080549050600083820390505b612a0960008683806001019450866127fc565b612a3f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129f6578160005414612a5457600080fd5b50505b505050565b600081604051602001612a6f9190613580565b604051602081830303815290604052805190602001209050919050565b600082612a998584612c77565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b10576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612b4b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b58600084838561262d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bcf83612bc06000866000612633565b612bc985612cec565b1761265b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bf357806000819055505050612c726000848385612686565b505050565b60008082905060005b8451811015612ce1576000858281518110612c9e57612c9d613bc1565b5b60200260200101519050808311612cc057612cb98382612cfc565b9250612ccd565b612cca8184612cfc565b92505b508080612cd990613ac7565b915050612c80565b508091505092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612d1f90613a64565b90600052602060002090601f016020900481019282612d415760008555612d88565b82601f10612d5a57805160ff1916838001178555612d88565b82800160010185558215612d88579182015b82811115612d87578251825591602001919060010190612d6c565b5b509050612d959190612d99565b5090565b5b80821115612db2576000816000905550600101612d9a565b5090565b6000612dc9612dc484613809565b6137e4565b905082815260208101848484011115612de557612de4613c2e565b5b612df0848285613a22565b509392505050565b6000612e0b612e068461383a565b6137e4565b905082815260208101848484011115612e2757612e26613c2e565b5b612e32848285613a22565b509392505050565b600081359050612e4981613edc565b92915050565b60008083601f840112612e6557612e64613c24565b5b8235905067ffffffffffffffff811115612e8257612e81613c1f565b5b602083019150836020820283011115612e9e57612e9d613c29565b5b9250929050565b600081359050612eb481613ef3565b92915050565b600081359050612ec981613f0a565b92915050565b600081359050612ede81613f21565b92915050565b600081519050612ef381613f21565b92915050565b600082601f830112612f0e57612f0d613c24565b5b8135612f1e848260208601612db6565b91505092915050565b600082601f830112612f3c57612f3b613c24565b5b8135612f4c848260208601612df8565b91505092915050565b600081359050612f6481613f38565b92915050565b600060208284031215612f8057612f7f613c38565b5b6000612f8e84828501612e3a565b91505092915050565b60008060408385031215612fae57612fad613c38565b5b6000612fbc85828601612e3a565b9250506020612fcd85828601612e3a565b9150509250929050565b600080600060608486031215612ff057612fef613c38565b5b6000612ffe86828701612e3a565b935050602061300f86828701612e3a565b925050604061302086828701612f55565b9150509250925092565b6000806000806080858703121561304457613043613c38565b5b600061305287828801612e3a565b945050602061306387828801612e3a565b935050604061307487828801612f55565b925050606085013567ffffffffffffffff81111561309557613094613c33565b5b6130a187828801612ef9565b91505092959194509250565b600080604083850312156130c4576130c3613c38565b5b60006130d285828601612e3a565b92505060206130e385828601612ea5565b9150509250929050565b6000806040838503121561310457613103613c38565b5b600061311285828601612e3a565b925050602061312385828601612f55565b9150509250929050565b60006020828403121561314357613142613c38565b5b600061315184828501612eba565b91505092915050565b6000602082840312156131705761316f613c38565b5b600061317e84828501612ecf565b91505092915050565b60006020828403121561319d5761319c613c38565b5b60006131ab84828501612ee4565b91505092915050565b6000602082840312156131ca576131c9613c38565b5b600082013567ffffffffffffffff8111156131e8576131e7613c33565b5b6131f484828501612f27565b91505092915050565b60006020828403121561321357613212613c38565b5b600061322184828501612f55565b91505092915050565b60008060006040848603121561324357613242613c38565b5b600061325186828701612f55565b935050602084013567ffffffffffffffff81111561327257613271613c33565b5b61327e86828701612e4f565b92509250509250925092565b613293816139a4565b82525050565b6132aa6132a5826139a4565b613b10565b82525050565b6132b9816139b6565b82525050565b6132c8816139c2565b82525050565b60006132d982613880565b6132e38185613896565b93506132f3818560208601613a31565b6132fc81613c3d565b840191505092915050565b60006133128261388b565b61331c81856138a7565b935061332c818560208601613a31565b61333581613c3d565b840191505092915050565b600061334b8261388b565b61335581856138b8565b9350613365818560208601613a31565b80840191505092915050565b6000815461337e81613a64565b61338881866138b8565b945060018216600081146133a357600181146133b4576133e7565b60ff198316865281860193506133e7565b6133bd8561386b565b60005b838110156133df578154818901526001820191506020810190506133c0565b838801955050505b50505092915050565b60006133fd6020836138a7565b915061340882613c5b565b602082019050919050565b60006134206026836138a7565b915061342b82613c84565b604082019050919050565b6000613443602b836138a7565b915061344e82613cd3565b604082019050919050565b6000613466602a836138a7565b915061347182613d22565b604082019050919050565b60006134896005836138b8565b915061349482613d71565b600582019050919050565b60006134ac6020836138a7565b91506134b782613d9a565b602082019050919050565b60006134cf6021836138a7565b91506134da82613dc3565b604082019050919050565b60006134f2601d836138a7565b91506134fd82613e12565b602082019050919050565b6000613515601a836138a7565b915061352082613e3b565b602082019050919050565b6000613538602c836138a7565b915061354382613e64565b604082019050919050565b600061355b601c836138a7565b915061356682613eb3565b602082019050919050565b61357a81613a18565b82525050565b600061358c8284613299565b60148201915081905092915050565b60006135a78285613371565b91506135b38284613340565b91506135be8261347c565b91508190509392505050565b60006020820190506135df600083018461328a565b92915050565b60006080820190506135fa600083018761328a565b613607602083018661328a565b6136146040830185613571565b818103606083015261362681846132ce565b905095945050505050565b600060208201905061364660008301846132b0565b92915050565b600060208201905061366160008301846132bf565b92915050565b600060208201905081810360008301526136818184613307565b905092915050565b600060208201905081810360008301526136a2816133f0565b9050919050565b600060208201905081810360008301526136c281613413565b9050919050565b600060208201905081810360008301526136e281613436565b9050919050565b6000602082019050818103600083015261370281613459565b9050919050565b600060208201905081810360008301526137228161349f565b9050919050565b60006020820190508181036000830152613742816134c2565b9050919050565b60006020820190508181036000830152613762816134e5565b9050919050565b6000602082019050818103600083015261378281613508565b9050919050565b600060208201905081810360008301526137a28161352b565b9050919050565b600060208201905081810360008301526137c28161354e565b9050919050565b60006020820190506137de6000830184613571565b92915050565b60006137ee6137ff565b90506137fa8282613a96565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613bf0565b5b61382d82613c3d565b9050602081019050919050565b600067ffffffffffffffff82111561385557613854613bf0565b5b61385e82613c3d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ce82613a18565b91506138d983613a18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390e5761390d613b34565b5b828201905092915050565b600061392482613a18565b915061392f83613a18565b92508261393f5761393e613b63565b5b828204905092915050565b600061395582613a18565b915061396083613a18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399957613998613b34565b5b828202905092915050565b60006139af826139f8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a4f578082015181840152602081019050613a34565b83811115613a5e576000848401525b50505050565b60006002820490506001821680613a7c57607f821691505b60208210811415613a9057613a8f613b92565b5b50919050565b613a9f82613c3d565b810181811067ffffffffffffffff82111715613abe57613abd613bf0565b5b80604052505050565b6000613ad282613a18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0557613b04613b34565b5b600182019050919050565b6000613b1b82613b22565b9050919050565b6000613b2d82613c4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c706861517565656e3a20696e73756666696369656e742062616c616e6365600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a207175616e74697479206d75737420626520736d6160008201527f6c6c6572207468656e2033000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a207175616e74697479206d7573742062652062696760008201527f676572207468656e203000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c706861517565656e3a206e6f7420616c6c6f7720746f206d696e74206e6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a206f7574206f66206d617820737570706c79000000600082015250565b7f416c706861517565656e3a206f7574206f662062616c616e6365000000000000600082015250565b7f416c706861517565656e3a206e6f74207065726d697373696f6e20746f20776860008201527f6974656c697374206d696e740000000000000000000000000000000000000000602082015250565b7f416c706861517565656e3a206e6f7420656e6f75676820657468657200000000600082015250565b613ee5816139a4565b8114613ef057600080fd5b50565b613efc816139b6565b8114613f0757600080fd5b50565b613f13816139c2565b8114613f1e57600080fd5b50565b613f2a816139cc565b8114613f3557600080fd5b50565b613f4181613a18565b8114613f4c57600080fd5b5056fea264697066735822122012788e95e5c95d6e31762802b6d1ad790f7215ce8029eabdefe216e9e7f4e27264736f6c63430008070033

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

00000000000000000000000012e9f511b14056bbe2cf5fd9eb1593d5b58ac9c000000000000000000000000054009c79fcca9fb664811d476385c90ea3287a260000000000000000000000000a3aaf8d4cc435a52f57e1d5708f1b2db8c4fe3d00000000000000000000000053f2f6a662e374bacdaef47fe220b4a52d8c8a2900000000000000000000000049f32999315e8c2f081fdccc2c0909a67cffb2529f2ef23a48d5f3ffb6110a0568be128c800df1f2b1f4313edc8c034df41b1f2800000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52417155753536544c4e6d7443376b465457316241444e726b7a365263586471356752736f446664706f44662f00000000000000000000

-----Decoded View---------------
Arg [0] : wallet1_ (address): 0x12E9f511b14056bBE2cF5fd9eb1593d5b58Ac9C0
Arg [1] : wallet2_ (address): 0x54009C79fcca9fb664811D476385c90Ea3287a26
Arg [2] : wallet3_ (address): 0x0a3Aaf8d4CC435A52f57e1d5708f1b2DB8c4Fe3d
Arg [3] : wallet4_ (address): 0x53f2F6a662E374bACDAEf47Fe220B4A52d8C8A29
Arg [4] : wallet5_ (address): 0x49f32999315e8C2f081fDccC2C0909a67CFFb252
Arg [5] : merkleRoot_ (bytes32): 0x9f2ef23a48d5f3ffb6110a0568be128c800df1f2b1f4313edc8c034df41b1f28
Arg [6] : baseURI_ (string): ipfs://QmRAqUu56TLNmtC7kFTW1bADNrkz6RcXdq5gRsoDfdpoDf/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000012e9f511b14056bbe2cf5fd9eb1593d5b58ac9c0
Arg [1] : 00000000000000000000000054009c79fcca9fb664811d476385c90ea3287a26
Arg [2] : 0000000000000000000000000a3aaf8d4cc435a52f57e1d5708f1b2db8c4fe3d
Arg [3] : 00000000000000000000000053f2f6a662e374bacdaef47fe220b4a52d8c8a29
Arg [4] : 00000000000000000000000049f32999315e8c2f081fdccc2c0909a67cffb252
Arg [5] : 9f2ef23a48d5f3ffb6110a0568be128c800df1f2b1f4313edc8c034df41b1f28
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d52417155753536544c4e6d7443376b465457316241444e
Arg [9] : 726b7a365263586471356752736f446664706f44662f00000000000000000000


Deployed Bytecode Sourcemap

57698:5468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27431:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33078:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35024:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34572:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61688:101;;;;;;;;;;;;;:::i;:::-;;26485:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61588:92;;;;;;;;;;;;;:::i;:::-;;44289:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57987:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60218:927;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62463:700;;;;;;;;;;;;;:::i;:::-;;35914:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58113:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61374:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32867:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57928:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28110:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12022:103;;;;;;;;;;;;;:::i;:::-;;61797:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61153:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11371:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61929:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59132:1078;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33247:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58051:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58086:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35300:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58019:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36170:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62173:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57956:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62044:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35679:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12280:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27431:615;27516:4;27831:10;27816:25;;:11;:25;;;;:102;;;;27908:10;27893:25;;:11;:25;;;;27816:102;:179;;;;27985:10;27970:25;;:11;:25;;;;27816:179;27796:199;;27431:615;;;:::o;33078:100::-;33132:13;33165:5;33158:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078:100;:::o;35024:204::-;35092:7;35117:16;35125:7;35117;:16::i;:::-;35112:64;;35142:34;;;;;;;;;;;;;;35112:64;35196:15;:24;35212:7;35196:24;;;;;;;;;;;;;;;;;;;;;35189:31;;35024:204;;;:::o;34572:386::-;34645:13;34661:16;34669:7;34661;:16::i;:::-;34645:32;;34717:5;34694:28;;:19;:17;:19::i;:::-;:28;;;34690:175;;34742:44;34759:5;34766:19;:17;:19::i;:::-;34742:16;:44::i;:::-;34737:128;;34814:35;;;;;;;;;;;;;;34737:128;34690:175;34904:2;34877:15;:24;34893:7;34877:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34942:7;34938:2;34922:28;;34931:5;34922:28;;;;;;;;;;;;34634:324;34572:386;;:::o;61688:101::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61766:15:::1;;;;;;;;;;;61765:16;61747:15;;:34;;;;;;;;;;;;;;;;;;61688:101::o:0;26485:315::-;26538:7;26766:15;:13;:15::i;:::-;26751:12;;26735:13;;:28;:46;26728:53;;26485:315;:::o;61588:92::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61660:12:::1;;;;;;;;;;;61659:13;61644:12;;:28;;;;;;;;;;;;;;;;;;61588:92::o:0;44289:2800::-;44423:27;44453;44472:7;44453:18;:27::i;:::-;44423:57;;44538:4;44497:45;;44513:19;44497:45;;;44493:86;;44551:28;;;;;;;;;;;;;;44493:86;44593:27;44622:23;44649:28;44669:7;44649:19;:28::i;:::-;44592:85;;;;44777:62;44796:15;44813:4;44819:19;:17;:19::i;:::-;44777:18;:62::i;:::-;44772:174;;44859:43;44876:4;44882:19;:17;:19::i;:::-;44859:16;:43::i;:::-;44854:92;;44911:35;;;;;;;;;;;;;;44854:92;44772:174;44977:1;44963:16;;:2;:16;;;44959:52;;;44988:23;;;;;;;;;;;;;;44959:52;45024:43;45046:4;45052:2;45056:7;45065:1;45024:21;:43::i;:::-;45160:15;45157:160;;;45300:1;45279:19;45272:30;45157:160;45695:18;:24;45714:4;45695:24;;;;;;;;;;;;;;;;45693:26;;;;;;;;;;;;45764:18;:22;45783:2;45764:22;;;;;;;;;;;;;;;;45762:24;;;;;;;;;;;46086:145;46123:2;46171:45;46186:4;46192:2;46196:19;46171:14;:45::i;:::-;23713:8;46144:72;46086:18;:145::i;:::-;46057:17;:26;46075:7;46057:26;;;;;;;;;;;:174;;;;46401:1;23713:8;46351:19;:46;:51;46347:626;;;46423:19;46455:1;46445:7;:11;46423:33;;46612:1;46578:17;:30;46596:11;46578:30;;;;;;;;;;;;:35;46574:384;;;46716:13;;46701:11;:28;46697:242;;46896:19;46863:17;:30;46881:11;46863:30;;;;;;;;;;;:52;;;;46697:242;46574:384;46404:569;46347:626;47020:7;47016:2;47001:27;;47010:4;47001:27;;;;;;;;;;;;47039:42;47060:4;47066:2;47070:7;47079:1;47039:20;:42::i;:::-;44412:2677;;;44289:2800;;;:::o;57987:25::-;;;;:::o;60218:927::-;60309:15;;;;;;;;;;;60300:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60394:1;60383:8;:12;60374:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;60474:1;60463:8;:12;60454:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60572:9;;60560:8;60544:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;60535:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60670:1;60659:8;60636;:20;60645:10;60636:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:35;60627:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;60745:1;60721:8;:20;60730:10;60721:20;;;;;;;;;;;;;;;;:25;60716:314;;;60781:1;60769:8;:13;60764:118;;;60826:5;;60813:9;:18;;60804:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60764:118;60716:314;;;60937:1;60913:8;:20;60922:10;60913:20;;;;;;;;;;;;;;;;:25;60908:122;;;60978:5;;60965:9;:18;;60956:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60908:122;60716:314;61086:8;61063;:20;61072:10;61063:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;61040:8;:20;61049:10;61040:20;;;;;;;;;;;;;;;:54;;;;61106:31;61116:10;61128:8;61106:9;:31::i;:::-;60218:927;:::o;62463:700::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62543:1:::1;62519:21;:25;62511:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;62592:16;62611:38;62646:2;62611:30;62637:3;62611:21;:25;;:30;;;;:::i;:::-;:34;;:38;;;;:::i;:::-;62592:57;;62660:16;62679:39;62715:2;62679:31;62705:4;62679:21;:25;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;62660:58;;62729:16;62748:39;62784:2;62748:31;62774:4;62748:21;:25;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;62729:58;;62798:16;62817:39;62853:2;62817:31;62843:4;62817:21;:25;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;62798:58;;62867:16;62886:39;62922:2;62886:31;62912:4;62886:21;:25;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;62867:58;;62944:7;;;;;;;;;;;62936:25;;:35;62962:8;62936:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62990:7;;;;;;;;;;;62982:25;;:35;63008:8;62982:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63036:7;;;;;;;;;;;63028:25;;:35;63054:8;63028:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63082:7;;;;;;;;;;;63074:25;;:35;63100:8;63074:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63128:7;;;;;;;;;;;63120:25;;:35;63146:8;63120:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62500:663;;;;;62463:700::o:0;35914:185::-;36052:39;36069:4;36075:2;36079:7;36052:39;;;;;;;;;;;;:16;:39::i;:::-;35914:185;;;:::o;58113:45::-;;;;;;;;;;;;;;;;;:::o;61374:206::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61486:9:::1;;61470:13;:11;:13::i;:::-;:25;61461:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61541:31;61551:10;61563:8;61541:9;:31::i;:::-;61374:206:::0;:::o;32867:144::-;32931:7;32974:27;32993:7;32974:18;:27::i;:::-;32951:52;;32867:144;;;:::o;57928:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28110:224::-;28174:7;28215:1;28198:19;;:5;:19;;;28194:60;;;28226:28;;;;;;;;;;;;;;28194:60;22665:13;28272:18;:25;28291:5;28272:25;;;;;;;;;;;;;;;;:54;28265:61;;28110:224;;;:::o;12022:103::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12087:30:::1;12114:1;12087:18;:30::i;:::-;12022:103::o:0;61797:124::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61900:13:::1;61887:10;:26;;;;61797:124:::0;:::o;61153:213::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61280:9:::1;;61264:13;:11;:13::i;:::-;:25;61255:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61335:23;61345:2;61349:8;61335:9;:23::i;:::-;61153:213:::0;;:::o;11371:87::-;11417:7;11444:6;;;;;;;;;;;11437:13;;11371:87;:::o;61929:107::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62019:8:::1;62011:5;:16;;;;61929:107:::0;:::o;59132:1078::-;59263:42;59275:10;59287:5;;59294:10;;59263:11;:42::i;:::-;59254:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;59375:12;;;;;;;;;;;59366:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;59457:1;59446:8;:12;59437:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;59537:1;59526:8;:12;59517:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;59635:9;;59623:8;59607:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;59598:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;59733:1;59722:8;59699;:20;59708:10;59699:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:35;59690:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59808:1;59784:8;:20;59793:10;59784:20;;;;;;;;;;;;;;;;:25;59779:314;;;59844:1;59832:8;:13;59827:118;;;59889:5;;59876:9;:18;;59867:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59827:118;59779:314;;;60000:1;59976:8;:20;59985:10;59976:20;;;;;;;;;;;;;;;;:25;59971:122;;;60041:5;;60028:9;:18;;60019:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59971:122;59779:314;60151:8;60128;:20;60137:10;60128:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;60105:8;:20;60114:10;60105:20;;;;;;;;;;;;;;;:54;;;;60171:31;60181:10;60193:8;60171:9;:31::i;:::-;59132:1078;;;:::o;33247:104::-;33303:13;33336:7;33329:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33247:104;:::o;58051:27::-;;;;;;;;;;;;;:::o;58086:20::-;;;;:::o;35300:308::-;35411:19;:17;:19::i;:::-;35399:31;;:8;:31;;;35395:61;;;35439:17;;;;;;;;;;;;;;35395:61;35521:8;35469:18;:39;35488:19;:17;:19::i;:::-;35469:39;;;;;;;;;;;;;;;:49;35509:8;35469:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35581:8;35545:55;;35560:19;:17;:19::i;:::-;35545:55;;;35591:8;35545:55;;;;;;:::i;:::-;;;;;;;;35300:308;;:::o;58019:24::-;;;;;;;;;;;;;:::o;36170:399::-;36337:31;36350:4;36356:2;36360:7;36337:12;:31::i;:::-;36401:1;36383:2;:14;;;:19;36379:183;;36422:56;36453:4;36459:2;36463:7;36472:5;36422:30;:56::i;:::-;36417:145;;36506:40;;;;;;;;;;;;;;36417:145;36379:183;36170:399;;;;:::o;62173:282::-;62246:13;62277:16;62285:7;62277;:16::i;:::-;62272:59;;62302:29;;;;;;;;;;;;;;62272:59;62376:1;62357:7;62351:21;;;;;:::i;:::-;;;:26;;:96;;;;;;;;;;;;;;;;;62404:7;62413:18;62423:7;62413:9;:18::i;:::-;62387:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62351:96;62344:103;;62173:282;;;:::o;57956:24::-;;;;:::o;62044:121::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62147:10:::1;62137:7;:20;;;;;;;;;;;;:::i;:::-;;62044:121:::0;:::o;35679:164::-;35776:4;35800:18;:25;35819:5;35800:25;;;;;;;;;;;;;;;:35;35826:8;35800:35;;;;;;;;;;;;;;;;;;;;;;;;;35793:42;;35679:164;;;;:::o;12280:201::-;11602:12;:10;:12::i;:::-;11591:23;;:7;:5;:7::i;:::-;:23;;;11583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12389:1:::1;12369:22;;:8;:22;;;;12361:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12445:28;12464:8;12445:18;:28::i;:::-;12280:201:::0;:::o;36824:273::-;36881:4;36937:7;36918:15;:13;:15::i;:::-;:26;;:66;;;;;36971:13;;36961:7;:23;36918:66;:152;;;;;37069:1;23435:8;37022:17;:26;37040:7;37022:26;;;;;;;;;;;;:43;:48;36918:152;36898:172;;36824:273;;;:::o;55385:105::-;55445:7;55472:10;55465:17;;55385:105;:::o;10095:98::-;10148:7;10175:10;10168:17;;10095:98;:::o;26009:92::-;26065:7;26009:92;:::o;29784:1129::-;29851:7;29871:12;29886:7;29871:22;;29954:4;29935:15;:13;:15::i;:::-;:23;29931:915;;29988:13;;29981:4;:20;29977:869;;;30026:14;30043:17;:23;30061:4;30043:23;;;;;;;;;;;;30026:40;;30159:1;23435:8;30132:6;:23;:28;30128:699;;;30651:113;30668:1;30658:6;:11;30651:113;;;30711:17;:25;30729:6;;;;;;;30711:25;;;;;;;;;;;;30702:34;;30651:113;;;30797:6;30790:13;;;;;;30128:699;30003:843;29977:869;29931:915;30874:31;;;;;;;;;;;;;;29784:1129;;;;:::o;42625:652::-;42720:27;42749:23;42790:53;42846:15;42790:71;;43032:7;43026:4;43019:21;43067:22;43061:4;43054:36;43143:4;43137;43127:21;43104:44;;43239:19;43233:26;43214:45;;42970:300;42625:652;;;:::o;43390:645::-;43532:11;43694:15;43688:4;43684:26;43676:34;;43853:15;43842:9;43838:31;43825:44;;44000:15;43989:9;43986:30;43979:4;43968:9;43965:19;43962:55;43952:65;;43390:645;;;;;:::o;54218:159::-;;;;;:::o;52530:309::-;52665:7;52685:16;23836:3;52711:19;:40;;52685:67;;23836:3;52778:31;52789:4;52795:2;52799:9;52778:10;:31::i;:::-;52770:40;;:61;;52763:68;;;52530:309;;;;;:::o;32358:447::-;32438:14;32606:15;32599:5;32595:27;32586:36;;32780:5;32766:11;32742:22;32738:40;32735:51;32728:5;32725:62;32715:72;;32358:447;;;;:::o;55036:158::-;;;;;:::o;37181:104::-;37250:27;37260:2;37264:8;37250:27;;;;;;;;;;;;:9;:27::i;:::-;37181:104;;:::o;3999:98::-;4057:7;4088:1;4084;:5;;;;:::i;:::-;4077:12;;3999:98;;;;:::o;3600:::-;3658:7;3689:1;3685;:5;;;;:::i;:::-;3678:12;;3600:98;;;;:::o;12641:191::-;12715:16;12734:6;;;;;;;;;;;12715:25;;12760:8;12751:6;;:17;;;;;;;;;;;;;;;;;;12815:8;12784:40;;12805:8;12784:40;;;;;;;;;;;;12704:128;12641:191;:::o;58919:205::-;59050:4;59074:42;59093:5;;59074:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59100:4;59106:9;59111:3;59106:4;:9::i;:::-;59074:18;:42::i;:::-;59067:49;;58919:205;;;;;;:::o;51040:716::-;51203:4;51249:2;51224:45;;;51270:19;:17;:19::i;:::-;51291:4;51297:7;51306:5;51224:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51220:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51524:1;51507:6;:13;:18;51503:235;;;51553:40;;;;;;;;;;;;;;51503:235;51696:6;51690:13;51681:6;51677:2;51673:15;51666:38;51220:529;51393:54;;;51383:64;;;:6;:64;;;;51376:71;;;51040:716;;;;;;:::o;55596:1960::-;55653:17;56072:3;56065:4;56059:11;56055:21;56048:28;;56163:3;56157:4;56150:17;56269:3;56725:5;56855:1;56850:3;56846:11;56839:18;;56992:2;56986:4;56982:13;56978:2;56974:22;56969:3;56961:36;57033:2;57027:4;57023:13;57015:21;;56617:697;57052:4;56617:697;;;57243:1;57238:3;57234:11;57227:18;;57294:2;57288:4;57284:13;57280:2;57276:22;57271:3;57263:36;57147:2;57141:4;57137:13;57129:21;;56617:697;;;56621:430;57353:3;57348;57344:13;57468:2;57463:3;57459:12;57452:19;;57531:6;57526:3;57519:19;55692:1857;;55596:1960;;;:::o;53415:147::-;53552:6;53415:147;;;;;:::o;37701:681::-;37824:19;37830:2;37834:8;37824:5;:19::i;:::-;37903:1;37885:2;:14;;;:19;37881:483;;37925:11;37939:13;;37925:27;;37971:13;37993:8;37987:3;:14;37971:30;;38020:233;38051:62;38090:1;38094:2;38098:7;;;;;;38107:5;38051:30;:62::i;:::-;38046:167;;38149:40;;;;;;;;;;;;;;38046:167;38248:3;38240:5;:11;38020:233;;38335:3;38318:13;;:20;38314:34;;38340:8;;;38314:34;37906:458;;37881:483;37701:681;;;:::o;58768:143::-;58839:7;58893:8;58876:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;58866:37;;;;;;58859:44;;58768:143;;;:::o;7950:190::-;8075:4;8128;8099:25;8112:5;8119:4;8099:12;:25::i;:::-;:33;8092:40;;7950:190;;;;;:::o;38655:1529::-;38720:20;38743:13;;38720:36;;38785:1;38771:16;;:2;:16;;;38767:48;;;38796:19;;;;;;;;;;;;;;38767:48;38842:1;38830:8;:13;38826:44;;;38852:18;;;;;;;;;;;;;;38826:44;38883:61;38913:1;38917:2;38921:12;38935:8;38883:21;:61::i;:::-;39426:1;22802:2;39397:1;:25;;39396:31;39384:8;:44;39358:18;:22;39377:2;39358:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;39705:139;39742:2;39796:33;39819:1;39823:2;39827:1;39796:14;:33::i;:::-;39763:30;39784:8;39763:20;:30::i;:::-;:66;39705:18;:139::i;:::-;39671:17;:31;39689:12;39671:31;;;;;;;;;;;:173;;;;39861:15;39879:12;39861:30;;39906:11;39935:8;39920:12;:23;39906:37;;39958:101;40010:9;;;;;;40006:2;39985:35;;40002:1;39985:35;;;;;;;;;;;;40054:3;40044:7;:13;39958:101;;40091:3;40075:13;:19;;;;39132:974;;40116:60;40145:1;40149:2;40153:12;40167:8;40116:20;:60::i;:::-;38709:1475;38655:1529;;:::o;8502:675::-;8585:7;8605:20;8628:4;8605:27;;8648:9;8643:497;8667:5;:12;8663:1;:16;8643:497;;;8701:20;8724:5;8730:1;8724:8;;;;;;;;:::i;:::-;;;;;;;;8701:31;;8767:12;8751;:28;8747:382;;8894:42;8909:12;8923;8894:14;:42::i;:::-;8879:57;;8747:382;;;9071:42;9086:12;9100;9071:14;:42::i;:::-;9056:57;;8747:382;8686:454;8681:3;;;;;:::i;:::-;;;;8643:497;;;;9157:12;9150:19;;;8502:675;;;;:::o;34188:322::-;34258:14;34489:1;34479:8;34476:15;34451:23;34447:45;34437:55;;34188:322;;;:::o;9185:224::-;9253:13;9316:1;9310:4;9303:15;9345:1;9339:4;9332:15;9386:4;9380;9370:21;9361:30;;9185:224;;;;:::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;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:118::-;9026:24;9044:5;9026:24;:::i;:::-;9021:3;9014:37;8939:118;;:::o;9063:157::-;9168:45;9188:24;9206:5;9188:24;:::i;:::-;9168:45;:::i;:::-;9163:3;9156:58;9063:157;;:::o;9226:109::-;9307:21;9322:5;9307:21;:::i;:::-;9302:3;9295:34;9226:109;;:::o;9341:118::-;9428:24;9446:5;9428:24;:::i;:::-;9423:3;9416:37;9341:118;;:::o;9465:360::-;9551:3;9579:38;9611:5;9579:38;:::i;:::-;9633:70;9696:6;9691:3;9633:70;:::i;:::-;9626:77;;9712:52;9757:6;9752:3;9745:4;9738:5;9734:16;9712:52;:::i;:::-;9789:29;9811:6;9789:29;:::i;:::-;9784:3;9780:39;9773:46;;9555:270;9465:360;;;;:::o;9831:364::-;9919:3;9947:39;9980:5;9947:39;:::i;:::-;10002:71;10066:6;10061:3;10002:71;:::i;:::-;9995:78;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9923:272;9831:364;;;;:::o;10201:377::-;10307:3;10335:39;10368:5;10335:39;:::i;:::-;10390:89;10472:6;10467:3;10390:89;:::i;:::-;10383:96;;10488:52;10533:6;10528:3;10521:4;10514:5;10510:16;10488:52;:::i;:::-;10565:6;10560:3;10556:16;10549:23;;10311:267;10201:377;;;;:::o;10608:845::-;10711:3;10748:5;10742:12;10777:36;10803:9;10777:36;:::i;:::-;10829:89;10911:6;10906:3;10829:89;:::i;:::-;10822:96;;10949:1;10938:9;10934:17;10965:1;10960:137;;;;11111:1;11106:341;;;;10927:520;;10960:137;11044:4;11040:9;11029;11025:25;11020:3;11013:38;11080:6;11075:3;11071:16;11064:23;;10960:137;;11106:341;11173:38;11205:5;11173:38;:::i;:::-;11233:1;11247:154;11261:6;11258:1;11255:13;11247:154;;;11335:7;11329:14;11325:1;11320:3;11316:11;11309:35;11385:1;11376:7;11372:15;11361:26;;11283:4;11280:1;11276:12;11271:17;;11247:154;;;11430:6;11425:3;11421:16;11414:23;;11113:334;;10927:520;;10715:738;;10608:845;;;;:::o;11459:366::-;11601:3;11622:67;11686:2;11681:3;11622:67;:::i;:::-;11615:74;;11698:93;11787:3;11698:93;:::i;:::-;11816:2;11811:3;11807:12;11800:19;;11459:366;;;:::o;11831:::-;11973:3;11994:67;12058:2;12053:3;11994:67;:::i;:::-;11987:74;;12070:93;12159:3;12070:93;:::i;:::-;12188:2;12183:3;12179:12;12172:19;;11831:366;;;:::o;12203:::-;12345:3;12366:67;12430:2;12425:3;12366:67;:::i;:::-;12359:74;;12442:93;12531:3;12442:93;:::i;:::-;12560:2;12555:3;12551:12;12544:19;;12203:366;;;:::o;12575:::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:400::-;13107:3;13128:84;13210:1;13205:3;13128:84;:::i;:::-;13121:91;;13221:93;13310:3;13221:93;:::i;:::-;13339:1;13334:3;13330:11;13323:18;;12947:400;;;:::o;13353:366::-;13495:3;13516:67;13580:2;13575:3;13516:67;:::i;:::-;13509:74;;13592:93;13681:3;13592:93;:::i;:::-;13710:2;13705:3;13701:12;13694:19;;13353:366;;;:::o;13725:::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:::-;14239:3;14260:67;14324:2;14319:3;14260:67;:::i;:::-;14253:74;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14097:366;;;:::o;14469:::-;14611:3;14632:67;14696:2;14691:3;14632:67;:::i;:::-;14625:74;;14708:93;14797:3;14708:93;:::i;:::-;14826:2;14821:3;14817:12;14810:19;;14469:366;;;:::o;14841:::-;14983:3;15004:67;15068:2;15063:3;15004:67;:::i;:::-;14997:74;;15080:93;15169:3;15080:93;:::i;:::-;15198:2;15193:3;15189:12;15182:19;;14841:366;;;:::o;15213:::-;15355:3;15376:67;15440:2;15435:3;15376:67;:::i;:::-;15369:74;;15452:93;15541:3;15452:93;:::i;:::-;15570:2;15565:3;15561:12;15554:19;;15213:366;;;:::o;15585:118::-;15672:24;15690:5;15672:24;:::i;:::-;15667:3;15660:37;15585:118;;:::o;15709:256::-;15821:3;15836:75;15907:3;15898:6;15836:75;:::i;:::-;15936:2;15931:3;15927:12;15920:19;;15956:3;15949:10;;15709:256;;;;:::o;15971:695::-;16249:3;16271:92;16359:3;16350:6;16271:92;:::i;:::-;16264:99;;16380:95;16471:3;16462:6;16380:95;:::i;:::-;16373:102;;16492:148;16636:3;16492:148;:::i;:::-;16485:155;;16657:3;16650:10;;15971:695;;;;;:::o;16672:222::-;16765:4;16803:2;16792:9;16788:18;16780:26;;16816:71;16884:1;16873:9;16869:17;16860:6;16816:71;:::i;:::-;16672:222;;;;:::o;16900:640::-;17095:4;17133:3;17122:9;17118:19;17110:27;;17147:71;17215:1;17204:9;17200:17;17191:6;17147:71;:::i;:::-;17228:72;17296:2;17285:9;17281:18;17272:6;17228:72;:::i;:::-;17310;17378:2;17367:9;17363:18;17354:6;17310:72;:::i;:::-;17429:9;17423:4;17419:20;17414:2;17403:9;17399:18;17392:48;17457:76;17528:4;17519:6;17457:76;:::i;:::-;17449:84;;16900:640;;;;;;;:::o;17546:210::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17684:65;17746:1;17735:9;17731:17;17722:6;17684:65;:::i;:::-;17546:210;;;;:::o;17762:222::-;17855:4;17893:2;17882:9;17878:18;17870:26;;17906:71;17974:1;17963:9;17959:17;17950:6;17906:71;:::i;:::-;17762:222;;;;:::o;17990:313::-;18103:4;18141:2;18130:9;18126:18;18118:26;;18190:9;18184:4;18180:20;18176:1;18165:9;18161:17;18154:47;18218:78;18291:4;18282:6;18218:78;:::i;:::-;18210:86;;17990:313;;;;:::o;18309:419::-;18475:4;18513:2;18502:9;18498:18;18490:26;;18562:9;18556:4;18552:20;18548:1;18537:9;18533:17;18526:47;18590:131;18716:4;18590:131;:::i;:::-;18582:139;;18309:419;;;:::o;18734:::-;18900:4;18938:2;18927:9;18923:18;18915:26;;18987:9;18981:4;18977:20;18973:1;18962:9;18958:17;18951:47;19015:131;19141:4;19015:131;:::i;:::-;19007:139;;18734:419;;;:::o;19159:::-;19325:4;19363:2;19352:9;19348:18;19340:26;;19412:9;19406:4;19402:20;19398:1;19387:9;19383:17;19376:47;19440:131;19566:4;19440:131;:::i;:::-;19432:139;;19159:419;;;:::o;19584:::-;19750:4;19788:2;19777:9;19773:18;19765:26;;19837:9;19831:4;19827:20;19823:1;19812:9;19808:17;19801:47;19865:131;19991:4;19865:131;:::i;:::-;19857:139;;19584:419;;;:::o;20009:::-;20175:4;20213:2;20202:9;20198:18;20190:26;;20262:9;20256:4;20252:20;20248:1;20237:9;20233:17;20226:47;20290:131;20416:4;20290:131;:::i;:::-;20282:139;;20009:419;;;:::o;20434:::-;20600:4;20638:2;20627:9;20623:18;20615:26;;20687:9;20681:4;20677:20;20673:1;20662:9;20658:17;20651:47;20715:131;20841:4;20715:131;:::i;:::-;20707:139;;20434:419;;;:::o;20859:::-;21025:4;21063:2;21052:9;21048:18;21040:26;;21112:9;21106:4;21102:20;21098:1;21087:9;21083:17;21076:47;21140:131;21266:4;21140:131;:::i;:::-;21132:139;;20859:419;;;:::o;21284:::-;21450:4;21488:2;21477:9;21473:18;21465:26;;21537:9;21531:4;21527:20;21523:1;21512:9;21508:17;21501:47;21565:131;21691:4;21565:131;:::i;:::-;21557:139;;21284:419;;;:::o;21709:::-;21875:4;21913:2;21902:9;21898:18;21890:26;;21962:9;21956:4;21952:20;21948:1;21937:9;21933:17;21926:47;21990:131;22116:4;21990:131;:::i;:::-;21982:139;;21709:419;;;:::o;22134:::-;22300:4;22338:2;22327:9;22323:18;22315:26;;22387:9;22381:4;22377:20;22373:1;22362:9;22358:17;22351:47;22415:131;22541:4;22415:131;:::i;:::-;22407:139;;22134:419;;;:::o;22559:222::-;22652:4;22690:2;22679:9;22675:18;22667:26;;22703:71;22771:1;22760:9;22756:17;22747:6;22703:71;:::i;:::-;22559:222;;;;:::o;22787:129::-;22821:6;22848:20;;:::i;:::-;22838:30;;22877:33;22905:4;22897:6;22877:33;:::i;:::-;22787:129;;;:::o;22922:75::-;22955:6;22988:2;22982:9;22972:19;;22922:75;:::o;23003:307::-;23064:4;23154:18;23146:6;23143:30;23140:56;;;23176:18;;:::i;:::-;23140:56;23214:29;23236:6;23214:29;:::i;:::-;23206:37;;23298:4;23292;23288:15;23280:23;;23003:307;;;:::o;23316:308::-;23378:4;23468:18;23460:6;23457:30;23454:56;;;23490:18;;:::i;:::-;23454:56;23528:29;23550:6;23528:29;:::i;:::-;23520:37;;23612:4;23606;23602:15;23594:23;;23316:308;;;:::o;23630:141::-;23679:4;23702:3;23694:11;;23725:3;23722:1;23715:14;23759:4;23756:1;23746:18;23738:26;;23630:141;;;:::o;23777:98::-;23828:6;23862:5;23856:12;23846:22;;23777:98;;;:::o;23881:99::-;23933:6;23967:5;23961:12;23951:22;;23881:99;;;:::o;23986:168::-;24069:11;24103:6;24098:3;24091:19;24143:4;24138:3;24134:14;24119:29;;23986:168;;;;:::o;24160:169::-;24244:11;24278:6;24273:3;24266:19;24318:4;24313:3;24309:14;24294:29;;24160:169;;;;:::o;24335:148::-;24437:11;24474:3;24459:18;;24335:148;;;;:::o;24489:305::-;24529:3;24548:20;24566:1;24548:20;:::i;:::-;24543:25;;24582:20;24600:1;24582:20;:::i;:::-;24577:25;;24736:1;24668:66;24664:74;24661:1;24658:81;24655:107;;;24742:18;;:::i;:::-;24655:107;24786:1;24783;24779:9;24772:16;;24489:305;;;;:::o;24800:185::-;24840:1;24857:20;24875:1;24857:20;:::i;:::-;24852:25;;24891:20;24909:1;24891:20;:::i;:::-;24886:25;;24930:1;24920:35;;24935:18;;:::i;:::-;24920:35;24977:1;24974;24970:9;24965:14;;24800:185;;;;:::o;24991:348::-;25031:7;25054:20;25072:1;25054:20;:::i;:::-;25049:25;;25088:20;25106:1;25088:20;:::i;:::-;25083:25;;25276:1;25208:66;25204:74;25201:1;25198:81;25193:1;25186:9;25179:17;25175:105;25172:131;;;25283:18;;:::i;:::-;25172:131;25331:1;25328;25324:9;25313:20;;24991:348;;;;:::o;25345:96::-;25382:7;25411:24;25429:5;25411:24;:::i;:::-;25400:35;;25345:96;;;:::o;25447:90::-;25481:7;25524:5;25517:13;25510:21;25499:32;;25447:90;;;:::o;25543:77::-;25580:7;25609:5;25598:16;;25543:77;;;:::o;25626:149::-;25662:7;25702:66;25695:5;25691:78;25680:89;;25626:149;;;:::o;25781:126::-;25818:7;25858:42;25851:5;25847:54;25836:65;;25781:126;;;:::o;25913:77::-;25950:7;25979:5;25968:16;;25913:77;;;:::o;25996:154::-;26080:6;26075:3;26070;26057:30;26142:1;26133:6;26128:3;26124:16;26117:27;25996:154;;;:::o;26156:307::-;26224:1;26234:113;26248:6;26245:1;26242:13;26234:113;;;26333:1;26328:3;26324:11;26318:18;26314:1;26309:3;26305:11;26298:39;26270:2;26267:1;26263:10;26258:15;;26234:113;;;26365:6;26362:1;26359:13;26356:101;;;26445:1;26436:6;26431:3;26427:16;26420:27;26356:101;26205:258;26156:307;;;:::o;26469:320::-;26513:6;26550:1;26544:4;26540:12;26530:22;;26597:1;26591:4;26587:12;26618:18;26608:81;;26674:4;26666:6;26662:17;26652:27;;26608:81;26736:2;26728:6;26725:14;26705:18;26702:38;26699:84;;;26755:18;;:::i;:::-;26699:84;26520:269;26469:320;;;:::o;26795:281::-;26878:27;26900:4;26878:27;:::i;:::-;26870:6;26866:40;27008:6;26996:10;26993:22;26972:18;26960:10;26957:34;26954:62;26951:88;;;27019:18;;:::i;:::-;26951:88;27059:10;27055:2;27048:22;26838:238;26795:281;;:::o;27082:233::-;27121:3;27144:24;27162:5;27144:24;:::i;:::-;27135:33;;27190:66;27183:5;27180:77;27177:103;;;27260:18;;:::i;:::-;27177:103;27307:1;27300:5;27296:13;27289:20;;27082:233;;;:::o;27321:100::-;27360:7;27389:26;27409:5;27389:26;:::i;:::-;27378:37;;27321:100;;;:::o;27427:94::-;27466:7;27495:20;27509:5;27495:20;:::i;:::-;27484:31;;27427:94;;;:::o;27527:180::-;27575:77;27572:1;27565:88;27672:4;27669:1;27662:15;27696:4;27693:1;27686:15;27713:180;27761:77;27758:1;27751:88;27858:4;27855:1;27848:15;27882:4;27879:1;27872:15;27899:180;27947:77;27944:1;27937:88;28044:4;28041:1;28034:15;28068:4;28065:1;28058:15;28085:180;28133:77;28130:1;28123:88;28230:4;28227:1;28220:15;28254:4;28251:1;28244:15;28271:180;28319:77;28316:1;28309:88;28416:4;28413:1;28406:15;28440:4;28437:1;28430:15;28457:117;28566:1;28563;28556:12;28580:117;28689:1;28686;28679:12;28703:117;28812:1;28809;28802:12;28826:117;28935:1;28932;28925:12;28949:117;29058:1;29055;29048:12;29072:117;29181:1;29178;29171:12;29195:102;29236:6;29287:2;29283:7;29278:2;29271:5;29267:14;29263:28;29253:38;;29195:102;;;:::o;29303:94::-;29336:8;29384:5;29380:2;29376:14;29355:35;;29303:94;;;:::o;29403:182::-;29543:34;29539:1;29531:6;29527:14;29520:58;29403:182;:::o;29591:225::-;29731:34;29727:1;29719:6;29715:14;29708:58;29800:8;29795:2;29787:6;29783:15;29776:33;29591:225;:::o;29822:230::-;29962:34;29958:1;29950:6;29946:14;29939:58;30031:13;30026:2;30018:6;30014:15;30007:38;29822:230;:::o;30058:229::-;30198:34;30194:1;30186:6;30182:14;30175:58;30267:12;30262:2;30254:6;30250:15;30243:37;30058:229;:::o;30293:155::-;30433:7;30429:1;30421:6;30417:14;30410:31;30293:155;:::o;30454:182::-;30594:34;30590:1;30582:6;30578:14;30571:58;30454:182;:::o;30642:220::-;30782:34;30778:1;30770:6;30766:14;30759:58;30851:3;30846:2;30838:6;30834:15;30827:28;30642:220;:::o;30868:179::-;31008:31;31004:1;30996:6;30992:14;30985:55;30868:179;:::o;31053:176::-;31193:28;31189:1;31181:6;31177:14;31170:52;31053:176;:::o;31235:231::-;31375:34;31371:1;31363:6;31359:14;31352:58;31444:14;31439:2;31431:6;31427:15;31420:39;31235:231;:::o;31472:178::-;31612:30;31608:1;31600:6;31596:14;31589:54;31472:178;:::o;31656:122::-;31729:24;31747:5;31729:24;:::i;:::-;31722:5;31719:35;31709:63;;31768:1;31765;31758:12;31709:63;31656:122;:::o;31784:116::-;31854:21;31869:5;31854:21;:::i;:::-;31847:5;31844:32;31834:60;;31890:1;31887;31880:12;31834:60;31784:116;:::o;31906:122::-;31979:24;31997:5;31979:24;:::i;:::-;31972:5;31969:35;31959:63;;32018:1;32015;32008:12;31959:63;31906:122;:::o;32034:120::-;32106:23;32123:5;32106:23;:::i;:::-;32099:5;32096:34;32086:62;;32144:1;32141;32134:12;32086:62;32034:120;:::o;32160:122::-;32233:24;32251:5;32233:24;:::i;:::-;32226:5;32223:35;32213:63;;32272:1;32269;32262:12;32213:63;32160:122;:::o

Swarm Source

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