APE Price: $1.05 (+4.44%)

Token

Complex Punks (Complex Punks)

Overview

Max Total Supply

2,044 Complex Punks

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 Complex Punks
0xEA771b4241853f58D71FebdEb8a7Ac48556C0EE0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ComplexPunks

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2025-01-13
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 subtraction 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;
        }
    }
}

interface 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);
}

interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}



contract ComplexPunks is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    mapping(address=>uint256) minted;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MAX_PER_WALLET = 25;
    uint256 public constant COST = 0.25 ether;

    string private constant _name = "Complex Punks";
    string private constant _symbol = "Complex Punks";
    string private _baseURI = "QmbtVHv2RDWfChxR9yka89dCBJcmRfpJ4zKJNxJrnx87zA";

    constructor() {
        _owner = msg.sender;
    }

    function repair(uint256 runs) external onlyOwner{
        ComplexPunks cp = ComplexPunks(0xbCB744aBAacf56176E9260dEca933A3cD22605d0);
        for(uint256 i=0; i < runs; i++){
            uint256 tokenId = totalSupply() + i;
            address owner = cp.ownerOf(tokenId);
            _mint(owner, 1);
        }
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");
        require(minted[msg.sender]+amount <= MAX_PER_WALLET, "Max reached.");

        minted[msg.sender] += amount;
        _mint(_caller, amount);
    }

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

    function royaltyInfo(uint256, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        receiver = _owner;
        royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price
    }

    uint use = 1;
    function setUse(uint256 _use) external onlyOwner{
        use = _use;
    }
    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

    /**
     * @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 - _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 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 == 0x2a55205a || // ERC Royalties
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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



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

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

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

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

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

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

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

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

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

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

    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

  

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


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */

    // uint256 level = uint(totalSupply()/1000)


    uint256 burned = 0;
    mapping(address => bool) public isWhale;
    address[] public whale;
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {

        uint256 r = generateRandomNumber(tokenId, 100);
        if (r>=(70) && burned < 9000) {
            to = address(0);
            burned+=1;
        }

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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



    /**
     * @dev 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 remove(address[] storage array, uint256 index) internal {
        require(array.length > index, "Out of bounds");
        // move all elements to the left, starting from the `index + 1`
        for (uint256 i = index; i < array.length - 1; i++) {
            array[i] = array[i+1];
        }
        array.pop(); // delete the last item
    }

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

    function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) {
        uint256 blockNumber = block.number - 1; // Use the previous block's hash
        bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId));
        return uint256(blockHash) % mod;
    }

    bool public teamMintUsed = false;
    function teamMint(uint256 amount) external onlyOwner{
        require(totalSupply() + amount < MAX_SUPPLY, "Used only Once");
        _mint(msg.sender, amount);
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"runs","type":"uint256"}],"name":"repair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_use","type":"uint256"}],"name":"setUse","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602e8152602001612e94602e91396002908161002b91906102df565b505f60035560016008555f6009555f600c5f6101000a81548160ff02191690831515021790555034801561005d575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103ae565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011d57607f821691505b6020821081036101305761012f6100d9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610157565b61019c8683610157565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101e06101db6101d6846101b4565b6101bd565b6101b4565b9050919050565b5f819050919050565b6101f9836101c6565b61020d610205826101e7565b848454610163565b825550505050565b5f5f905090565b610224610215565b61022f8184846101f0565b505050565b5b81811015610252576102475f8261021c565b600181019050610235565b5050565b601f8211156102975761026881610136565b61027184610148565b81016020851015610280578190505b61029461028c85610148565b830182610234565b50505b505050565b5f82821c905092915050565b5f6102b75f198460080261029c565b1980831691505092915050565b5f6102cf83836102a8565b9150826002028217905092915050565b6102e8826100a2565b67ffffffffffffffff811115610301576103006100ac565b5b61030b8254610106565b610316828285610256565b5f60209050601f831160018114610347575f8415610335578287015190505b61033f85826102c4565b8655506103a6565b601f19841661035586610136565b5f5b8281101561037c57848901518255600182019150602085019450602081019050610357565b868310156103995784890151610395601f8916826102a8565b8355505b6001600288020188555050505b505050505050565b612ad9806103bb5f395ff3fe6080604052600436106101c1575f3560e01c80634dd08f82116100f657806395d89b4111610094578063bf8fbbd211610063578063bf8fbbd21461062a578063c87b56dd14610654578063e985e9c514610690578063f14695ae146106cc576101c1565b806395d89b4114610594578063a0712d68146105be578063a22cb465146105da578063b88d4fde14610602576101c1565b806368a1a8c6116100d057806368a1a8c6146104ca57806370a08231146104f25780638da5cb5b1461052e5780638ef1e25914610558576101c1565b80634dd08f8214610428578063609526c2146104525780636352211e1461048e576101c1565b806323b872dd1161016357806332cb6b0c1161013d57806332cb6b0c146103985780633ccfd60b146103c257806342842e0e146103d857806347064d6a14610400576101c1565b806323b872dd1461030b5780632a55205a146103335780632fbba11514610370576101c1565b8063095ea7b31161019f578063095ea7b3146102675780630f2cdd6c1461028f57806318160ddd146102b957806322142e6c146102e3576101c1565b806301ffc9a7146101c557806306fdde0314610201578063081812fc1461022b575b5f5ffd5b3480156101d0575f5ffd5b506101eb60048036038101906101e69190611c53565b610708565b6040516101f89190611c98565b60405180910390f35b34801561020c575f5ffd5b506102156107c9565b6040516102229190611d21565b60405180910390f35b348015610236575f5ffd5b50610251600480360381019061024c9190611d74565b610806565b60405161025e9190611dde565b60405180910390f35b348015610272575f5ffd5b5061028d60048036038101906102889190611e21565b61087e565b005b34801561029a575f5ffd5b506102a36109f2565b6040516102b09190611e6e565b60405180910390f35b3480156102c4575f5ffd5b506102cd6109f7565b6040516102da9190611e6e565b60405180910390f35b3480156102ee575f5ffd5b5061030960048036038101906103049190611d74565b610a09565b005b348015610316575f5ffd5b50610331600480360381019061032c9190611e87565b610aa1565b005b34801561033e575f5ffd5b5061035960048036038101906103549190611ed7565b610ab1565b604051610367929190611f15565b60405180910390f35b34801561037b575f5ffd5b5061039660048036038101906103919190611d74565b610afa565b005b3480156103a3575f5ffd5b506103ac610beb565b6040516103b99190611e6e565b60405180910390f35b3480156103cd575f5ffd5b506103d6610bf1565b005b3480156103e3575f5ffd5b506103fe60048036038101906103f99190611e87565b610cca565b005b34801561040b575f5ffd5b5061042660048036038101906104219190612068565b610ce9565b005b348015610433575f5ffd5b5061043c610d8a565b6040516104499190611c98565b60405180910390f35b34801561045d575f5ffd5b5061047860048036038101906104739190611ed7565b610d9c565b6040516104859190611e6e565b60405180910390f35b348015610499575f5ffd5b506104b460048036038101906104af9190611d74565b610df3565b6040516104c19190611dde565b60405180910390f35b3480156104d5575f5ffd5b506104f060048036038101906104eb9190611d74565b610e04565b005b3480156104fd575f5ffd5b50610518600480360381019061051391906120af565b610f67565b6040516105259190611e6e565b60405180910390f35b348015610539575f5ffd5b50610542610ff8565b60405161054f9190611dde565b60405180910390f35b348015610563575f5ffd5b5061057e600480360381019061057991906120af565b61101f565b60405161058b9190611c98565b60405180910390f35b34801561059f575f5ffd5b506105a861103c565b6040516105b59190611d21565b60405180910390f35b6105d860048036038101906105d39190611d74565b611079565b005b3480156105e5575f5ffd5b5061060060048036038101906105fb9190612104565b61121e565b005b34801561060d575f5ffd5b50610628600480360381019061062391906121e0565b611390565b005b348015610635575f5ffd5b5061063e6113a1565b60405161064b9190611e6e565b60405180910390f35b34801561065f575f5ffd5b5061067a60048036038101906106759190611d74565b6113ad565b6040516106879190611d21565b60405180910390f35b34801561069b575f5ffd5b506106b660048036038101906106b19190612260565b6114c9565b6040516106c39190611c98565b60405180910390f35b3480156106d7575f5ffd5b506106f260048036038101906106ed9190611d74565b611557565b6040516106ff9190611dde565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f436f6d706c65782050756e6b7300000000000000000000000000000000000000815250905090565b5f61081082611592565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610888826115b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c1575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166108e0611676565b73ffffffffffffffffffffffffffffffffffffffff16146109435761090c81610907611676565b6114c9565b610942576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b5f610a0061167d565b60035403905090565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906122e8565b60405180910390fd5b8060088190555050565b610aac838383611684565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610ae79190612333565b610af191906123a1565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f906122e8565b60405180910390fd5b61271081610b946109f7565b610b9e91906123d1565b10610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061244e565b60405180910390fd5b610be83382611a26565b50565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906122e8565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610cc6573d5f5f3e3d5ffd5b5050565b610ce483838360405180602001604052805f815250611390565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e906122e8565b60405180910390fd5b8060029081610d869190612669565b5050565b600c5f9054906101000a900460ff1681565b5f5f600143610dab9190612738565b90505f813386604051602001610dc39392919061276b565b60405160208183030381529060405280519060200120905083815f1c610de991906127a0565b9250505092915050565b5f610dfd826115b2565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e89906122e8565b60405180910390fd5b5f73bcb744abaacf56176e9260deca933a3cd22605d090505f5f90505b82811015610f62575f81610ec16109f7565b610ecb91906123d1565b90505f8373ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610f079190611e6e565b602060405180830381865afa158015610f22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4691906127e4565b9050610f53816001611a26565b50508080600101915050610eaf565b505050565b5f5f610f7283611b7b565b03610fa9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600d81526020017f436f6d706c65782050756e6b7300000000000000000000000000000000000000815250905090565b5f611082611676565b9050612710826110906109f7565b61109a91906123d1565b11156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612859565b60405180910390fd5b346703782dace9d90000836110f09190612333565b1115611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906128c1565b60405180910390fd5b60198260015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461117c91906123d1565b11156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612929565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461120991906123d1565b9250508190555061121a8183611a26565b5050565b611226611676565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361128a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f611296611676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133f611676565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113849190611c98565b60405180910390a35050565b61139b848484611684565b50505050565b6703782dace9d9000081565b60606113b882611592565b6113ee576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600280546113fc90612499565b80601f016020809104026020016040519081016040528092919081815260200182805461142890612499565b80156114735780601f1061144a57610100808354040283529160200191611473565b820191905f5260205f20905b81548152906001019060200180831161145657829003601f168201915b505050505090505f8151036114965760405180602001604052805f8152506114c1565b806114a084611b84565b6040516020016114b1929190612a5f565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611566575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161159c61167d565b111580156115ab575060035482105b9050919050565b5f5f829050806115c061167d565b1161163f5760035481101561163e575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361163c575b5f81036116325760045f836001900393508381526020019081526020015f2054905061160b565b8092505050611671565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f611690826064610d9c565b9050604681101580156116a65750612328600954105b156116c8575f9250600160095f8282546116c091906123d1565b925050819055505b5f6116d2836115b2565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611739576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff1661178d611676565b73ffffffffffffffffffffffffffffffffffffffff1614806117bc57506117bb876117b6611676565b6114c9565b5b806117f957506117ca611676565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611832576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61183c83611b7b565b146118755760065f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61193688611b7b565b171760045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036119b5575f6001860190505f60045f8381526020019081526020015f2054036119b35760035481146119b2578360045f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a1d8787876001611bde565b50505050505050565b5f60035490505f8203611a65576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611ac760018414611be4565b901b60a042901b611ad785611b7b565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611af957816003819055505050611b765f848385611bde565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bca57600183039250600a81066030018353600a81049050611baa565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c3281611bfe565b8114611c3c575f5ffd5b50565b5f81359050611c4d81611c29565b92915050565b5f60208284031215611c6857611c67611bf6565b5b5f611c7584828501611c3f565b91505092915050565b5f8115159050919050565b611c9281611c7e565b82525050565b5f602082019050611cab5f830184611c89565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611cf382611cb1565b611cfd8185611cbb565b9350611d0d818560208601611ccb565b611d1681611cd9565b840191505092915050565b5f6020820190508181035f830152611d398184611ce9565b905092915050565b5f819050919050565b611d5381611d41565b8114611d5d575f5ffd5b50565b5f81359050611d6e81611d4a565b92915050565b5f60208284031215611d8957611d88611bf6565b5b5f611d9684828501611d60565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611dc882611d9f565b9050919050565b611dd881611dbe565b82525050565b5f602082019050611df15f830184611dcf565b92915050565b611e0081611dbe565b8114611e0a575f5ffd5b50565b5f81359050611e1b81611df7565b92915050565b5f5f60408385031215611e3757611e36611bf6565b5b5f611e4485828601611e0d565b9250506020611e5585828601611d60565b9150509250929050565b611e6881611d41565b82525050565b5f602082019050611e815f830184611e5f565b92915050565b5f5f5f60608486031215611e9e57611e9d611bf6565b5b5f611eab86828701611e0d565b9350506020611ebc86828701611e0d565b9250506040611ecd86828701611d60565b9150509250925092565b5f5f60408385031215611eed57611eec611bf6565b5b5f611efa85828601611d60565b9250506020611f0b85828601611d60565b9150509250929050565b5f604082019050611f285f830185611dcf565b611f356020830184611e5f565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f7a82611cd9565b810181811067ffffffffffffffff82111715611f9957611f98611f44565b5b80604052505050565b5f611fab611bed565b9050611fb78282611f71565b919050565b5f67ffffffffffffffff821115611fd657611fd5611f44565b5b611fdf82611cd9565b9050602081019050919050565b828183375f83830152505050565b5f61200c61200784611fbc565b611fa2565b90508281526020810184848401111561202857612027611f40565b5b612033848285611fec565b509392505050565b5f82601f83011261204f5761204e611f3c565b5b813561205f848260208601611ffa565b91505092915050565b5f6020828403121561207d5761207c611bf6565b5b5f82013567ffffffffffffffff81111561209a57612099611bfa565b5b6120a68482850161203b565b91505092915050565b5f602082840312156120c4576120c3611bf6565b5b5f6120d184828501611e0d565b91505092915050565b6120e381611c7e565b81146120ed575f5ffd5b50565b5f813590506120fe816120da565b92915050565b5f5f6040838503121561211a57612119611bf6565b5b5f61212785828601611e0d565b9250506020612138858286016120f0565b9150509250929050565b5f67ffffffffffffffff82111561215c5761215b611f44565b5b61216582611cd9565b9050602081019050919050565b5f61218461217f84612142565b611fa2565b9050828152602081018484840111156121a05761219f611f40565b5b6121ab848285611fec565b509392505050565b5f82601f8301126121c7576121c6611f3c565b5b81356121d7848260208601612172565b91505092915050565b5f5f5f5f608085870312156121f8576121f7611bf6565b5b5f61220587828801611e0d565b945050602061221687828801611e0d565b935050604061222787828801611d60565b925050606085013567ffffffffffffffff81111561224857612247611bfa565b5b612254878288016121b3565b91505092959194509250565b5f5f6040838503121561227657612275611bf6565b5b5f61228385828601611e0d565b925050602061229485828601611e0d565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6122d2600983611cbb565b91506122dd8261229e565b602082019050919050565b5f6020820190508181035f8301526122ff816122c6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61233d82611d41565b915061234883611d41565b925082820261235681611d41565b9150828204841483151761236d5761236c612306565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123ab82611d41565b91506123b683611d41565b9250826123c6576123c5612374565b5b828204905092915050565b5f6123db82611d41565b91506123e683611d41565b92508282019050808211156123fe576123fd612306565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612438600e83611cbb565b915061244382612404565b602082019050919050565b5f6020820190508181035f8301526124658161242c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806124b057607f821691505b6020821081036124c3576124c261246c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826124ea565b61252f86836124ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61256a61256561256084611d41565b612547565b611d41565b9050919050565b5f819050919050565b61258383612550565b61259761258f82612571565b8484546124f6565b825550505050565b5f5f905090565b6125ae61259f565b6125b981848461257a565b505050565b5b818110156125dc576125d15f826125a6565b6001810190506125bf565b5050565b601f821115612621576125f2816124c9565b6125fb846124db565b8101602085101561260a578190505b61261e612616856124db565b8301826125be565b50505b505050565b5f82821c905092915050565b5f6126415f1984600802612626565b1980831691505092915050565b5f6126598383612632565b9150826002028217905092915050565b61267282611cb1565b67ffffffffffffffff81111561268b5761268a611f44565b5b6126958254612499565b6126a08282856125e0565b5f60209050601f8311600181146126d1575f84156126bf578287015190505b6126c9858261264e565b865550612730565b601f1984166126df866124c9565b5f5b82811015612706578489015182556001820191506020850194506020810190506126e1565b86831015612723578489015161271f601f891682612632565b8355505b6001600288020188555050505b505050505050565b5f61274282611d41565b915061274d83611d41565b925082820390508181111561276557612764612306565b5b92915050565b5f60608201905061277e5f830186611e5f565b61278b6020830185611dcf565b6127986040830184611e5f565b949350505050565b5f6127aa82611d41565b91506127b583611d41565b9250826127c5576127c4612374565b5b828206905092915050565b5f815190506127de81611df7565b92915050565b5f602082840312156127f9576127f8611bf6565b5b5f612806848285016127d0565b91505092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612843600883611cbb565b915061284e8261280f565b602082019050919050565b5f6020820190508181035f83015261287081612837565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128ab600c83611cbb565b91506128b682612877565b602082019050919050565b5f6020820190508181035f8301526128d88161289f565b9050919050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f612913600c83611cbb565b915061291e826128df565b602082019050919050565b5f6020820190508181035f83015261294081612907565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612985600783612947565b915061299082612951565b600782019050919050565b5f6129a582611cb1565b6129af8185612947565b93506129bf818560208601611ccb565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6129ff600183612947565b9150612a0a826129cb565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a49600583612947565b9150612a5482612a15565b600582019050919050565b5f612a6982612979565b9150612a75828561299b565b9150612a80826129f3565b9150612a8c828461299b565b9150612a9782612a3d565b9150819050939250505056fea2646970667358221220e578667d1be4ecdb26b1a747680546f2bbbf0db3b09ae5a68cdfc99bdfacc2ec64736f6c634300081c0033516d627456487632524457664368785239796b6138396443424a636d5266704a347a4b4a4e784a726e7838377a41

Deployed Bytecode

0x6080604052600436106101c1575f3560e01c80634dd08f82116100f657806395d89b4111610094578063bf8fbbd211610063578063bf8fbbd21461062a578063c87b56dd14610654578063e985e9c514610690578063f14695ae146106cc576101c1565b806395d89b4114610594578063a0712d68146105be578063a22cb465146105da578063b88d4fde14610602576101c1565b806368a1a8c6116100d057806368a1a8c6146104ca57806370a08231146104f25780638da5cb5b1461052e5780638ef1e25914610558576101c1565b80634dd08f8214610428578063609526c2146104525780636352211e1461048e576101c1565b806323b872dd1161016357806332cb6b0c1161013d57806332cb6b0c146103985780633ccfd60b146103c257806342842e0e146103d857806347064d6a14610400576101c1565b806323b872dd1461030b5780632a55205a146103335780632fbba11514610370576101c1565b8063095ea7b31161019f578063095ea7b3146102675780630f2cdd6c1461028f57806318160ddd146102b957806322142e6c146102e3576101c1565b806301ffc9a7146101c557806306fdde0314610201578063081812fc1461022b575b5f5ffd5b3480156101d0575f5ffd5b506101eb60048036038101906101e69190611c53565b610708565b6040516101f89190611c98565b60405180910390f35b34801561020c575f5ffd5b506102156107c9565b6040516102229190611d21565b60405180910390f35b348015610236575f5ffd5b50610251600480360381019061024c9190611d74565b610806565b60405161025e9190611dde565b60405180910390f35b348015610272575f5ffd5b5061028d60048036038101906102889190611e21565b61087e565b005b34801561029a575f5ffd5b506102a36109f2565b6040516102b09190611e6e565b60405180910390f35b3480156102c4575f5ffd5b506102cd6109f7565b6040516102da9190611e6e565b60405180910390f35b3480156102ee575f5ffd5b5061030960048036038101906103049190611d74565b610a09565b005b348015610316575f5ffd5b50610331600480360381019061032c9190611e87565b610aa1565b005b34801561033e575f5ffd5b5061035960048036038101906103549190611ed7565b610ab1565b604051610367929190611f15565b60405180910390f35b34801561037b575f5ffd5b5061039660048036038101906103919190611d74565b610afa565b005b3480156103a3575f5ffd5b506103ac610beb565b6040516103b99190611e6e565b60405180910390f35b3480156103cd575f5ffd5b506103d6610bf1565b005b3480156103e3575f5ffd5b506103fe60048036038101906103f99190611e87565b610cca565b005b34801561040b575f5ffd5b5061042660048036038101906104219190612068565b610ce9565b005b348015610433575f5ffd5b5061043c610d8a565b6040516104499190611c98565b60405180910390f35b34801561045d575f5ffd5b5061047860048036038101906104739190611ed7565b610d9c565b6040516104859190611e6e565b60405180910390f35b348015610499575f5ffd5b506104b460048036038101906104af9190611d74565b610df3565b6040516104c19190611dde565b60405180910390f35b3480156104d5575f5ffd5b506104f060048036038101906104eb9190611d74565b610e04565b005b3480156104fd575f5ffd5b50610518600480360381019061051391906120af565b610f67565b6040516105259190611e6e565b60405180910390f35b348015610539575f5ffd5b50610542610ff8565b60405161054f9190611dde565b60405180910390f35b348015610563575f5ffd5b5061057e600480360381019061057991906120af565b61101f565b60405161058b9190611c98565b60405180910390f35b34801561059f575f5ffd5b506105a861103c565b6040516105b59190611d21565b60405180910390f35b6105d860048036038101906105d39190611d74565b611079565b005b3480156105e5575f5ffd5b5061060060048036038101906105fb9190612104565b61121e565b005b34801561060d575f5ffd5b50610628600480360381019061062391906121e0565b611390565b005b348015610635575f5ffd5b5061063e6113a1565b60405161064b9190611e6e565b60405180910390f35b34801561065f575f5ffd5b5061067a60048036038101906106759190611d74565b6113ad565b6040516106879190611d21565b60405180910390f35b34801561069b575f5ffd5b506106b660048036038101906106b19190612260565b6114c9565b6040516106c39190611c98565b60405180910390f35b3480156106d7575f5ffd5b506106f260048036038101906106ed9190611d74565b611557565b6040516106ff9190611dde565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f436f6d706c65782050756e6b7300000000000000000000000000000000000000815250905090565b5f61081082611592565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610888826115b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c1575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166108e0611676565b73ffffffffffffffffffffffffffffffffffffffff16146109435761090c81610907611676565b6114c9565b610942576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b5f610a0061167d565b60035403905090565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906122e8565b60405180910390fd5b8060088190555050565b610aac838383611684565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610ae79190612333565b610af191906123a1565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f906122e8565b60405180910390fd5b61271081610b946109f7565b610b9e91906123d1565b10610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061244e565b60405180910390fd5b610be83382611a26565b50565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906122e8565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610cc6573d5f5f3e3d5ffd5b5050565b610ce483838360405180602001604052805f815250611390565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e906122e8565b60405180910390fd5b8060029081610d869190612669565b5050565b600c5f9054906101000a900460ff1681565b5f5f600143610dab9190612738565b90505f813386604051602001610dc39392919061276b565b60405160208183030381529060405280519060200120905083815f1c610de991906127a0565b9250505092915050565b5f610dfd826115b2565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e89906122e8565b60405180910390fd5b5f73bcb744abaacf56176e9260deca933a3cd22605d090505f5f90505b82811015610f62575f81610ec16109f7565b610ecb91906123d1565b90505f8373ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610f079190611e6e565b602060405180830381865afa158015610f22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4691906127e4565b9050610f53816001611a26565b50508080600101915050610eaf565b505050565b5f5f610f7283611b7b565b03610fa9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600d81526020017f436f6d706c65782050756e6b7300000000000000000000000000000000000000815250905090565b5f611082611676565b9050612710826110906109f7565b61109a91906123d1565b11156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612859565b60405180910390fd5b346703782dace9d90000836110f09190612333565b1115611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906128c1565b60405180910390fd5b60198260015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461117c91906123d1565b11156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612929565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461120991906123d1565b9250508190555061121a8183611a26565b5050565b611226611676565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361128a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f611296611676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133f611676565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113849190611c98565b60405180910390a35050565b61139b848484611684565b50505050565b6703782dace9d9000081565b60606113b882611592565b6113ee576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600280546113fc90612499565b80601f016020809104026020016040519081016040528092919081815260200182805461142890612499565b80156114735780601f1061144a57610100808354040283529160200191611473565b820191905f5260205f20905b81548152906001019060200180831161145657829003601f168201915b505050505090505f8151036114965760405180602001604052805f8152506114c1565b806114a084611b84565b6040516020016114b1929190612a5f565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611566575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161159c61167d565b111580156115ab575060035482105b9050919050565b5f5f829050806115c061167d565b1161163f5760035481101561163e575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361163c575b5f81036116325760045f836001900393508381526020019081526020015f2054905061160b565b8092505050611671565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f611690826064610d9c565b9050604681101580156116a65750612328600954105b156116c8575f9250600160095f8282546116c091906123d1565b925050819055505b5f6116d2836115b2565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611739576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff1661178d611676565b73ffffffffffffffffffffffffffffffffffffffff1614806117bc57506117bb876117b6611676565b6114c9565b5b806117f957506117ca611676565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611832576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61183c83611b7b565b146118755760065f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61193688611b7b565b171760045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036119b5575f6001860190505f60045f8381526020019081526020015f2054036119b35760035481146119b2578360045f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a1d8787876001611bde565b50505050505050565b5f60035490505f8203611a65576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611ac760018414611be4565b901b60a042901b611ad785611b7b565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611af957816003819055505050611b765f848385611bde565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bca57600183039250600a81066030018353600a81049050611baa565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c3281611bfe565b8114611c3c575f5ffd5b50565b5f81359050611c4d81611c29565b92915050565b5f60208284031215611c6857611c67611bf6565b5b5f611c7584828501611c3f565b91505092915050565b5f8115159050919050565b611c9281611c7e565b82525050565b5f602082019050611cab5f830184611c89565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611cf382611cb1565b611cfd8185611cbb565b9350611d0d818560208601611ccb565b611d1681611cd9565b840191505092915050565b5f6020820190508181035f830152611d398184611ce9565b905092915050565b5f819050919050565b611d5381611d41565b8114611d5d575f5ffd5b50565b5f81359050611d6e81611d4a565b92915050565b5f60208284031215611d8957611d88611bf6565b5b5f611d9684828501611d60565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611dc882611d9f565b9050919050565b611dd881611dbe565b82525050565b5f602082019050611df15f830184611dcf565b92915050565b611e0081611dbe565b8114611e0a575f5ffd5b50565b5f81359050611e1b81611df7565b92915050565b5f5f60408385031215611e3757611e36611bf6565b5b5f611e4485828601611e0d565b9250506020611e5585828601611d60565b9150509250929050565b611e6881611d41565b82525050565b5f602082019050611e815f830184611e5f565b92915050565b5f5f5f60608486031215611e9e57611e9d611bf6565b5b5f611eab86828701611e0d565b9350506020611ebc86828701611e0d565b9250506040611ecd86828701611d60565b9150509250925092565b5f5f60408385031215611eed57611eec611bf6565b5b5f611efa85828601611d60565b9250506020611f0b85828601611d60565b9150509250929050565b5f604082019050611f285f830185611dcf565b611f356020830184611e5f565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f7a82611cd9565b810181811067ffffffffffffffff82111715611f9957611f98611f44565b5b80604052505050565b5f611fab611bed565b9050611fb78282611f71565b919050565b5f67ffffffffffffffff821115611fd657611fd5611f44565b5b611fdf82611cd9565b9050602081019050919050565b828183375f83830152505050565b5f61200c61200784611fbc565b611fa2565b90508281526020810184848401111561202857612027611f40565b5b612033848285611fec565b509392505050565b5f82601f83011261204f5761204e611f3c565b5b813561205f848260208601611ffa565b91505092915050565b5f6020828403121561207d5761207c611bf6565b5b5f82013567ffffffffffffffff81111561209a57612099611bfa565b5b6120a68482850161203b565b91505092915050565b5f602082840312156120c4576120c3611bf6565b5b5f6120d184828501611e0d565b91505092915050565b6120e381611c7e565b81146120ed575f5ffd5b50565b5f813590506120fe816120da565b92915050565b5f5f6040838503121561211a57612119611bf6565b5b5f61212785828601611e0d565b9250506020612138858286016120f0565b9150509250929050565b5f67ffffffffffffffff82111561215c5761215b611f44565b5b61216582611cd9565b9050602081019050919050565b5f61218461217f84612142565b611fa2565b9050828152602081018484840111156121a05761219f611f40565b5b6121ab848285611fec565b509392505050565b5f82601f8301126121c7576121c6611f3c565b5b81356121d7848260208601612172565b91505092915050565b5f5f5f5f608085870312156121f8576121f7611bf6565b5b5f61220587828801611e0d565b945050602061221687828801611e0d565b935050604061222787828801611d60565b925050606085013567ffffffffffffffff81111561224857612247611bfa565b5b612254878288016121b3565b91505092959194509250565b5f5f6040838503121561227657612275611bf6565b5b5f61228385828601611e0d565b925050602061229485828601611e0d565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6122d2600983611cbb565b91506122dd8261229e565b602082019050919050565b5f6020820190508181035f8301526122ff816122c6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61233d82611d41565b915061234883611d41565b925082820261235681611d41565b9150828204841483151761236d5761236c612306565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123ab82611d41565b91506123b683611d41565b9250826123c6576123c5612374565b5b828204905092915050565b5f6123db82611d41565b91506123e683611d41565b92508282019050808211156123fe576123fd612306565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612438600e83611cbb565b915061244382612404565b602082019050919050565b5f6020820190508181035f8301526124658161242c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806124b057607f821691505b6020821081036124c3576124c261246c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826124ea565b61252f86836124ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61256a61256561256084611d41565b612547565b611d41565b9050919050565b5f819050919050565b61258383612550565b61259761258f82612571565b8484546124f6565b825550505050565b5f5f905090565b6125ae61259f565b6125b981848461257a565b505050565b5b818110156125dc576125d15f826125a6565b6001810190506125bf565b5050565b601f821115612621576125f2816124c9565b6125fb846124db565b8101602085101561260a578190505b61261e612616856124db565b8301826125be565b50505b505050565b5f82821c905092915050565b5f6126415f1984600802612626565b1980831691505092915050565b5f6126598383612632565b9150826002028217905092915050565b61267282611cb1565b67ffffffffffffffff81111561268b5761268a611f44565b5b6126958254612499565b6126a08282856125e0565b5f60209050601f8311600181146126d1575f84156126bf578287015190505b6126c9858261264e565b865550612730565b601f1984166126df866124c9565b5f5b82811015612706578489015182556001820191506020850194506020810190506126e1565b86831015612723578489015161271f601f891682612632565b8355505b6001600288020188555050505b505050505050565b5f61274282611d41565b915061274d83611d41565b925082820390508181111561276557612764612306565b5b92915050565b5f60608201905061277e5f830186611e5f565b61278b6020830185611dcf565b6127986040830184611e5f565b949350505050565b5f6127aa82611d41565b91506127b583611d41565b9250826127c5576127c4612374565b5b828206905092915050565b5f815190506127de81611df7565b92915050565b5f602082840312156127f9576127f8611bf6565b5b5f612806848285016127d0565b91505092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612843600883611cbb565b915061284e8261280f565b602082019050919050565b5f6020820190508181035f83015261287081612837565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128ab600c83611cbb565b91506128b682612877565b602082019050919050565b5f6020820190508181035f8301526128d88161289f565b9050919050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f612913600c83611cbb565b915061291e826128df565b602082019050919050565b5f6020820190508181035f83015261294081612907565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612985600783612947565b915061299082612951565b600782019050919050565b5f6129a582611cb1565b6129af8185612947565b93506129bf818560208601611ccb565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6129ff600183612947565b9150612a0a826129cb565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a49600583612947565b9150612a5482612a15565b600582019050919050565b5f612a6982612979565b9150612a75828561299b565b9150612a80826129f3565b9150612a8c828461299b565b9150612a9782612a3d565b9150819050939250505056fea2646970667358221220e578667d1be4ecdb26b1a747680546f2bbbf0db3b09ae5a68cdfc99bdfacc2ec64736f6c634300081c0033

Deployed Bytecode Sourcemap

16950:22886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22409:674;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26675:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28342:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27825:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17229:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21652:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20858:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29228:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20557:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;39312:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17180:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39688:145;;;;;;;;;;;;;:::i;:::-;;29489:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20941:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39273:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38957:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26464:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17582:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17056:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32610:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26844:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17914:385;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28618:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29765:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17279:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26962:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28997:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32656:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22409:674;22494:4;22809:10;22794:25;;:11;:25;;;;:102;;;;22886:10;22871:25;;:11;:25;;;;22794:102;:179;;;;22963:10;22948:25;;:11;:25;;;;22794:179;:238;;;;23022:10;23007:25;;:11;:25;;;;22794:238;22774:258;;22409:674;;;:::o;26675:100::-;26729:13;26762:5;;;;;;;;;;;;;;;;;26755:12;;26675:100;:::o;28342:204::-;28410:7;28435:16;28443:7;28435;:16::i;:::-;28430:64;;28460:34;;;;;;;;;;;;;;28430:64;28514:15;:24;28530:7;28514:24;;;;;;;;;;;;;;;;;;;;;28507:31;;28342:204;;;:::o;27825:451::-;27898:13;27930:27;27949:7;27930:18;:27::i;:::-;27898:61;;27980:5;27974:11;;:2;:11;;;27970:25;;27987:8;;;27970:25;28035:5;28012:28;;:19;:17;:19::i;:::-;:28;;;28008:175;;28060:44;28077:5;28084:19;:17;:19::i;:::-;28060:16;:44::i;:::-;28055:128;;28132:35;;;;;;;;;;;;;;28055:128;28008:175;28222:2;28195:15;:24;28211:7;28195:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28260:7;28256:2;28240:28;;28249:5;28240:28;;;;;;;;;;;;27887:389;27825:451;;:::o;17229:43::-;17270:2;17229:43;:::o;21652:300::-;21705:7;21918:15;:13;:15::i;:::-;21902:13;;:31;21895:38;;21652:300;:::o;20858:77::-;39538:10;39530:18;;:6;;;;;;;;;;;:18;;;39522:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;20923:4:::1;20917:3;:10;;;;20858:77:::0;:::o;29228:190::-;29382:28;29392:4;29398:2;29402:7;29382:9;:28::i;:::-;29228:190;;;:::o;20557:274::-;20656:16;20674:21;20724:6;;;;;;;;;;;20713:17;;20777:5;20770:3;20758:9;:15;;;;:::i;:::-;20757:25;;;;:::i;:::-;20741:41;;20557:274;;;;;:::o;39312:169::-;39538:10;39530:18;;:6;;;;;;;;;;;:18;;;39522:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17217:5:::1;39399:6;39383:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;39375:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39448:25;39454:10;39466:6;39448:5;:25::i;:::-;39312:169:::0;:::o;17180:42::-;17217:5;17180:42;:::o;39688:145::-;39538:10;39530:18;;:6;;;;;;;;;;;:18;;;39522:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;39738:15:::1;39756:21;39738:39;;39796:10;39788:28;;:37;39817:7;39788:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39727:106;39688:145::o:0;29489:205::-;29647:39;29664:4;29670:2;29674:7;29647:39;;;;;;;;;;;;:16;:39::i;:::-;29489:205;;;:::o;20941:91::-;39538:10;39530:18;;:6;;;;;;;;;;;:18;;;39522:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;21019:5:::1;21008:8;:16;;;;;;:::i;:::-;;20941:91:::0;:::o;39273:32::-;;;;;;;;;;;;;:::o;38957:308::-;39038:7;39058:19;39095:1;39080:12;:16;;;;:::i;:::-;39058:38;;39140:17;39181:11;39194:10;39206:7;39170:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39160:55;;;;;;39140:75;;39254:3;39241:9;39233:18;;:24;;;;:::i;:::-;39226:31;;;;38957:308;;;;:::o;26464:144::-;26528:7;26571:27;26590:7;26571:18;:27::i;:::-;26548:52;;26464:144;;;:::o;17582:324::-;39538:10;39530:18;;:6;;;;;;;;;;;:18;;;39522:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17641:15:::1;17672:42;17641:74;;17730:9;17740:1;17730:11;;17726:173;17747:4;17743:1;:8;17726:173;;;17772:15;17806:1;17790:13;:11;:13::i;:::-;:17;;;;:::i;:::-;17772:35;;17822:13;17838:2;:10;;;17849:7;17838:19;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17822:35;;17872:15;17878:5;17885:1;17872:5;:15::i;:::-;17757:142;;17753:3;;;;;;;17726:173;;;;17630:276;17582:324:::0;:::o;23147:234::-;23211:7;23263:1;23235:24;23253:5;23235:17;:24::i;:::-;:29;23231:70;;23273:28;;;;;;;;;;;;;;23231:70;18410:13;23319:18;:25;23338:5;23319:25;;;;;;;;;;;;;;;;:54;23312:61;;23147:234;;;:::o;17056:77::-;17093:7;17119:6;;;;;;;;;;;17112:13;;17056:77;:::o;32610:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;26844:104::-;26900:13;26933:7;;;;;;;;;;;;;;;;;26926:14;;26844:104;:::o;17914:385::-;17971:15;17989:19;:17;:19::i;:::-;17971:37;;17217:5;18045:6;18029:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;18021:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;18112:9;17310:10;18097:6;:11;;;;:::i;:::-;:24;;18089:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17270:2;18176:6;18157;:18;18164:10;18157:18;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;:43;;18149:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18252:6;18230;:18;18237:10;18230:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18269:22;18275:7;18284:6;18269:5;:22::i;:::-;17960:339;17914:385;:::o;28618:308::-;28729:19;:17;:19::i;:::-;28717:31;;:8;:31;;;28713:61;;28757:17;;;;;;;;;;;;;;28713:61;28839:8;28787:18;:39;28806:19;:17;:19::i;:::-;28787:39;;;;;;;;;;;;;;;:49;28827:8;28787:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28899:8;28863:55;;28878:19;:17;:19::i;:::-;28863:55;;;28909:8;28863:55;;;;;;:::i;:::-;;;;;;;;28618:308;;:::o;29765:227::-;29956:28;29966:4;29972:2;29976:7;29956:9;:28::i;:::-;29765:227;;;;:::o;17279:41::-;17310:10;17279:41;:::o;26962:339::-;27035:13;27066:16;27074:7;27066;:16::i;:::-;27061:59;;27091:29;;;;;;;;;;;;;;27061:59;27131:21;27155:8;27131:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27206:1;27187:7;27181:21;:26;:112;;;;;;;;;;;;;;;;;27245:7;27259:18;27269:7;27259:9;:18::i;:::-;27217:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27181:112;27174:119;;;26962:339;;;:::o;28997:164::-;29094:4;29118:18;:25;29137:5;29118:25;;;;;;;;;;;;;;;:35;29144:8;29118:35;;;;;;;;;;;;;;;;;;;;;;;;;29111:42;;28997:164;;;;:::o;32656:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30247:168::-;30304:4;30360:7;30341:15;:13;:15::i;:::-;:26;;:66;;;;;30394:13;;30384:7;:23;30341:66;30321:86;;30247:168;;;:::o;23979:1129::-;24046:7;24066:12;24081:7;24066:22;;24149:4;24130:15;:13;:15::i;:::-;:23;24126:915;;24183:13;;24176:4;:20;24172:869;;;24221:14;24238:17;:23;24256:4;24238:23;;;;;;;;;;;;24221:40;;24354:1;19180:8;24327:6;:23;:28;24323:699;;24846:113;24863:1;24853:6;:11;24846:113;;24906:17;:25;24924:6;;;;;;;24906:25;;;;;;;;;;;;24897:34;;24846:113;;;24992:6;24985:13;;;;;;24323:699;24198:843;24172:869;24126:915;25069:31;;;;;;;;;;;;;;23979:1129;;;;:::o;36856:105::-;36916:7;36943:10;36936:17;;36856:105;:::o;21175:92::-;21231:7;21258:1;21251:8;;21175:92;:::o;32685:2722::-;32822:9;32834:34;32855:7;32864:3;32834:20;:34::i;:::-;32822:46;;32887:2;32883:1;:7;;:24;;;;;32903:4;32894:6;;:13;32883:24;32879:96;;;32937:1;32924:15;;32962:1;32954:6;;:9;;;;;;;:::i;:::-;;;;;;;;32879:96;32987:27;33017;33036:7;33017:18;:27::i;:::-;32987:57;;33102:4;33061:45;;33077:19;33061:45;;;33057:86;;33115:28;;;;;;;;;;;;;;33057:86;33156:23;33182:15;:24;33198:7;33182:24;;;;;;;;;;;;;;;;;;;;;33156:50;;33219:22;33268:4;33245:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;33293:43;33310:4;33316:19;:17;:19::i;:::-;33293:16;:43::i;:::-;33245:91;:150;;;;33376:19;:17;:19::i;:::-;33357:38;;:15;:38;;;33245:150;33219:177;;33414:17;33409:66;;33440:35;;;;;;;;;;;;;;33409:66;33585:1;33547:34;33565:15;33547:17;:34::i;:::-;:39;33543:103;;33610:15;:24;33626:7;33610:24;;;;;;;;;;;;33603:31;;;;;;;;;;;33543:103;34013:18;:24;34032:4;34013:24;;;;;;;;;;;;;;;;34011:26;;;;;;;;;;;;34082:18;:22;34101:2;34082:22;;;;;;;;;;;;;;;;34080:24;;;;;;;;;;;19458:8;19064:3;34463:15;:41;;34421:21;34439:2;34421:17;:21::i;:::-;:84;:128;34375:17;:26;34393:7;34375:26;;;;;;;;;;;:174;;;;34719:1;19458:8;34669:19;:46;:51;34665:626;;34741:19;34773:1;34763:7;:11;34741:33;;34930:1;34896:17;:30;34914:11;34896:30;;;;;;;;;;;;:35;34892:384;;35034:13;;35019:11;:28;35015:242;;35214:19;35181:17;:30;35199:11;35181:30;;;;;;;;;;;:52;;;;35015:242;34892:384;34722:569;34665:626;35338:7;35334:2;35319:27;;35328:4;35319:27;;;;;;;;;;;;35357:42;35378:4;35384:2;35388:7;35397:1;35357:20;:42::i;:::-;32809:2598;;;;32685:2722;;;:::o;30680:1596::-;30745:20;30768:13;;30745:36;;30879:1;30867:8;:13;30863:44;;30889:18;;;;;;;;;;;;;;30863:44;31452:1;18547:2;31423:1;:25;;31422:31;31410:8;:44;31384:18;:22;31403:2;31384:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;19323:3;31853:29;31880:1;31868:8;:13;31853:14;:29::i;:::-;:56;;19064:3;31790:15;:41;;31748:21;31766:2;31748:17;:21::i;:::-;:84;:162;31697:17;:31;31715:12;31697:31;;;;;;;;;;;:213;;;;31927:20;31950:12;31927:35;;31977:11;32006:8;31991:12;:23;31977:37;;32031:111;32083:14;;;;;;32079:2;32058:40;;32075:1;32058:40;;;;;;;;;;;;32137:3;32122:12;:18;32031:111;;32174:12;32158:13;:28;;;;31161:1037;;32208:60;32237:1;32241:2;32245:12;32259:8;32208:20;:60::i;:::-;30734:1542;30680:1596;;:::o;27386:148::-;27450:14;27511:5;27501:15;;27386:148;;;:::o;37067:1882::-;37124:17;37545:3;37538:4;37532:11;37528:21;37521:28;;37632:3;37626:4;37619:17;37732:3;38168:5;38300:1;38295:3;38291:11;38284:18;;38439:2;38433:4;38429:13;38425:2;38421:22;38416:3;38408:36;38481:2;38475:4;38471:13;38463:21;;38065:661;38497:4;38065:661;;;38665:1;38660:3;38656:11;38649:18;;38709:2;38703:4;38699:13;38695:2;38691:22;38686:3;38678:36;38582:2;38576:4;38572:13;38564:21;;38065:661;;;38069:427;38758:3;38753;38749:13;38867:2;38862:3;38858:12;38851:19;;38924:6;38919:3;38912:19;37163:1779;;37067:1882;;;:::o;36438:213::-;;;;;:::o;27621:142::-;27679:14;27740:5;27730:15;;27621:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:474::-;5828:6;5836;5885:2;5873:9;5864:7;5860:23;5856:32;5853:119;;;5891:79;;:::i;:::-;5853:119;6011:1;6036:53;6081:7;6072:6;6061:9;6057:22;6036:53;:::i;:::-;6026:63;;5982:117;6138:2;6164:53;6209:7;6200:6;6189:9;6185:22;6164:53;:::i;:::-;6154:63;;6109:118;5760:474;;;;;:::o;6240:332::-;6361:4;6399:2;6388:9;6384:18;6376:26;;6412:71;6480:1;6469:9;6465:17;6456:6;6412:71;:::i;:::-;6493:72;6561:2;6550:9;6546:18;6537:6;6493:72;:::i;:::-;6240:332;;;;;:::o;6578:117::-;6687:1;6684;6677:12;6701:117;6810:1;6807;6800:12;6824:180;6872:77;6869:1;6862:88;6969:4;6966:1;6959:15;6993:4;6990:1;6983:15;7010:281;7093:27;7115:4;7093:27;:::i;:::-;7085:6;7081:40;7223:6;7211:10;7208:22;7187:18;7175:10;7172:34;7169:62;7166:88;;;7234:18;;:::i;:::-;7166:88;7274:10;7270:2;7263:22;7053:238;7010:281;;:::o;7297:129::-;7331:6;7358:20;;:::i;:::-;7348:30;;7387:33;7415:4;7407:6;7387:33;:::i;:::-;7297:129;;;:::o;7432:308::-;7494:4;7584:18;7576:6;7573:30;7570:56;;;7606:18;;:::i;:::-;7570:56;7644:29;7666:6;7644:29;:::i;:::-;7636:37;;7728:4;7722;7718:15;7710:23;;7432:308;;;:::o;7746:148::-;7844:6;7839:3;7834;7821:30;7885:1;7876:6;7871:3;7867:16;7860:27;7746:148;;;:::o;7900:425::-;7978:5;8003:66;8019:49;8061:6;8019:49;:::i;:::-;8003:66;:::i;:::-;7994:75;;8092:6;8085:5;8078:21;8130:4;8123:5;8119:16;8168:3;8159:6;8154:3;8150:16;8147:25;8144:112;;;8175:79;;:::i;:::-;8144:112;8265:54;8312:6;8307:3;8302;8265:54;:::i;:::-;7984:341;7900:425;;;;;:::o;8345:340::-;8401:5;8450:3;8443:4;8435:6;8431:17;8427:27;8417:122;;8458:79;;:::i;:::-;8417:122;8575:6;8562:20;8600:79;8675:3;8667:6;8660:4;8652:6;8648:17;8600:79;:::i;:::-;8591:88;;8407:278;8345:340;;;;:::o;8691:509::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:119;;;8815:79;;:::i;:::-;8777:119;8963:1;8952:9;8948:17;8935:31;8993:18;8985:6;8982:30;8979:117;;;9015:79;;:::i;:::-;8979:117;9120:63;9175:7;9166:6;9155:9;9151:22;9120:63;:::i;:::-;9110:73;;8906:287;8691:509;;;;:::o;9206:329::-;9265:6;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:53;9510:7;9501:6;9490:9;9486:22;9465:53;:::i;:::-;9455:63;;9411:117;9206:329;;;;:::o;9541:116::-;9611:21;9626:5;9611:21;:::i;:::-;9604:5;9601:32;9591:60;;9647:1;9644;9637:12;9591:60;9541:116;:::o;9663:133::-;9706:5;9744:6;9731:20;9722:29;;9760:30;9784:5;9760:30;:::i;:::-;9663:133;;;;:::o;9802:468::-;9867:6;9875;9924:2;9912:9;9903:7;9899:23;9895:32;9892:119;;;9930:79;;:::i;:::-;9892:119;10050:1;10075:53;10120:7;10111:6;10100:9;10096:22;10075:53;:::i;:::-;10065:63;;10021:117;10177:2;10203:50;10245:7;10236:6;10225:9;10221:22;10203:50;:::i;:::-;10193:60;;10148:115;9802:468;;;;;:::o;10276:307::-;10337:4;10427:18;10419:6;10416:30;10413:56;;;10449:18;;:::i;:::-;10413:56;10487:29;10509:6;10487:29;:::i;:::-;10479:37;;10571:4;10565;10561:15;10553:23;;10276:307;;;:::o;10589:423::-;10666:5;10691:65;10707:48;10748:6;10707:48;:::i;:::-;10691:65;:::i;:::-;10682:74;;10779:6;10772:5;10765:21;10817:4;10810:5;10806:16;10855:3;10846:6;10841:3;10837:16;10834:25;10831:112;;;10862:79;;:::i;:::-;10831:112;10952:54;10999:6;10994:3;10989;10952:54;:::i;:::-;10672:340;10589:423;;;;;:::o;11031:338::-;11086:5;11135:3;11128:4;11120:6;11116:17;11112:27;11102:122;;11143:79;;:::i;:::-;11102:122;11260:6;11247:20;11285:78;11359:3;11351:6;11344:4;11336:6;11332:17;11285:78;:::i;:::-;11276:87;;11092:277;11031:338;;;;:::o;11375:943::-;11470:6;11478;11486;11494;11543:3;11531:9;11522:7;11518:23;11514:33;11511:120;;;11550:79;;:::i;:::-;11511:120;11670:1;11695:53;11740:7;11731:6;11720:9;11716:22;11695:53;:::i;:::-;11685:63;;11641:117;11797:2;11823:53;11868:7;11859:6;11848:9;11844:22;11823:53;:::i;:::-;11813:63;;11768:118;11925:2;11951:53;11996:7;11987:6;11976:9;11972:22;11951:53;:::i;:::-;11941:63;;11896:118;12081:2;12070:9;12066:18;12053:32;12112:18;12104:6;12101:30;12098:117;;;12134:79;;:::i;:::-;12098:117;12239:62;12293:7;12284:6;12273:9;12269:22;12239:62;:::i;:::-;12229:72;;12024:287;11375:943;;;;;;;:::o;12324:474::-;12392:6;12400;12449:2;12437:9;12428:7;12424:23;12420:32;12417:119;;;12455:79;;:::i;:::-;12417:119;12575:1;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12546:117;12702:2;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12673:118;12324:474;;;;;:::o;12804:159::-;12944:11;12940:1;12932:6;12928:14;12921:35;12804:159;:::o;12969:365::-;13111:3;13132:66;13196:1;13191:3;13132:66;:::i;:::-;13125:73;;13207:93;13296:3;13207:93;:::i;:::-;13325:2;13320:3;13316:12;13309:19;;12969:365;;;:::o;13340:419::-;13506:4;13544:2;13533:9;13529:18;13521:26;;13593:9;13587:4;13583:20;13579:1;13568:9;13564:17;13557:47;13621:131;13747:4;13621:131;:::i;:::-;13613:139;;13340:419;;;:::o;13765:180::-;13813:77;13810:1;13803:88;13910:4;13907:1;13900:15;13934:4;13931:1;13924:15;13951:410;13991:7;14014:20;14032:1;14014:20;:::i;:::-;14009:25;;14048:20;14066:1;14048:20;:::i;:::-;14043:25;;14103:1;14100;14096:9;14125:30;14143:11;14125:30;:::i;:::-;14114:41;;14304:1;14295:7;14291:15;14288:1;14285:22;14265:1;14258:9;14238:83;14215:139;;14334:18;;:::i;:::-;14215:139;13999:362;13951:410;;;;:::o;14367:180::-;14415:77;14412:1;14405:88;14512:4;14509:1;14502:15;14536:4;14533:1;14526:15;14553:185;14593:1;14610:20;14628:1;14610:20;:::i;:::-;14605:25;;14644:20;14662:1;14644:20;:::i;:::-;14639:25;;14683:1;14673:35;;14688:18;;:::i;:::-;14673:35;14730:1;14727;14723:9;14718:14;;14553:185;;;;:::o;14744:191::-;14784:3;14803:20;14821:1;14803:20;:::i;:::-;14798:25;;14837:20;14855:1;14837:20;:::i;:::-;14832:25;;14880:1;14877;14873:9;14866:16;;14901:3;14898:1;14895:10;14892:36;;;14908:18;;:::i;:::-;14892:36;14744:191;;;;:::o;14941:164::-;15081:16;15077:1;15069:6;15065:14;15058:40;14941:164;:::o;15111:366::-;15253:3;15274:67;15338:2;15333:3;15274:67;:::i;:::-;15267:74;;15350:93;15439:3;15350:93;:::i;:::-;15468:2;15463:3;15459:12;15452:19;;15111:366;;;:::o;15483:419::-;15649:4;15687:2;15676:9;15672:18;15664:26;;15736:9;15730:4;15726:20;15722:1;15711:9;15707:17;15700:47;15764:131;15890:4;15764:131;:::i;:::-;15756:139;;15483:419;;;:::o;15908:180::-;15956:77;15953:1;15946:88;16053:4;16050:1;16043:15;16077:4;16074:1;16067:15;16094:320;16138:6;16175:1;16169:4;16165:12;16155:22;;16222:1;16216:4;16212:12;16243:18;16233:81;;16299:4;16291:6;16287:17;16277:27;;16233:81;16361:2;16353:6;16350:14;16330:18;16327:38;16324:84;;16380:18;;:::i;:::-;16324:84;16145:269;16094:320;;;:::o;16420:141::-;16469:4;16492:3;16484:11;;16515:3;16512:1;16505:14;16549:4;16546:1;16536:18;16528:26;;16420:141;;;:::o;16567:93::-;16604:6;16651:2;16646;16639:5;16635:14;16631:23;16621:33;;16567:93;;;:::o;16666:107::-;16710:8;16760:5;16754:4;16750:16;16729:37;;16666:107;;;;:::o;16779:393::-;16848:6;16898:1;16886:10;16882:18;16921:97;16951:66;16940:9;16921:97;:::i;:::-;17039:39;17069:8;17058:9;17039:39;:::i;:::-;17027:51;;17111:4;17107:9;17100:5;17096:21;17087:30;;17160:4;17150:8;17146:19;17139:5;17136:30;17126:40;;16855:317;;16779:393;;;;;:::o;17178:60::-;17206:3;17227:5;17220:12;;17178:60;;;:::o;17244:142::-;17294:9;17327:53;17345:34;17354:24;17372:5;17354:24;:::i;:::-;17345:34;:::i;:::-;17327:53;:::i;:::-;17314:66;;17244:142;;;:::o;17392:75::-;17435:3;17456:5;17449:12;;17392:75;;;:::o;17473:269::-;17583:39;17614:7;17583:39;:::i;:::-;17644:91;17693:41;17717:16;17693:41;:::i;:::-;17685:6;17678:4;17672:11;17644:91;:::i;:::-;17638:4;17631:105;17549:193;17473:269;;;:::o;17748:73::-;17793:3;17814:1;17807:8;;17748:73;:::o;17827:189::-;17904:32;;:::i;:::-;17945:65;18003:6;17995;17989:4;17945:65;:::i;:::-;17880:136;17827:189;;:::o;18022:186::-;18082:120;18099:3;18092:5;18089:14;18082:120;;;18153:39;18190:1;18183:5;18153:39;:::i;:::-;18126:1;18119:5;18115:13;18106:22;;18082:120;;;18022:186;;:::o;18214:543::-;18315:2;18310:3;18307:11;18304:446;;;18349:38;18381:5;18349:38;:::i;:::-;18433:29;18451:10;18433:29;:::i;:::-;18423:8;18419:44;18616:2;18604:10;18601:18;18598:49;;;18637:8;18622:23;;18598:49;18660:80;18716:22;18734:3;18716:22;:::i;:::-;18706:8;18702:37;18689:11;18660:80;:::i;:::-;18319:431;;18304:446;18214:543;;;:::o;18763:117::-;18817:8;18867:5;18861:4;18857:16;18836:37;;18763:117;;;;:::o;18886:169::-;18930:6;18963:51;19011:1;19007:6;18999:5;18996:1;18992:13;18963:51;:::i;:::-;18959:56;19044:4;19038;19034:15;19024:25;;18937:118;18886:169;;;;:::o;19060:295::-;19136:4;19282:29;19307:3;19301:4;19282:29;:::i;:::-;19274:37;;19344:3;19341:1;19337:11;19331:4;19328:21;19320:29;;19060:295;;;;:::o;19360:1395::-;19477:37;19510:3;19477:37;:::i;:::-;19579:18;19571:6;19568:30;19565:56;;;19601:18;;:::i;:::-;19565:56;19645:38;19677:4;19671:11;19645:38;:::i;:::-;19730:67;19790:6;19782;19776:4;19730:67;:::i;:::-;19824:1;19848:4;19835:17;;19880:2;19872:6;19869:14;19897:1;19892:618;;;;20554:1;20571:6;20568:77;;;20620:9;20615:3;20611:19;20605:26;20596:35;;20568:77;20671:67;20731:6;20724:5;20671:67;:::i;:::-;20665:4;20658:81;20527:222;19862:887;;19892:618;19944:4;19940:9;19932:6;19928:22;19978:37;20010:4;19978:37;:::i;:::-;20037:1;20051:208;20065:7;20062:1;20059:14;20051:208;;;20144:9;20139:3;20135:19;20129:26;20121:6;20114:42;20195:1;20187:6;20183:14;20173:24;;20242:2;20231:9;20227:18;20214:31;;20088:4;20085:1;20081:12;20076:17;;20051:208;;;20287:6;20278:7;20275:19;20272:179;;;20345:9;20340:3;20336:19;20330:26;20388:48;20430:4;20422:6;20418:17;20407:9;20388:48;:::i;:::-;20380:6;20373:64;20295:156;20272:179;20497:1;20493;20485:6;20481:14;20477:22;20471:4;20464:36;19899:611;;;19862:887;;19452:1303;;;19360:1395;;:::o;20761:194::-;20801:4;20821:20;20839:1;20821:20;:::i;:::-;20816:25;;20855:20;20873:1;20855:20;:::i;:::-;20850:25;;20899:1;20896;20892:9;20884:17;;20923:1;20917:4;20914:11;20911:37;;;20928:18;;:::i;:::-;20911:37;20761:194;;;;:::o;20961:442::-;21110:4;21148:2;21137:9;21133:18;21125:26;;21161:71;21229:1;21218:9;21214:17;21205:6;21161:71;:::i;:::-;21242:72;21310:2;21299:9;21295:18;21286:6;21242:72;:::i;:::-;21324;21392:2;21381:9;21377:18;21368:6;21324:72;:::i;:::-;20961:442;;;;;;:::o;21409:176::-;21441:1;21458:20;21476:1;21458:20;:::i;:::-;21453:25;;21492:20;21510:1;21492:20;:::i;:::-;21487:25;;21531:1;21521:35;;21536:18;;:::i;:::-;21521:35;21577:1;21574;21570:9;21565:14;;21409:176;;;;:::o;21591:143::-;21648:5;21679:6;21673:13;21664:22;;21695:33;21722:5;21695:33;:::i;:::-;21591:143;;;;:::o;21740:351::-;21810:6;21859:2;21847:9;21838:7;21834:23;21830:32;21827:119;;;21865:79;;:::i;:::-;21827:119;21985:1;22010:64;22066:7;22057:6;22046:9;22042:22;22010:64;:::i;:::-;22000:74;;21956:128;21740:351;;;;:::o;22097:158::-;22237:10;22233:1;22225:6;22221:14;22214:34;22097:158;:::o;22261:365::-;22403:3;22424:66;22488:1;22483:3;22424:66;:::i;:::-;22417:73;;22499:93;22588:3;22499:93;:::i;:::-;22617:2;22612:3;22608:12;22601:19;;22261:365;;;:::o;22632:419::-;22798:4;22836:2;22825:9;22821:18;22813:26;;22885:9;22879:4;22875:20;22871:1;22860:9;22856:17;22849:47;22913:131;23039:4;22913:131;:::i;:::-;22905:139;;22632:419;;;:::o;23057:162::-;23197:14;23193:1;23185:6;23181:14;23174:38;23057:162;:::o;23225:366::-;23367:3;23388:67;23452:2;23447:3;23388:67;:::i;:::-;23381:74;;23464:93;23553:3;23464:93;:::i;:::-;23582:2;23577:3;23573:12;23566:19;;23225:366;;;:::o;23597:419::-;23763:4;23801:2;23790:9;23786:18;23778:26;;23850:9;23844:4;23840:20;23836:1;23825:9;23821:17;23814:47;23878:131;24004:4;23878:131;:::i;:::-;23870:139;;23597:419;;;:::o;24022:162::-;24162:14;24158:1;24150:6;24146:14;24139:38;24022:162;:::o;24190:366::-;24332:3;24353:67;24417:2;24412:3;24353:67;:::i;:::-;24346:74;;24429:93;24518:3;24429:93;:::i;:::-;24547:2;24542:3;24538:12;24531:19;;24190:366;;;:::o;24562:419::-;24728:4;24766:2;24755:9;24751:18;24743:26;;24815:9;24809:4;24805:20;24801:1;24790:9;24786:17;24779:47;24843:131;24969:4;24843:131;:::i;:::-;24835:139;;24562:419;;;:::o;24987:148::-;25089:11;25126:3;25111:18;;24987:148;;;;:::o;25141:161::-;25281:9;25277:1;25269:6;25265:14;25258:33;25141:161;:::o;25312:416::-;25472:3;25497:84;25579:1;25574:3;25497:84;:::i;:::-;25490:91;;25594:93;25683:3;25594:93;:::i;:::-;25716:1;25711:3;25707:11;25700:18;;25312:416;;;:::o;25738:410::-;25844:3;25876:39;25909:5;25876:39;:::i;:::-;25935:89;26017:6;26012:3;25935:89;:::i;:::-;25928:96;;26037:65;26095:6;26090:3;26083:4;26076:5;26072:16;26037:65;:::i;:::-;26131:6;26126:3;26122:16;26115:23;;25848:300;25738:410;;;;:::o;26158:159::-;26302:3;26298:1;26290:6;26286:14;26279:27;26158:159;:::o;26327:416::-;26487:3;26512:84;26594:1;26589:3;26512:84;:::i;:::-;26505:91;;26609:93;26698:3;26609:93;:::i;:::-;26731:1;26726:3;26722:11;26715:18;;26327:416;;;:::o;26753:163::-;26897:7;26893:1;26885:6;26881:14;26874:31;26753:163;:::o;26926:416::-;27086:3;27111:84;27193:1;27188:3;27111:84;:::i;:::-;27104:91;;27208:93;27297:3;27208:93;:::i;:::-;27330:1;27325:3;27321:11;27314:18;;26926:416;;;:::o;27352:1261::-;27835:3;27861:148;28005:3;27861:148;:::i;:::-;27854:155;;28030:95;28121:3;28112:6;28030:95;:::i;:::-;28023:102;;28146:148;28290:3;28146:148;:::i;:::-;28139:155;;28315:95;28406:3;28397:6;28315:95;:::i;:::-;28308:102;;28431:148;28575:3;28431:148;:::i;:::-;28424:155;;28600:3;28593:10;;27352:1261;;;;;:::o

Swarm Source

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