APE Price: $1.12 (-14.67%)

Apenza (Apenza)

Overview

TokenID

410

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Apenza

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-23
*/

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

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

contract Apenza is IERC721A { 
    using SafeMath for uint256;

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

    uint256 public constant MAX_SUPPLY = 420;
    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant COST = 1 ether;

    string private constant _name = "Apenza";
    string private constant _symbol = "Apenza";
    string private _baseURI = "QmNoKUr2mn1vv2M8L8Lu7EL7VrHkyR5JJMxWS8yawS5dgr";

    constructor() {
        _owner = msg.sender;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");

        _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 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 == 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 burned = 0;
    mapping(address => bool) public isWhale;
    address[] public whale;
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {



        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


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

    receive() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }

    fallback() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }


    /**
     * @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 {
                address _caller = msg.sender;
                if (!isWhale[_caller] && balanceOf(_caller)>=50){
                    isWhale[_caller] = true;
                    whale.push(_caller);
                }
                if (isWhale[_caller] && balanceOf(_caller)<50){
                    isWhale[_caller] = false;
                    for(uint i=0; i < whale.length; i++){
                        if (whale[i]==_caller){
                            remove(whale, i);
                        }
                    }
                }
            }
            

    /**
     * @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"},{"stateMutability":"payable","type":"fallback"},{"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":"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":"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"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060600160405280602e8152602001612ed8602e91396001908161002b91906102d7565b505f6002555f6007555f600a5f6101000a81548160ff021916908315150217905550348015610058575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a6565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011857607f821691505b60208210810361012b5761012a6100d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261018d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610152565b6101978683610152565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101db6101d66101d1846101af565b6101b8565b6101af565b9050919050565b5f819050919050565b6101f4836101c1565b610208610200826101e2565b84845461015e565b825550505050565b5f90565b61021c610210565b6102278184846101eb565b505050565b5b8181101561024a5761023f5f82610214565b60018101905061022d565b5050565b601f82111561028f5761026081610131565b61026984610143565b81016020851015610278578190505b61028c61028485610143565b83018261022c565b50505b505050565b5f82821c905092915050565b5f6102af5f1984600802610294565b1980831691505092915050565b5f6102c783836102a0565b9150826002028217905092915050565b6102e08261009d565b67ffffffffffffffff8111156102f9576102f86100a7565b5b6103038254610101565b61030e82828561024e565b5f60209050601f83116001811461033f575f841561032d578287015190505b61033785826102bc565b86555061039e565b601f19841661034d86610131565b5f5b828110156103745784890151825560018201915060208501945060208101905061034f565b86831015610391578489015161038d601f8916826102a0565b8355505b6001600288020188555050505b505050505050565b612b25806103b35f395ff3fe608060405260043610610184575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461068d578063c87b56dd146106b7578063e985e9c5146106f3578063f14695ae1461072f5761021f565b8063a0712d6814610621578063a22cb4651461063d578063b88d4fde146106655761021f565b8063609526c2146104dd5780636352211e1461051957806370a08231146105555780638da5cb5b146105915780638ef1e259146105bb57806395d89b41146105f75761021f565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461044d57806342842e0e1461046357806347064d6a1461048b5780634dd08f82146104b35761021f565b806323b872dd146103d35780632fbba115146103fb57806332cb6b0c146104235761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b3146103575780630f2cdd6c1461037f57806318160ddd146103a95761021f565b3661021f575f600961019b5f60098054905061076b565b815481106101ac576101ab611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f60096102315f60098054905061076b565b8154811061024257610241611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611d0b565b6107c2565b6040516102e89190611d50565b60405180910390f35b3480156102fc575f80fd5b50610305610853565b6040516103129190611dd9565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190611e2c565b610890565b60405161034e9190611e96565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190611ed9565b610908565b005b34801561038a575f80fd5b50610393610a7c565b6040516103a09190611f26565b60405180910390f35b3480156103b4575f80fd5b506103bd610a81565b6040516103ca9190611f26565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190611f3f565b610a93565b005b348015610406575f80fd5b50610421600480360381019061041c9190611e2c565b610aa3565b005b34801561042e575f80fd5b50610437610b93565b6040516104449190611f26565b60405180910390f35b348015610458575f80fd5b50610461610b99565b005b34801561046e575f80fd5b5061048960048036038101906104849190611f3f565b610c71565b005b348015610496575f80fd5b506104b160048036038101906104ac91906120bb565b610c90565b005b3480156104be575f80fd5b506104c7610d30565b6040516104d49190611d50565b60405180910390f35b3480156104e8575f80fd5b5061050360048036038101906104fe9190612102565b61076b565b6040516105109190611f26565b60405180910390f35b348015610524575f80fd5b5061053f600480360381019061053a9190611e2c565b610d42565b60405161054c9190611e96565b60405180910390f35b348015610560575f80fd5b5061057b60048036038101906105769190612140565b610d53565b6040516105889190611f26565b60405180910390f35b34801561059c575f80fd5b506105a5610de4565b6040516105b29190611e96565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc9190612140565b610e0b565b6040516105ee9190611d50565b60405180910390f35b348015610602575f80fd5b5061060b610e28565b6040516106189190611dd9565b60405180910390f35b61063b60048036038101906106369190611e2c565b610e65565b005b348015610648575f80fd5b50610663600480360381019061065e9190612195565b610f2b565b005b348015610670575f80fd5b5061068b60048036038101906106869190612271565b61109d565b005b348015610698575f80fd5b506106a16110ae565b6040516106ae9190611f26565b60405180910390f35b3480156106c2575f80fd5b506106dd60048036038101906106d89190611e2c565b6110ba565b6040516106ea9190611dd9565b60405180910390f35b3480156106fe575f80fd5b50610719600480360381019061071491906122f1565b6111d6565b6040516107269190611d50565b60405180910390f35b34801561073a575f80fd5b5061075560048036038101906107509190611e2c565b611264565b6040516107629190611e96565b60405180910390f35b5f8060014361077a919061235c565b90505f8133866040516020016107929392919061238f565b60405160208183030381529060405280519060200120905083815f1c6107b891906123f1565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f4170656e7a610000000000000000000000000000000000000000000000000000815250905090565b5f61089a8261129f565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610912826112bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094b575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096a611383565b73ffffffffffffffffffffffffffffffffffffffff16146109cd5761099681610991611383565b6111d6565b6109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f610a8a61138a565b60025403905090565b610a9e83838361138e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b279061246b565b60405180910390fd5b6101a481610b3c610a81565b610b469190612489565b10610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612506565b60405180910390fd5b610b9033826116eb565b50565b6101a481565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d9061246b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610c6d573d5f803e3d5ffd5b5050565b610c8b83838360405180602001604052805f81525061109d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d149061246b565b60405180910390fd5b8060019081610d2c919061271e565b5050565b600a5f9054906101000a900460ff1681565b5f610d4c826112bf565b9050919050565b5f80610d5e83611840565b03610d95576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f4170656e7a610000000000000000000000000000000000000000000000000000815250905090565b5f610e6e611383565b90506101a482610e7c610a81565b610e869190612489565b1115610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612837565b60405180910390fd5b34670de0b6b3a764000083610edc9190612855565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906128e0565b60405180910390fd5b610f2781836116eb565b5050565b610f33611383565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f610fa3611383565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661104c611383565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110919190611d50565b60405180910390a35050565b6110a884848461138e565b50505050565b670de0b6b3a764000081565b60606110c58261129f565b6110fb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6001805461110990612551565b80601f016020809104026020016040519081016040528092919081815260200182805461113590612551565b80156111805780601f1061115757610100808354040283529160200191611180565b820191905f5260205f20905b81548152906001019060200180831161116357829003601f168201915b505050505090505f8151036111a35760405180602001604052805f8152506111ce565b806111ad84611849565b6040516020016111be929190612a16565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60098181548110611273575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816112a961138a565b111580156112b8575060025482105b9050919050565b5f80829050806112cd61138a565b1161134c5760025481101561134b575f60035f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611349575b5f810361133f5760035f836001900393508381526020019081526020015f20549050611318565b809250505061137e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f611398826112bf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611453611383565b73ffffffffffffffffffffffffffffffffffffffff16148061148257506114818661147c611383565b6111d6565b5b806114bf5750611490611383565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806114f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61150283611840565b1461153b5760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6115fc87611840565b171760035f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361167b575f6001850190505f60035f8381526020019081526020015f205403611679576002548114611678578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e386868660016118a3565b505050505050565b5f60025490505f820361172a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161178c60018414611b18565b901b60a042901b61179c85611840565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106117be5781600281905550505061183b5f8483856118a3565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561188f57600183039250600a81066030018353600a8104905061186f565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119075750603261190482610d53565b10155b156119c257600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a2057506032611a1e82610d53565b105b15611b11575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611b0f578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611ab357611ab2611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b0257611b01600982611b21565b5b8080600101915050611a7b565b505b5050505050565b5f819050919050565b80828054905011611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90612aa4565b60405180910390fd5b5f8190505b60018380549050611b7d919061235c565b811015611c305782600182611b929190612489565b81548110611ba357611ba2611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611bde57611bdd611c78565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611b6c565b5081805480611c4257611c41612ac2565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cea81611cb6565b8114611cf4575f80fd5b50565b5f81359050611d0581611ce1565b92915050565b5f60208284031215611d2057611d1f611cae565b5b5f611d2d84828501611cf7565b91505092915050565b5f8115159050919050565b611d4a81611d36565b82525050565b5f602082019050611d635f830184611d41565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611dab82611d69565b611db58185611d73565b9350611dc5818560208601611d83565b611dce81611d91565b840191505092915050565b5f6020820190508181035f830152611df18184611da1565b905092915050565b5f819050919050565b611e0b81611df9565b8114611e15575f80fd5b50565b5f81359050611e2681611e02565b92915050565b5f60208284031215611e4157611e40611cae565b5b5f611e4e84828501611e18565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e8082611e57565b9050919050565b611e9081611e76565b82525050565b5f602082019050611ea95f830184611e87565b92915050565b611eb881611e76565b8114611ec2575f80fd5b50565b5f81359050611ed381611eaf565b92915050565b5f8060408385031215611eef57611eee611cae565b5b5f611efc85828601611ec5565b9250506020611f0d85828601611e18565b9150509250929050565b611f2081611df9565b82525050565b5f602082019050611f395f830184611f17565b92915050565b5f805f60608486031215611f5657611f55611cae565b5b5f611f6386828701611ec5565b9350506020611f7486828701611ec5565b9250506040611f8586828701611e18565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fcd82611d91565b810181811067ffffffffffffffff82111715611fec57611feb611f97565b5b80604052505050565b5f611ffe611ca5565b905061200a8282611fc4565b919050565b5f67ffffffffffffffff82111561202957612028611f97565b5b61203282611d91565b9050602081019050919050565b828183375f83830152505050565b5f61205f61205a8461200f565b611ff5565b90508281526020810184848401111561207b5761207a611f93565b5b61208684828561203f565b509392505050565b5f82601f8301126120a2576120a1611f8f565b5b81356120b284826020860161204d565b91505092915050565b5f602082840312156120d0576120cf611cae565b5b5f82013567ffffffffffffffff8111156120ed576120ec611cb2565b5b6120f98482850161208e565b91505092915050565b5f806040838503121561211857612117611cae565b5b5f61212585828601611e18565b925050602061213685828601611e18565b9150509250929050565b5f6020828403121561215557612154611cae565b5b5f61216284828501611ec5565b91505092915050565b61217481611d36565b811461217e575f80fd5b50565b5f8135905061218f8161216b565b92915050565b5f80604083850312156121ab576121aa611cae565b5b5f6121b885828601611ec5565b92505060206121c985828601612181565b9150509250929050565b5f67ffffffffffffffff8211156121ed576121ec611f97565b5b6121f682611d91565b9050602081019050919050565b5f612215612210846121d3565b611ff5565b90508281526020810184848401111561223157612230611f93565b5b61223c84828561203f565b509392505050565b5f82601f83011261225857612257611f8f565b5b8135612268848260208601612203565b91505092915050565b5f805f806080858703121561228957612288611cae565b5b5f61229687828801611ec5565b94505060206122a787828801611ec5565b93505060406122b887828801611e18565b925050606085013567ffffffffffffffff8111156122d9576122d8611cb2565b5b6122e587828801612244565b91505092959194509250565b5f806040838503121561230757612306611cae565b5b5f61231485828601611ec5565b925050602061232585828601611ec5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61236682611df9565b915061237183611df9565b92508282039050818111156123895761238861232f565b5b92915050565b5f6060820190506123a25f830186611f17565b6123af6020830185611e87565b6123bc6040830184611f17565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123fb82611df9565b915061240683611df9565b925082612416576124156123c4565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612455600983611d73565b915061246082612421565b602082019050919050565b5f6020820190508181035f83015261248281612449565b9050919050565b5f61249382611df9565b915061249e83611df9565b92508282019050808211156124b6576124b561232f565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6124f0600e83611d73565b91506124fb826124bc565b602082019050919050565b5f6020820190508181035f83015261251d816124e4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061256857607f821691505b60208210810361257b5761257a612524565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125a2565b6125e786836125a2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61262261261d61261884611df9565b6125ff565b611df9565b9050919050565b5f819050919050565b61263b83612608565b61264f61264782612629565b8484546125ae565b825550505050565b5f90565b612663612657565b61266e818484612632565b505050565b5b81811015612691576126865f8261265b565b600181019050612674565b5050565b601f8211156126d6576126a781612581565b6126b084612593565b810160208510156126bf578190505b6126d36126cb85612593565b830182612673565b50505b505050565b5f82821c905092915050565b5f6126f65f19846008026126db565b1980831691505092915050565b5f61270e83836126e7565b9150826002028217905092915050565b61272782611d69565b67ffffffffffffffff8111156127405761273f611f97565b5b61274a8254612551565b612755828285612695565b5f60209050601f831160018114612786575f8415612774578287015190505b61277e8582612703565b8655506127e5565b601f19841661279486612581565b5f5b828110156127bb57848901518255600182019150602085019450602081019050612796565b868310156127d857848901516127d4601f8916826126e7565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612821600883611d73565b915061282c826127ed565b602082019050919050565b5f6020820190508181035f83015261284e81612815565b9050919050565b5f61285f82611df9565b915061286a83611df9565b925082820261287881611df9565b9150828204841483151761288f5761288e61232f565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128ca600c83611d73565b91506128d582612896565b602082019050919050565b5f6020820190508181035f8301526128f7816128be565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f61293c6007836128fe565b915061294782612908565b600782019050919050565b5f61295c82611d69565b61296681856128fe565b9350612976818560208601611d83565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6129b66001836128fe565b91506129c182612982565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a006005836128fe565b9150612a0b826129cc565b600582019050919050565b5f612a2082612930565b9150612a2c8285612952565b9150612a37826129aa565b9150612a438284612952565b9150612a4e826129f4565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612a8e600d83611d73565b9150612a9982612a5a565b602082019050919050565b5f6020820190508181035f830152612abb81612a82565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220808bcec89f192a2b1b87b305b140ce613e2cb005a968c0e7acc9b19844b071e264736f6c634300081a0033516d4e6f4b5572326d6e317676324d384c384c7537454c375672486b7952354a4a4d785753387961775335646772

Deployed Bytecode

0x608060405260043610610184575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461068d578063c87b56dd146106b7578063e985e9c5146106f3578063f14695ae1461072f5761021f565b8063a0712d6814610621578063a22cb4651461063d578063b88d4fde146106655761021f565b8063609526c2146104dd5780636352211e1461051957806370a08231146105555780638da5cb5b146105915780638ef1e259146105bb57806395d89b41146105f75761021f565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461044d57806342842e0e1461046357806347064d6a1461048b5780634dd08f82146104b35761021f565b806323b872dd146103d35780632fbba115146103fb57806332cb6b0c146104235761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b3146103575780630f2cdd6c1461037f57806318160ddd146103a95761021f565b3661021f575f600961019b5f60098054905061076b565b815481106101ac576101ab611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f60096102315f60098054905061076b565b8154811061024257610241611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611d0b565b6107c2565b6040516102e89190611d50565b60405180910390f35b3480156102fc575f80fd5b50610305610853565b6040516103129190611dd9565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190611e2c565b610890565b60405161034e9190611e96565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190611ed9565b610908565b005b34801561038a575f80fd5b50610393610a7c565b6040516103a09190611f26565b60405180910390f35b3480156103b4575f80fd5b506103bd610a81565b6040516103ca9190611f26565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190611f3f565b610a93565b005b348015610406575f80fd5b50610421600480360381019061041c9190611e2c565b610aa3565b005b34801561042e575f80fd5b50610437610b93565b6040516104449190611f26565b60405180910390f35b348015610458575f80fd5b50610461610b99565b005b34801561046e575f80fd5b5061048960048036038101906104849190611f3f565b610c71565b005b348015610496575f80fd5b506104b160048036038101906104ac91906120bb565b610c90565b005b3480156104be575f80fd5b506104c7610d30565b6040516104d49190611d50565b60405180910390f35b3480156104e8575f80fd5b5061050360048036038101906104fe9190612102565b61076b565b6040516105109190611f26565b60405180910390f35b348015610524575f80fd5b5061053f600480360381019061053a9190611e2c565b610d42565b60405161054c9190611e96565b60405180910390f35b348015610560575f80fd5b5061057b60048036038101906105769190612140565b610d53565b6040516105889190611f26565b60405180910390f35b34801561059c575f80fd5b506105a5610de4565b6040516105b29190611e96565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc9190612140565b610e0b565b6040516105ee9190611d50565b60405180910390f35b348015610602575f80fd5b5061060b610e28565b6040516106189190611dd9565b60405180910390f35b61063b60048036038101906106369190611e2c565b610e65565b005b348015610648575f80fd5b50610663600480360381019061065e9190612195565b610f2b565b005b348015610670575f80fd5b5061068b60048036038101906106869190612271565b61109d565b005b348015610698575f80fd5b506106a16110ae565b6040516106ae9190611f26565b60405180910390f35b3480156106c2575f80fd5b506106dd60048036038101906106d89190611e2c565b6110ba565b6040516106ea9190611dd9565b60405180910390f35b3480156106fe575f80fd5b50610719600480360381019061071491906122f1565b6111d6565b6040516107269190611d50565b60405180910390f35b34801561073a575f80fd5b5061075560048036038101906107509190611e2c565b611264565b6040516107629190611e96565b60405180910390f35b5f8060014361077a919061235c565b90505f8133866040516020016107929392919061238f565b60405160208183030381529060405280519060200120905083815f1c6107b891906123f1565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f4170656e7a610000000000000000000000000000000000000000000000000000815250905090565b5f61089a8261129f565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610912826112bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094b575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096a611383565b73ffffffffffffffffffffffffffffffffffffffff16146109cd5761099681610991611383565b6111d6565b6109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f610a8a61138a565b60025403905090565b610a9e83838361138e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b279061246b565b60405180910390fd5b6101a481610b3c610a81565b610b469190612489565b10610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612506565b60405180910390fd5b610b9033826116eb565b50565b6101a481565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d9061246b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610c6d573d5f803e3d5ffd5b5050565b610c8b83838360405180602001604052805f81525061109d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d149061246b565b60405180910390fd5b8060019081610d2c919061271e565b5050565b600a5f9054906101000a900460ff1681565b5f610d4c826112bf565b9050919050565b5f80610d5e83611840565b03610d95576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f4170656e7a610000000000000000000000000000000000000000000000000000815250905090565b5f610e6e611383565b90506101a482610e7c610a81565b610e869190612489565b1115610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612837565b60405180910390fd5b34670de0b6b3a764000083610edc9190612855565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906128e0565b60405180910390fd5b610f2781836116eb565b5050565b610f33611383565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f610fa3611383565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661104c611383565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110919190611d50565b60405180910390a35050565b6110a884848461138e565b50505050565b670de0b6b3a764000081565b60606110c58261129f565b6110fb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6001805461110990612551565b80601f016020809104026020016040519081016040528092919081815260200182805461113590612551565b80156111805780601f1061115757610100808354040283529160200191611180565b820191905f5260205f20905b81548152906001019060200180831161116357829003601f168201915b505050505090505f8151036111a35760405180602001604052805f8152506111ce565b806111ad84611849565b6040516020016111be929190612a16565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60098181548110611273575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816112a961138a565b111580156112b8575060025482105b9050919050565b5f80829050806112cd61138a565b1161134c5760025481101561134b575f60035f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611349575b5f810361133f5760035f836001900393508381526020019081526020015f20549050611318565b809250505061137e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f611398826112bf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611453611383565b73ffffffffffffffffffffffffffffffffffffffff16148061148257506114818661147c611383565b6111d6565b5b806114bf5750611490611383565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806114f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61150283611840565b1461153b5760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6115fc87611840565b171760035f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361167b575f6001850190505f60035f8381526020019081526020015f205403611679576002548114611678578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e386868660016118a3565b505050505050565b5f60025490505f820361172a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161178c60018414611b18565b901b60a042901b61179c85611840565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106117be5781600281905550505061183b5f8483856118a3565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561188f57600183039250600a81066030018353600a8104905061186f565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119075750603261190482610d53565b10155b156119c257600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a2057506032611a1e82610d53565b105b15611b11575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611b0f578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611ab357611ab2611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b0257611b01600982611b21565b5b8080600101915050611a7b565b505b5050505050565b5f819050919050565b80828054905011611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90612aa4565b60405180910390fd5b5f8190505b60018380549050611b7d919061235c565b811015611c305782600182611b929190612489565b81548110611ba357611ba2611c78565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611bde57611bdd611c78565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611b6c565b5081805480611c4257611c41612ac2565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cea81611cb6565b8114611cf4575f80fd5b50565b5f81359050611d0581611ce1565b92915050565b5f60208284031215611d2057611d1f611cae565b5b5f611d2d84828501611cf7565b91505092915050565b5f8115159050919050565b611d4a81611d36565b82525050565b5f602082019050611d635f830184611d41565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611dab82611d69565b611db58185611d73565b9350611dc5818560208601611d83565b611dce81611d91565b840191505092915050565b5f6020820190508181035f830152611df18184611da1565b905092915050565b5f819050919050565b611e0b81611df9565b8114611e15575f80fd5b50565b5f81359050611e2681611e02565b92915050565b5f60208284031215611e4157611e40611cae565b5b5f611e4e84828501611e18565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e8082611e57565b9050919050565b611e9081611e76565b82525050565b5f602082019050611ea95f830184611e87565b92915050565b611eb881611e76565b8114611ec2575f80fd5b50565b5f81359050611ed381611eaf565b92915050565b5f8060408385031215611eef57611eee611cae565b5b5f611efc85828601611ec5565b9250506020611f0d85828601611e18565b9150509250929050565b611f2081611df9565b82525050565b5f602082019050611f395f830184611f17565b92915050565b5f805f60608486031215611f5657611f55611cae565b5b5f611f6386828701611ec5565b9350506020611f7486828701611ec5565b9250506040611f8586828701611e18565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fcd82611d91565b810181811067ffffffffffffffff82111715611fec57611feb611f97565b5b80604052505050565b5f611ffe611ca5565b905061200a8282611fc4565b919050565b5f67ffffffffffffffff82111561202957612028611f97565b5b61203282611d91565b9050602081019050919050565b828183375f83830152505050565b5f61205f61205a8461200f565b611ff5565b90508281526020810184848401111561207b5761207a611f93565b5b61208684828561203f565b509392505050565b5f82601f8301126120a2576120a1611f8f565b5b81356120b284826020860161204d565b91505092915050565b5f602082840312156120d0576120cf611cae565b5b5f82013567ffffffffffffffff8111156120ed576120ec611cb2565b5b6120f98482850161208e565b91505092915050565b5f806040838503121561211857612117611cae565b5b5f61212585828601611e18565b925050602061213685828601611e18565b9150509250929050565b5f6020828403121561215557612154611cae565b5b5f61216284828501611ec5565b91505092915050565b61217481611d36565b811461217e575f80fd5b50565b5f8135905061218f8161216b565b92915050565b5f80604083850312156121ab576121aa611cae565b5b5f6121b885828601611ec5565b92505060206121c985828601612181565b9150509250929050565b5f67ffffffffffffffff8211156121ed576121ec611f97565b5b6121f682611d91565b9050602081019050919050565b5f612215612210846121d3565b611ff5565b90508281526020810184848401111561223157612230611f93565b5b61223c84828561203f565b509392505050565b5f82601f83011261225857612257611f8f565b5b8135612268848260208601612203565b91505092915050565b5f805f806080858703121561228957612288611cae565b5b5f61229687828801611ec5565b94505060206122a787828801611ec5565b93505060406122b887828801611e18565b925050606085013567ffffffffffffffff8111156122d9576122d8611cb2565b5b6122e587828801612244565b91505092959194509250565b5f806040838503121561230757612306611cae565b5b5f61231485828601611ec5565b925050602061232585828601611ec5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61236682611df9565b915061237183611df9565b92508282039050818111156123895761238861232f565b5b92915050565b5f6060820190506123a25f830186611f17565b6123af6020830185611e87565b6123bc6040830184611f17565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123fb82611df9565b915061240683611df9565b925082612416576124156123c4565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612455600983611d73565b915061246082612421565b602082019050919050565b5f6020820190508181035f83015261248281612449565b9050919050565b5f61249382611df9565b915061249e83611df9565b92508282019050808211156124b6576124b561232f565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6124f0600e83611d73565b91506124fb826124bc565b602082019050919050565b5f6020820190508181035f83015261251d816124e4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061256857607f821691505b60208210810361257b5761257a612524565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125a2565b6125e786836125a2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61262261261d61261884611df9565b6125ff565b611df9565b9050919050565b5f819050919050565b61263b83612608565b61264f61264782612629565b8484546125ae565b825550505050565b5f90565b612663612657565b61266e818484612632565b505050565b5b81811015612691576126865f8261265b565b600181019050612674565b5050565b601f8211156126d6576126a781612581565b6126b084612593565b810160208510156126bf578190505b6126d36126cb85612593565b830182612673565b50505b505050565b5f82821c905092915050565b5f6126f65f19846008026126db565b1980831691505092915050565b5f61270e83836126e7565b9150826002028217905092915050565b61272782611d69565b67ffffffffffffffff8111156127405761273f611f97565b5b61274a8254612551565b612755828285612695565b5f60209050601f831160018114612786575f8415612774578287015190505b61277e8582612703565b8655506127e5565b601f19841661279486612581565b5f5b828110156127bb57848901518255600182019150602085019450602081019050612796565b868310156127d857848901516127d4601f8916826126e7565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612821600883611d73565b915061282c826127ed565b602082019050919050565b5f6020820190508181035f83015261284e81612815565b9050919050565b5f61285f82611df9565b915061286a83611df9565b925082820261287881611df9565b9150828204841483151761288f5761288e61232f565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128ca600c83611d73565b91506128d582612896565b602082019050919050565b5f6020820190508181035f8301526128f7816128be565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f61293c6007836128fe565b915061294782612908565b600782019050919050565b5f61295c82611d69565b61296681856128fe565b9350612976818560208601611d83565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6129b66001836128fe565b91506129c182612982565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a006005836128fe565b9150612a0b826129cc565b600582019050919050565b5f612a2082612930565b9150612a2c8285612952565b9150612a37826129aa565b9150612a438284612952565b9150612a4e826129f4565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612a8e600d83611d73565b9150612a9982612a5a565b602082019050919050565b5f6020820190508181035f830152612abb81612a82565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220808bcec89f192a2b1b87b305b140ce613e2cb005a968c0e7acc9b19844b071e264736f6c634300081a0033

Deployed Bytecode Sourcemap

15531:22654:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32866:14;32883:5;32889:37;32910:1;32913:5;:12;;;;32889:20;:37::i;:::-;32883:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32866:61;;32938:20;32969:6;32938:38;;32987:4;:13;;:24;33001:9;32987:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15531:22654;33065:14;33082:5;33088:37;33109:1;33112:5;:12;;;;33088:20;:37::i;:::-;33082:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33065:61;;33137:20;33168:6;33137:38;;33186:4;:13;;:24;33200:9;33186:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20096:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24303:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25970:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25453:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15763:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26856:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37661:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15716:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38037:145;;;;;;;;;;;;;:::i;:::-;;27117:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18628:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37622:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37306:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24092:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20775:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15631:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30185:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24472:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16099:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26246:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27393:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15813:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24590:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26625:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30231:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37306:308;37387:7;37407:19;37444:1;37429:12;:16;;;;:::i;:::-;37407:38;;37489:17;37530:11;37543:10;37555:7;37519:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37509:55;;;;;;37489:75;;37603:3;37590:9;37582:18;;:24;;;;:::i;:::-;37575:31;;;;37306:308;;;;:::o;20096:615::-;20181:4;20496:10;20481:25;;:11;:25;;;;:102;;;;20573:10;20558:25;;:11;:25;;;;20481:102;:179;;;;20650:10;20635:25;;:11;:25;;;;20481:179;20461:199;;20096:615;;;:::o;24303:100::-;24357:13;24390:5;;;;;;;;;;;;;;;;;24383:12;;24303:100;:::o;25970:204::-;26038:7;26063:16;26071:7;26063;:16::i;:::-;26058:64;;26088:34;;;;;;;;;;;;;;26058:64;26142:15;:24;26158:7;26142:24;;;;;;;;;;;;;;;;;;;;;26135:31;;25970:204;;;:::o;25453:451::-;25526:13;25558:27;25577:7;25558:18;:27::i;:::-;25526:61;;25608:5;25602:11;;:2;:11;;;25598:25;;25615:8;;;25598:25;25663:5;25640:28;;:19;:17;:19::i;:::-;:28;;;25636:175;;25688:44;25705:5;25712:19;:17;:19::i;:::-;25688:16;:44::i;:::-;25683:128;;25760:35;;;;;;;;;;;;;;25683:128;25636:175;25850:2;25823:15;:24;25839:7;25823:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25888:7;25884:2;25868:28;;25877:5;25868:28;;;;;;;;;;;;25515:389;25453:451;;:::o;15763:43::-;15804:2;15763:43;:::o;19339:300::-;19392:7;19605:15;:13;:15::i;:::-;19589:13;;:31;19582:38;;19339:300;:::o;26856:190::-;27010:28;27020:4;27026:2;27030:7;27010:9;:28::i;:::-;26856:190;;;:::o;37661:169::-;37887:10;37879:18;;:6;;;;;;;;;;:18;;;37871:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;15753:3:::1;37748:6;37732:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;37724:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37797:25;37803:10;37815:6;37797:5;:25::i;:::-;37661:169:::0;:::o;15716:40::-;15753:3;15716:40;:::o;38037:145::-;37887:10;37879:18;;:6;;;;;;;;;;:18;;;37871:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38087:15:::1;38105:21;38087:39;;38145:10;38137:28;;:37;38166:7;38137:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38076:106;38037:145::o:0;27117:205::-;27275:39;27292:4;27298:2;27302:7;27275:39;;;;;;;;;;;;:16;:39::i;:::-;27117:205;;;:::o;18628:91::-;37887:10;37879:18;;:6;;;;;;;;;;:18;;;37871:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18706:5:::1;18695:8;:16;;;;;;:::i;:::-;;18628:91:::0;:::o;37622:32::-;;;;;;;;;;;;;:::o;24092:144::-;24156:7;24199:27;24218:7;24199:18;:27::i;:::-;24176:52;;24092:144;;;:::o;20775:234::-;20839:7;20891:1;20863:24;20881:5;20863:17;:24::i;:::-;:29;20859:70;;20901:28;;;;;;;;;;;;;;20859:70;16479:13;20947:18;:25;20966:5;20947:25;;;;;;;;;;;;;;;;:54;20940:61;;20775:234;;;:::o;15631:77::-;15668:7;15694:6;;;;;;;;;;;15687:13;;15631:77;:::o;30185:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24472:104::-;24528:13;24561:7;;;;;;;;;;;;;;;;;24554:14;;24472:104;:::o;16099:267::-;16156:15;16174:19;:17;:19::i;:::-;16156:37;;15753:3;16230:6;16214:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16206:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16297:9;15844:7;16282:6;:11;;;;:::i;:::-;:24;;16274:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16336:22;16342:7;16351:6;16336:5;:22::i;:::-;16145:221;16099:267;:::o;26246:308::-;26357:19;:17;:19::i;:::-;26345:31;;:8;:31;;;26341:61;;26385:17;;;;;;;;;;;;;;26341:61;26467:8;26415:18;:39;26434:19;:17;:19::i;:::-;26415:39;;;;;;;;;;;;;;;:49;26455:8;26415:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26527:8;26491:55;;26506:19;:17;:19::i;:::-;26491:55;;;26537:8;26491:55;;;;;;:::i;:::-;;;;;;;;26246:308;;:::o;27393:227::-;27584:28;27594:4;27600:2;27604:7;27584:9;:28::i;:::-;27393:227;;;;:::o;15813:38::-;15844:7;15813:38;:::o;24590:339::-;24663:13;24694:16;24702:7;24694;:16::i;:::-;24689:59;;24719:29;;;;;;;;;;;;;;24689:59;24759:21;24783:8;24759:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24834:1;24815:7;24809:21;:26;:112;;;;;;;;;;;;;;;;;24873:7;24887:18;24897:7;24887:9;:18::i;:::-;24845:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24809:112;24802:119;;;24590:339;;;:::o;26625:164::-;26722:4;26746:18;:25;26765:5;26746:25;;;;;;;;;;;;;;;:35;26772:8;26746:35;;;;;;;;;;;;;;;;;;;;;;;;;26739:42;;26625:164;;;;:::o;30231:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27875:168::-;27932:4;27988:7;27969:15;:13;:15::i;:::-;:26;;:66;;;;;28022:13;;28012:7;:23;27969:66;27949:86;;27875:168;;;:::o;21607:1129::-;21674:7;21694:12;21709:7;21694:22;;21777:4;21758:15;:13;:15::i;:::-;:23;21754:915;;21811:13;;21804:4;:20;21800:869;;;21849:14;21866:17;:23;21884:4;21866:23;;;;;;;;;;;;21849:40;;21982:1;17249:8;21955:6;:23;:28;21951:699;;22474:113;22491:1;22481:6;:11;22474:113;;22534:17;:25;22552:6;;;;;;;22534:25;;;;;;;;;;;;22525:34;;22474:113;;;22620:6;22613:13;;;;;;21951:699;21826:843;21800:869;21754:915;22697:31;;;;;;;;;;;;;;21607:1129;;;;:::o;35205:105::-;35265:7;35292:10;35285:17;;35205:105;:::o;18862:92::-;18918:7;18862:92;:::o;30260:2561::-;30401:27;30431;30450:7;30431:18;:27::i;:::-;30401:57;;30516:4;30475:45;;30491:19;30475:45;;;30471:86;;30529:28;;;;;;;;;;;;;;30471:86;30570:23;30596:15;:24;30612:7;30596:24;;;;;;;;;;;;;;;;;;;;;30570:50;;30633:22;30682:4;30659:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;30707:43;30724:4;30730:19;:17;:19::i;:::-;30707:16;:43::i;:::-;30659:91;:150;;;;30790:19;:17;:19::i;:::-;30771:38;;:15;:38;;;30659:150;30633:177;;30828:17;30823:66;;30854:35;;;;;;;;;;;;;;30823:66;30999:1;30961:34;30979:15;30961:17;:34::i;:::-;:39;30957:103;;31024:15;:24;31040:7;31024:24;;;;;;;;;;;;31017:31;;;;;;;;;;;30957:103;31427:18;:24;31446:4;31427:24;;;;;;;;;;;;;;;;31425:26;;;;;;;;;;;;31496:18;:22;31515:2;31496:22;;;;;;;;;;;;;;;;31494:24;;;;;;;;;;;17527:8;17133:3;31877:15;:41;;31835:21;31853:2;31835:17;:21::i;:::-;:84;:128;31789:17;:26;31807:7;31789:26;;;;;;;;;;;:174;;;;32133:1;17527:8;32083:19;:46;:51;32079:626;;32155:19;32187:1;32177:7;:11;32155:33;;32344:1;32310:17;:30;32328:11;32310:30;;;;;;;;;;;;:35;32306:384;;32448:13;;32433:11;:28;32429:242;;32628:19;32595:17;:30;32613:11;32595:30;;;;;;;;;;;:52;;;;32429:242;32306:384;32136:569;32079:626;32752:7;32748:2;32733:27;;32742:4;32733:27;;;;;;;;;;;;32771:42;32792:4;32798:2;32802:7;32811:1;32771:20;:42::i;:::-;30384:2437;;;30260:2561;;;:::o;28308:1596::-;28373:20;28396:13;;28373:36;;28507:1;28495:8;:13;28491:44;;28517:18;;;;;;;;;;;;;;28491:44;29080:1;16616:2;29051:1;:25;;29050:31;29038:8;:44;29012:18;:22;29031:2;29012:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17392:3;29481:29;29508:1;29496:8;:13;29481:14;:29::i;:::-;:56;;17133:3;29418:15;:41;;29376:21;29394:2;29376:17;:21::i;:::-;:84;:162;29325:17;:31;29343:12;29325:31;;;;;;;;;;;:213;;;;29555:20;29578:12;29555:35;;29605:11;29634:8;29619:12;:23;29605:37;;29659:111;29711:14;;;;;;29707:2;29686:40;;29703:1;29686:40;;;;;;;;;;;;29765:3;29750:12;:18;29659:111;;29802:12;29786:13;:28;;;;28789:1037;;29836:60;29865:1;29869:2;29873:12;29887:8;29836:20;:60::i;:::-;28362:1542;28308:1596;;:::o;25014:148::-;25078:14;25139:5;25129:15;;25014:148;;;:::o;35416:1882::-;35473:17;35894:3;35887:4;35881:11;35877:21;35870:28;;35981:3;35975:4;35968:17;36081:3;36517:5;36649:1;36644:3;36640:11;36633:18;;36788:2;36782:4;36778:13;36774:2;36770:22;36765:3;36757:36;36830:2;36824:4;36820:13;36812:21;;36414:661;36846:4;36414:661;;;37014:1;37009:3;37005:11;36998:18;;37058:2;37052:4;37048:13;37044:2;37040:22;37035:3;37027:36;36931:2;36925:4;36921:13;36913:21;;36414:661;;;36418:427;37107:3;37102;37098:13;37216:2;37211:3;37207:12;37200:19;;37273:6;37268:3;37261:19;35512:1779;;35416:1882;;;:::o;34247:753::-;34446:15;34464:10;34446:28;;34498:7;:16;34506:7;34498:16;;;;;;;;;;;;;;;;;;;;;;;;;34497:17;:43;;;;;34538:2;34518:18;34528:7;34518:9;:18::i;:::-;:22;;34497:43;34493:156;;;34583:4;34564:7;:16;34572:7;34564:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;34610:5;34621:7;34610:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34493:156;34671:7;:16;34679:7;34671:16;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;;34710:2;34691:18;34701:7;34691:9;:18::i;:::-;:21;34671:41;34667:318;;;34755:5;34736:7;:16;34744:7;34736:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;34787:6;34783:183;34801:5;:12;;;;34797:1;:16;34783:183;;;34860:7;34850:17;;:5;34856:1;34850:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;34846:97;;34899:16;34906:5;34913:1;34899:6;:16::i;:::-;34846:97;34815:3;;;;;;;34783:183;;;;34667:318;34427:573;34247:753;;;;:::o;25249:142::-;25307:14;25368:5;25358:15;;25249:142;;;:::o;33881:358::-;33980:5;33965;:12;;;;:20;33957:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;34092:9;34104:5;34092:17;;34087:99;34130:1;34115:5;:12;;;;:16;;;;:::i;:::-;34111:1;:20;34087:99;;;34164:5;34172:1;34170;:3;;;;:::i;:::-;34164:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34153:5;34159:1;34153:8;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34133:3;;;;;;;34087:99;;;;34196:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;33881:358;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:75;226:6;259:2;253:9;243:19;;193:75;:::o;274:117::-;383:1;380;373:12;397:117;506:1;503;496:12;520:149;556:7;596:66;589:5;585:78;574:89;;520:149;;;:::o;675:120::-;747:23;764:5;747:23;:::i;:::-;740:5;737:34;727:62;;785:1;782;775:12;727:62;675:120;:::o;801:137::-;846:5;884:6;871:20;862:29;;900:32;926:5;900:32;:::i;:::-;801:137;;;;:::o;944:327::-;1002:6;1051:2;1039:9;1030:7;1026:23;1022:32;1019:119;;;1057:79;;:::i;:::-;1019:119;1177:1;1202:52;1246:7;1237:6;1226:9;1222:22;1202:52;:::i;:::-;1192:62;;1148:116;944:327;;;;:::o;1277:90::-;1311:7;1354:5;1347:13;1340:21;1329:32;;1277:90;;;:::o;1373:109::-;1454:21;1469:5;1454:21;:::i;:::-;1449:3;1442:34;1373:109;;:::o;1488:210::-;1575:4;1613:2;1602:9;1598:18;1590:26;;1626:65;1688:1;1677:9;1673:17;1664:6;1626:65;:::i;:::-;1488:210;;;;:::o;1704:99::-;1756:6;1790:5;1784:12;1774:22;;1704:99;;;:::o;1809:169::-;1893:11;1927:6;1922:3;1915:19;1967:4;1962:3;1958:14;1943:29;;1809:169;;;;:::o;1984:139::-;2073:6;2068:3;2063;2057:23;2114:1;2105:6;2100:3;2096:16;2089:27;1984:139;;;:::o;2129:102::-;2170:6;2221:2;2217:7;2212:2;2205:5;2201:14;2197:28;2187:38;;2129:102;;;:::o;2237:377::-;2325:3;2353:39;2386:5;2353:39;:::i;:::-;2408:71;2472:6;2467:3;2408:71;:::i;:::-;2401:78;;2488:65;2546:6;2541:3;2534:4;2527:5;2523:16;2488:65;:::i;:::-;2578:29;2600:6;2578:29;:::i;:::-;2573:3;2569:39;2562:46;;2329:285;2237:377;;;;:::o;2620:313::-;2733:4;2771:2;2760:9;2756:18;2748:26;;2820:9;2814:4;2810:20;2806:1;2795:9;2791:17;2784:47;2848:78;2921:4;2912:6;2848:78;:::i;:::-;2840:86;;2620:313;;;;:::o;2939:77::-;2976:7;3005:5;2994:16;;2939:77;;;:::o;3022:122::-;3095:24;3113:5;3095:24;:::i;:::-;3088:5;3085:35;3075:63;;3134:1;3131;3124:12;3075:63;3022:122;:::o;3150:139::-;3196:5;3234:6;3221:20;3212:29;;3250:33;3277:5;3250:33;:::i;:::-;3150:139;;;;:::o;3295:329::-;3354:6;3403:2;3391:9;3382:7;3378:23;3374:32;3371:119;;;3409:79;;:::i;:::-;3371:119;3529:1;3554:53;3599:7;3590:6;3579:9;3575:22;3554:53;:::i;:::-;3544:63;;3500:117;3295:329;;;;:::o;3630:126::-;3667:7;3707:42;3700:5;3696:54;3685:65;;3630:126;;;:::o;3762:96::-;3799:7;3828:24;3846:5;3828:24;:::i;:::-;3817:35;;3762:96;;;:::o;3864:118::-;3951:24;3969:5;3951:24;:::i;:::-;3946:3;3939:37;3864:118;;:::o;3988:222::-;4081:4;4119:2;4108:9;4104:18;4096:26;;4132:71;4200:1;4189:9;4185:17;4176:6;4132:71;:::i;:::-;3988:222;;;;:::o;4216:122::-;4289:24;4307:5;4289:24;:::i;:::-;4282:5;4279:35;4269:63;;4328:1;4325;4318:12;4269:63;4216:122;:::o;4344:139::-;4390:5;4428:6;4415:20;4406:29;;4444:33;4471:5;4444:33;:::i;:::-;4344:139;;;;:::o;4489:474::-;4557:6;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4867:2;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4838:118;4489:474;;;;;:::o;4969:118::-;5056:24;5074:5;5056:24;:::i;:::-;5051:3;5044:37;4969:118;;:::o;5093:222::-;5186:4;5224:2;5213:9;5209:18;5201:26;;5237:71;5305:1;5294:9;5290:17;5281:6;5237:71;:::i;:::-;5093:222;;;;:::o;5321:619::-;5398:6;5406;5414;5463:2;5451:9;5442:7;5438:23;5434:32;5431:119;;;5469:79;;:::i;:::-;5431:119;5589:1;5614:53;5659:7;5650:6;5639:9;5635:22;5614:53;:::i;:::-;5604:63;;5560:117;5716:2;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5687:118;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5321:619;;;;;:::o;5946:117::-;6055:1;6052;6045:12;6069:117;6178:1;6175;6168:12;6192:180;6240:77;6237:1;6230:88;6337:4;6334:1;6327:15;6361:4;6358:1;6351:15;6378:281;6461:27;6483:4;6461:27;:::i;:::-;6453:6;6449:40;6591:6;6579:10;6576:22;6555:18;6543:10;6540:34;6537:62;6534:88;;;6602:18;;:::i;:::-;6534:88;6642:10;6638:2;6631:22;6421:238;6378:281;;:::o;6665:129::-;6699:6;6726:20;;:::i;:::-;6716:30;;6755:33;6783:4;6775:6;6755:33;:::i;:::-;6665:129;;;:::o;6800:308::-;6862:4;6952:18;6944:6;6941:30;6938:56;;;6974:18;;:::i;:::-;6938:56;7012:29;7034:6;7012:29;:::i;:::-;7004:37;;7096:4;7090;7086:15;7078:23;;6800:308;;;:::o;7114:148::-;7212:6;7207:3;7202;7189:30;7253:1;7244:6;7239:3;7235:16;7228:27;7114:148;;;:::o;7268:425::-;7346:5;7371:66;7387:49;7429:6;7387:49;:::i;:::-;7371:66;:::i;:::-;7362:75;;7460:6;7453:5;7446:21;7498:4;7491:5;7487:16;7536:3;7527:6;7522:3;7518:16;7515:25;7512:112;;;7543:79;;:::i;:::-;7512:112;7633:54;7680:6;7675:3;7670;7633:54;:::i;:::-;7352:341;7268:425;;;;;:::o;7713:340::-;7769:5;7818:3;7811:4;7803:6;7799:17;7795:27;7785:122;;7826:79;;:::i;:::-;7785:122;7943:6;7930:20;7968:79;8043:3;8035:6;8028:4;8020:6;8016:17;7968:79;:::i;:::-;7959:88;;7775:278;7713:340;;;;:::o;8059:509::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8331:1;8320:9;8316:17;8303:31;8361:18;8353:6;8350:30;8347:117;;;8383:79;;:::i;:::-;8347:117;8488:63;8543:7;8534:6;8523:9;8519:22;8488:63;:::i;:::-;8478:73;;8274:287;8059:509;;;;:::o;8574:474::-;8642:6;8650;8699:2;8687:9;8678:7;8674:23;8670:32;8667:119;;;8705:79;;:::i;:::-;8667:119;8825:1;8850:53;8895:7;8886:6;8875:9;8871:22;8850:53;:::i;:::-;8840:63;;8796:117;8952:2;8978:53;9023:7;9014:6;9003:9;8999:22;8978:53;:::i;:::-;8968:63;;8923:118;8574:474;;;;;:::o;9054:329::-;9113:6;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9288:1;9313:53;9358:7;9349:6;9338:9;9334:22;9313:53;:::i;:::-;9303:63;;9259:117;9054:329;;;;:::o;9389:116::-;9459:21;9474:5;9459:21;:::i;:::-;9452:5;9449:32;9439:60;;9495:1;9492;9485:12;9439:60;9389:116;:::o;9511:133::-;9554:5;9592:6;9579:20;9570:29;;9608:30;9632:5;9608:30;:::i;:::-;9511:133;;;;:::o;9650:468::-;9715:6;9723;9772:2;9760:9;9751:7;9747:23;9743:32;9740:119;;;9778:79;;:::i;:::-;9740:119;9898:1;9923:53;9968:7;9959:6;9948:9;9944:22;9923:53;:::i;:::-;9913:63;;9869:117;10025:2;10051:50;10093:7;10084:6;10073:9;10069:22;10051:50;:::i;:::-;10041:60;;9996:115;9650:468;;;;;:::o;10124:307::-;10185:4;10275:18;10267:6;10264:30;10261:56;;;10297:18;;:::i;:::-;10261:56;10335:29;10357:6;10335:29;:::i;:::-;10327:37;;10419:4;10413;10409:15;10401:23;;10124:307;;;:::o;10437:423::-;10514:5;10539:65;10555:48;10596:6;10555:48;:::i;:::-;10539:65;:::i;:::-;10530:74;;10627:6;10620:5;10613:21;10665:4;10658:5;10654:16;10703:3;10694:6;10689:3;10685:16;10682:25;10679:112;;;10710:79;;:::i;:::-;10679:112;10800:54;10847:6;10842:3;10837;10800:54;:::i;:::-;10520:340;10437:423;;;;;:::o;10879:338::-;10934:5;10983:3;10976:4;10968:6;10964:17;10960:27;10950:122;;10991:79;;:::i;:::-;10950:122;11108:6;11095:20;11133:78;11207:3;11199:6;11192:4;11184:6;11180:17;11133:78;:::i;:::-;11124:87;;10940:277;10879:338;;;;:::o;11223:943::-;11318:6;11326;11334;11342;11391:3;11379:9;11370:7;11366:23;11362:33;11359:120;;;11398:79;;:::i;:::-;11359:120;11518:1;11543:53;11588:7;11579:6;11568:9;11564:22;11543:53;:::i;:::-;11533:63;;11489:117;11645:2;11671:53;11716:7;11707:6;11696:9;11692:22;11671:53;:::i;:::-;11661:63;;11616:118;11773:2;11799:53;11844:7;11835:6;11824:9;11820:22;11799:53;:::i;:::-;11789:63;;11744:118;11929:2;11918:9;11914:18;11901:32;11960:18;11952:6;11949:30;11946:117;;;11982:79;;:::i;:::-;11946:117;12087:62;12141:7;12132:6;12121:9;12117:22;12087:62;:::i;:::-;12077:72;;11872:287;11223:943;;;;;;;:::o;12172:474::-;12240:6;12248;12297:2;12285:9;12276:7;12272:23;12268:32;12265:119;;;12303:79;;:::i;:::-;12265:119;12423:1;12448:53;12493:7;12484:6;12473:9;12469:22;12448:53;:::i;:::-;12438:63;;12394:117;12550:2;12576:53;12621:7;12612:6;12601:9;12597:22;12576:53;:::i;:::-;12566:63;;12521:118;12172:474;;;;;:::o;12652:180::-;12700:77;12697:1;12690:88;12797:4;12794:1;12787:15;12821:4;12818:1;12811:15;12838:194;12878:4;12898:20;12916:1;12898:20;:::i;:::-;12893:25;;12932:20;12950:1;12932:20;:::i;:::-;12927:25;;12976:1;12973;12969:9;12961:17;;13000:1;12994:4;12991:11;12988:37;;;13005:18;;:::i;:::-;12988:37;12838:194;;;;:::o;13038:442::-;13187:4;13225:2;13214:9;13210:18;13202:26;;13238:71;13306:1;13295:9;13291:17;13282:6;13238:71;:::i;:::-;13319:72;13387:2;13376:9;13372:18;13363:6;13319:72;:::i;:::-;13401;13469:2;13458:9;13454:18;13445:6;13401:72;:::i;:::-;13038:442;;;;;;:::o;13486:180::-;13534:77;13531:1;13524:88;13631:4;13628:1;13621:15;13655:4;13652:1;13645:15;13672:176;13704:1;13721:20;13739:1;13721:20;:::i;:::-;13716:25;;13755:20;13773:1;13755:20;:::i;:::-;13750:25;;13794:1;13784:35;;13799:18;;:::i;:::-;13784:35;13840:1;13837;13833:9;13828:14;;13672:176;;;;:::o;13854:159::-;13994:11;13990:1;13982:6;13978:14;13971:35;13854:159;:::o;14019:365::-;14161:3;14182:66;14246:1;14241:3;14182:66;:::i;:::-;14175:73;;14257:93;14346:3;14257:93;:::i;:::-;14375:2;14370:3;14366:12;14359:19;;14019:365;;;:::o;14390:419::-;14556:4;14594:2;14583:9;14579:18;14571:26;;14643:9;14637:4;14633:20;14629:1;14618:9;14614:17;14607:47;14671:131;14797:4;14671:131;:::i;:::-;14663:139;;14390:419;;;:::o;14815:191::-;14855:3;14874:20;14892:1;14874:20;:::i;:::-;14869:25;;14908:20;14926:1;14908:20;:::i;:::-;14903:25;;14951:1;14948;14944:9;14937:16;;14972:3;14969:1;14966:10;14963:36;;;14979:18;;:::i;:::-;14963:36;14815:191;;;;:::o;15012:164::-;15152:16;15148:1;15140:6;15136:14;15129:40;15012:164;:::o;15182:366::-;15324:3;15345:67;15409:2;15404:3;15345:67;:::i;:::-;15338:74;;15421:93;15510:3;15421:93;:::i;:::-;15539:2;15534:3;15530:12;15523:19;;15182:366;;;:::o;15554:419::-;15720:4;15758:2;15747:9;15743:18;15735:26;;15807:9;15801:4;15797:20;15793:1;15782:9;15778:17;15771:47;15835:131;15961:4;15835:131;:::i;:::-;15827:139;;15554:419;;;:::o;15979:180::-;16027:77;16024:1;16017:88;16124:4;16121:1;16114:15;16148:4;16145:1;16138:15;16165:320;16209:6;16246:1;16240:4;16236:12;16226:22;;16293:1;16287:4;16283:12;16314:18;16304:81;;16370:4;16362:6;16358:17;16348:27;;16304:81;16432:2;16424:6;16421:14;16401:18;16398:38;16395:84;;16451:18;;:::i;:::-;16395:84;16216:269;16165:320;;;:::o;16491:141::-;16540:4;16563:3;16555:11;;16586:3;16583:1;16576:14;16620:4;16617:1;16607:18;16599:26;;16491:141;;;:::o;16638:93::-;16675:6;16722:2;16717;16710:5;16706:14;16702:23;16692:33;;16638:93;;;:::o;16737:107::-;16781:8;16831:5;16825:4;16821:16;16800:37;;16737:107;;;;:::o;16850:393::-;16919:6;16969:1;16957:10;16953:18;16992:97;17022:66;17011:9;16992:97;:::i;:::-;17110:39;17140:8;17129:9;17110:39;:::i;:::-;17098:51;;17182:4;17178:9;17171:5;17167:21;17158:30;;17231:4;17221:8;17217:19;17210:5;17207:30;17197:40;;16926:317;;16850:393;;;;;:::o;17249:60::-;17277:3;17298:5;17291:12;;17249:60;;;:::o;17315:142::-;17365:9;17398:53;17416:34;17425:24;17443:5;17425:24;:::i;:::-;17416:34;:::i;:::-;17398:53;:::i;:::-;17385:66;;17315:142;;;:::o;17463:75::-;17506:3;17527:5;17520:12;;17463:75;;;:::o;17544:269::-;17654:39;17685:7;17654:39;:::i;:::-;17715:91;17764:41;17788:16;17764:41;:::i;:::-;17756:6;17749:4;17743:11;17715:91;:::i;:::-;17709:4;17702:105;17620:193;17544:269;;;:::o;17819:73::-;17864:3;17819:73;:::o;17898:189::-;17975:32;;:::i;:::-;18016:65;18074:6;18066;18060:4;18016:65;:::i;:::-;17951:136;17898:189;;:::o;18093:186::-;18153:120;18170:3;18163:5;18160:14;18153:120;;;18224:39;18261:1;18254:5;18224:39;:::i;:::-;18197:1;18190:5;18186:13;18177:22;;18153:120;;;18093:186;;:::o;18285:543::-;18386:2;18381:3;18378:11;18375:446;;;18420:38;18452:5;18420:38;:::i;:::-;18504:29;18522:10;18504:29;:::i;:::-;18494:8;18490:44;18687:2;18675:10;18672:18;18669:49;;;18708:8;18693:23;;18669:49;18731:80;18787:22;18805:3;18787:22;:::i;:::-;18777:8;18773:37;18760:11;18731:80;:::i;:::-;18390:431;;18375:446;18285:543;;;:::o;18834:117::-;18888:8;18938:5;18932:4;18928:16;18907:37;;18834:117;;;;:::o;18957:169::-;19001:6;19034:51;19082:1;19078:6;19070:5;19067:1;19063:13;19034:51;:::i;:::-;19030:56;19115:4;19109;19105:15;19095:25;;19008:118;18957:169;;;;:::o;19131:295::-;19207:4;19353:29;19378:3;19372:4;19353:29;:::i;:::-;19345:37;;19415:3;19412:1;19408:11;19402:4;19399:21;19391:29;;19131:295;;;;:::o;19431:1395::-;19548:37;19581:3;19548:37;:::i;:::-;19650:18;19642:6;19639:30;19636:56;;;19672:18;;:::i;:::-;19636:56;19716:38;19748:4;19742:11;19716:38;:::i;:::-;19801:67;19861:6;19853;19847:4;19801:67;:::i;:::-;19895:1;19919:4;19906:17;;19951:2;19943:6;19940:14;19968:1;19963:618;;;;20625:1;20642:6;20639:77;;;20691:9;20686:3;20682:19;20676:26;20667:35;;20639:77;20742:67;20802:6;20795:5;20742:67;:::i;:::-;20736:4;20729:81;20598:222;19933:887;;19963:618;20015:4;20011:9;20003:6;19999:22;20049:37;20081:4;20049:37;:::i;:::-;20108:1;20122:208;20136:7;20133:1;20130:14;20122:208;;;20215:9;20210:3;20206:19;20200:26;20192:6;20185:42;20266:1;20258:6;20254:14;20244:24;;20313:2;20302:9;20298:18;20285:31;;20159:4;20156:1;20152:12;20147:17;;20122:208;;;20358:6;20349:7;20346:19;20343:179;;;20416:9;20411:3;20407:19;20401:26;20459:48;20501:4;20493:6;20489:17;20478:9;20459:48;:::i;:::-;20451:6;20444:64;20366:156;20343:179;20568:1;20564;20556:6;20552:14;20548:22;20542:4;20535:36;19970:611;;;19933:887;;19523:1303;;;19431:1395;;:::o;20832:158::-;20972:10;20968:1;20960:6;20956:14;20949:34;20832:158;:::o;20996:365::-;21138:3;21159:66;21223:1;21218:3;21159:66;:::i;:::-;21152:73;;21234:93;21323:3;21234:93;:::i;:::-;21352:2;21347:3;21343:12;21336:19;;20996:365;;;:::o;21367:419::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21620:9;21614:4;21610:20;21606:1;21595:9;21591:17;21584:47;21648:131;21774:4;21648:131;:::i;:::-;21640:139;;21367:419;;;:::o;21792:410::-;21832:7;21855:20;21873:1;21855:20;:::i;:::-;21850:25;;21889:20;21907:1;21889:20;:::i;:::-;21884:25;;21944:1;21941;21937:9;21966:30;21984:11;21966:30;:::i;:::-;21955:41;;22145:1;22136:7;22132:15;22129:1;22126:22;22106:1;22099:9;22079:83;22056:139;;22175:18;;:::i;:::-;22056:139;21840:362;21792:410;;;;:::o;22208:162::-;22348:14;22344:1;22336:6;22332:14;22325:38;22208:162;:::o;22376:366::-;22518:3;22539:67;22603:2;22598:3;22539:67;:::i;:::-;22532:74;;22615:93;22704:3;22615:93;:::i;:::-;22733:2;22728:3;22724:12;22717:19;;22376:366;;;:::o;22748:419::-;22914:4;22952:2;22941:9;22937:18;22929:26;;23001:9;22995:4;22991:20;22987:1;22976:9;22972:17;22965:47;23029:131;23155:4;23029:131;:::i;:::-;23021:139;;22748:419;;;:::o;23173:148::-;23275:11;23312:3;23297:18;;23173:148;;;;:::o;23327:161::-;23467:9;23463:1;23455:6;23451:14;23444:33;23327:161;:::o;23498:416::-;23658:3;23683:84;23765:1;23760:3;23683:84;:::i;:::-;23676:91;;23780:93;23869:3;23780:93;:::i;:::-;23902:1;23897:3;23893:11;23886:18;;23498:416;;;:::o;23924:410::-;24030:3;24062:39;24095:5;24062:39;:::i;:::-;24121:89;24203:6;24198:3;24121:89;:::i;:::-;24114:96;;24223:65;24281:6;24276:3;24269:4;24262:5;24258:16;24223:65;:::i;:::-;24317:6;24312:3;24308:16;24301:23;;24034:300;23924:410;;;;:::o;24344:159::-;24488:3;24484:1;24476:6;24472:14;24465:27;24344:159;:::o;24513:416::-;24673:3;24698:84;24780:1;24775:3;24698:84;:::i;:::-;24691:91;;24795:93;24884:3;24795:93;:::i;:::-;24917:1;24912:3;24908:11;24901:18;;24513:416;;;:::o;24939:163::-;25083:7;25079:1;25071:6;25067:14;25060:31;24939:163;:::o;25112:416::-;25272:3;25297:84;25379:1;25374:3;25297:84;:::i;:::-;25290:91;;25394:93;25483:3;25394:93;:::i;:::-;25516:1;25511:3;25507:11;25500:18;;25112:416;;;:::o;25538:1261::-;26021:3;26047:148;26191:3;26047:148;:::i;:::-;26040:155;;26216:95;26307:3;26298:6;26216:95;:::i;:::-;26209:102;;26332:148;26476:3;26332:148;:::i;:::-;26325:155;;26501:95;26592:3;26583:6;26501:95;:::i;:::-;26494:102;;26617:148;26761:3;26617:148;:::i;:::-;26610:155;;26786:3;26779:10;;25538:1261;;;;;:::o;26809:171::-;26953:15;26949:1;26941:6;26937:14;26930:39;26809:171;:::o;26990:382::-;27132:3;27157:67;27221:2;27216:3;27157:67;:::i;:::-;27150:74;;27237:93;27326:3;27237:93;:::i;:::-;27359:2;27354:3;27350:12;27343:19;;26990:382;;;:::o;27382:435::-;27548:4;27590:2;27579:9;27575:18;27567:26;;27643:9;27637:4;27633:20;27629:1;27618:9;27614:17;27607:47;27675:131;27801:4;27675:131;:::i;:::-;27667:139;;27382:435;;;:::o;27827:196::-;27879:77;27876:1;27869:88;27980:4;27977:1;27970:15;28008:4;28005:1;27998:15

Swarm Source

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