ETH Price: $3,454.58 (-0.94%)
Gas: 2 Gwei

Token

Gas Work (GW)
 

Overview

Max Total Supply

987 GW

Holders

979

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GW
0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GasWork

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-08-21
*/

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


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

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

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

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

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

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

library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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 GasWork is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    uint256 public constant MAX_PER_WALLET = 1;
    uint256 public constant COST = 0 ether;
    uint256 public constant MAX_SUPPLY = 987;

    string private constant _name = "Gas Work";
    string private constant _symbol = "GW";
    string private constant _contractURI = "QmZ1eWhY8mxJXeEFfacacQMpviSa6y6F3DsueRTWJs9ws2";
    mapping (uint256 => string) public historyOfColor;

    constructor() {
        _owner = msg.sender;
    }

    function random() internal view returns (string memory) {
        string memory input = Strings.toHexString(uint256(uint160(msg.sender)), 20);
        string memory output = substring(input, 2, 8);
        return output;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET, "AccLimit");
        historyOfColor[_currentIndex] = random();

        _mint(_caller, amount);
    }

    function substring(string memory str, uint startIndex, uint endIndex) internal view returns (string memory) { 
        bytes memory strBytes = bytes(str); 
        bytes memory result = new bytes(endIndex-startIndex); 
        for(uint i = startIndex; i < endIndex; i++) 
        {
            result[i-startIndex] = strBytes[i]; 
        } 
        return string(result); 
    }


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

   

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

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

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

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

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

    /**
     * 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 render(uint256 _tokenId) internal view returns (string memory) {
        string memory body = historyOfColor[_tokenId];
        return string.concat(
            '<svg height="200" width="200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1000 1000">',
            '<defs><radialGradient id="glow" cx="0.25" cy="0.25" r="0.35"><stop offset="0%" stop-color="#e3a8b0" /><stop offset="100%" stop-color="#',body,'" /></radialGradient></defs>',
            '<rect xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="white" />',
            '<circle cx="500" cy="500" r="500" fill="url(#glow)" />',
            '</svg>'
        );
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "token does not exists");

        string memory svg = string(abi.encodePacked(render(_tokenId)));
        string memory json = Base64.encode(
            abi.encodePacked(
                '{"name": "GasWork #', Strings.toString(_tokenId),
                '", "description": "Gas Work on Chain", "image": "data:image/svg+xml;base64,',
                Base64.encode(bytes(svg)),
                '"}'
            )
        );

        return string(abi.encodePacked("data:application/json;base64,", json));
    }



    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

    /**
     * @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 Equivalent to `_safeMint(to, quantity, '')`.
     */
     /*
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }
    */

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

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }
    */

    /**
     * @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.
     */
    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();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


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

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

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

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

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




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

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"","type":"uint256"}],"name":"historyOfColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060025534801561001557600080fd5b50600080546001600160a01b031916331790556119b1806100376000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063b88d4fde11610071578063b88d4fde14610285578063bf8fbbd214610298578063c87b56dd146102a0578063e8a3d485146102b3578063e985e9c5146102bb57600080fd5b80636352211e1461021b57806370a082311461022e57806395d89b4114610241578063a22cb4651461025f578063a436965b1461027257600080fd5b80631249c58b116100f45780631249c58b146101dc57806318160ddd146101e457806323b872dd146101ec57806332cb6b0c146101ff57806342842e0e1461020857600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc14610186578063095ea7b3146101b15780630f2cdd6c146101c6575b600080fd5b61014461013f3660046110ae565b6102ce565b60405190151581526020015b60405180910390f35b60408051808201909152600881526747617320576f726b60c01b60208201525b60405161015091906110fc565b61019961019436600461112f565b610320565b6040516001600160a01b039091168152602001610150565b6101c46101bf366004611164565b610366565b005b6101ce600181565b604051908152602001610150565b6101c4610424565b6002546101ce565b6101c46101fa36600461118e565b610511565b6101ce6103db81565b6101c461021636600461118e565b610521565b61019961022936600461112f565b61053c565b6101ce61023c3660046111ca565b610547565b604080518082019091526002815261475760f01b6020820152610179565b6101c461026d3660046111e5565b610590565b61017961028036600461112f565b610625565b6101c4610293366004611237565b6106bf565b6101ce600081565b6101796102ae36600461112f565b6106d0565b6101796107b4565b6101446102c9366004611313565b6107f3565b60006301ffc9a760e01b6001600160e01b0319831614806102ff57506380ac58cd60e01b6001600160e01b03198316145b8061031a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061032d826002541190565b61034a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061037182610821565b9050806001600160a01b0316836001600160a01b03160361039157600080fd5b336001600160a01b038216146103c8576103ab81336107f3565b6103c8576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016103db8161043460025490565b61043e919061135c565b111561047b5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526004602052604090819020546001911c67ffffffffffffffff166104a5908361135c565b11156104de5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610472565b6104e661088f565b60025460009081526001602052604090209061050290826113ef565b5061050d82826108af565b5050565b61051c83838361098a565b505050565b61051c838383604051806020016040528060008152506106bf565b600061031a82610821565b60008160000361056a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105b95760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001602052600090815260409020805461063e9061136f565b80601f016020809104026020016040519081016040528092919081815260200182805461066a9061136f565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b505050505081565b6106ca84848461098a565b50505050565b60606106dd826002541190565b6107215760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b6044820152606401610472565b600061072c83610b23565b60405160200161073c91906114af565b6040516020818303038152906040529050600061078961075b85610be9565b61076484610cf2565b6040516020016107759291906114cb565b604051602081830303815290604052610cf2565b90508060405160200161079c919061158c565b60405160208183030381529060405292505050919050565b60606040518060600160405280602e815260200161194e602e91396040516020016107df91906115d1565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000816002548110156108765760008181526003602052604081205490600160e01b82169003610874575b8060000361086d57506000190160008181526003602052604090205461084c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600061089e336014610e45565b9050600061086d8260026008610fe1565b600254826000036108d257604051622e076360e81b815260040160405180910390fd5b816000036108f35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526004602090815260408083208054680100000000000000018702019055838352600390915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061093e5750600255505050565b600061099582610821565b9050836001600160a01b0316816001600160a01b0316146109c85760405162a1148160e81b815260040160405180910390fd5b6000828152600560205260408120546001600160a01b03908116919086163314806109f857506109f886336107f3565b80610a0b57506001600160a01b03821633145b905080610a2b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610a4e57600084815260056020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600460209081526040808320805460001901905592881682528282208054600101905586825260039052908120600160e11b4260a01b8817811790915584169003610ad957600184016000818152600360205260408120549003610ad7576002548114610ad75760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815260016020526040812080546060929190610b419061136f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d9061136f565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905080604051602001610bd29190611600565b604051602081830303815290604052915050919050565b606081600003610c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610c3a5780610c2481611857565b9150610c339050600a83611886565b9150610c14565b60008167ffffffffffffffff811115610c5557610c55611221565b6040519080825280601f01601f191660200182016040528015610c7f576020820181803683370190505b5090505b8415610cea57610c9460018361189a565b9150610ca1600a866118ad565b610cac90603061135c565b60f81b818381518110610cc157610cc16118c1565b60200101906001600160f81b031916908160001a905350610ce3600a86611886565b9450610c83565b949350505050565b60608151600003610d1157505060408051602081019091526000815290565b600060405180606001604052806040815260200161190e6040913990506000600384516002610d40919061135c565b610d4a9190611886565b610d559060046118d7565b67ffffffffffffffff811115610d6d57610d6d611221565b6040519080825280601f01601f191660200182016040528015610d97576020820181803683370190505b509050600182016020820185865187015b80821015610e03576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610da8565b5050600386510660018114610e1f5760028114610e3257610e3a565b603d6001830353603d6002830353610e3a565b603d60018303535b509195945050505050565b60606000610e548360026118d7565b610e5f90600261135c565b67ffffffffffffffff811115610e7757610e77611221565b6040519080825280601f01601f191660200182016040528015610ea1576020820181803683370190505b509050600360fc1b81600081518110610ebc57610ebc6118c1565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610eeb57610eeb6118c1565b60200101906001600160f81b031916908160001a9053506000610f0f8460026118d7565b610f1a90600161135c565b90505b6001811115610f92576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f4e57610f4e6118c1565b1a60f81b828281518110610f6457610f646118c1565b60200101906001600160f81b031916908160001a90535060049490941c93610f8b816118f6565b9050610f1d565b50831561086d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610472565b6060836000610ff0858561189a565b67ffffffffffffffff81111561100857611008611221565b6040519080825280601f01601f191660200182016040528015611032576020820181803683370190505b509050845b848110156110a457828181518110611051576110516118c1565b01602001516001600160f81b0319168261106b888461189a565b8151811061107b5761107b6118c1565b60200101906001600160f81b031916908160001a9053508061109c81611857565b915050611037565b5095945050505050565b6000602082840312156110c057600080fd5b81356001600160e01b03198116811461086d57600080fd5b60005b838110156110f35781810151838201526020016110db565b50506000910152565b602081526000825180602084015261111b8160408501602087016110d8565b601f01601f19169190910160400192915050565b60006020828403121561114157600080fd5b5035919050565b80356001600160a01b038116811461115f57600080fd5b919050565b6000806040838503121561117757600080fd5b61118083611148565b946020939093013593505050565b6000806000606084860312156111a357600080fd5b6111ac84611148565b92506111ba60208501611148565b9150604084013590509250925092565b6000602082840312156111dc57600080fd5b61086d82611148565b600080604083850312156111f857600080fd5b61120183611148565b91506020830135801515811461121657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561124d57600080fd5b61125685611148565b935061126460208601611148565b925060408501359150606085013567ffffffffffffffff8082111561128857600080fd5b818701915087601f83011261129c57600080fd5b8135818111156112ae576112ae611221565b604051601f8201601f19908116603f011681019083821181831017156112d6576112d6611221565b816040528281528a60208487010111156112ef57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561132657600080fd5b61132f83611148565b915061133d60208401611148565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031a5761031a611346565b600181811c9082168061138357607f821691505b6020821081036113a357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561051c57600081815260208120601f850160051c810160208610156113d05750805b601f850160051c820191505b81811015610b1b578281556001016113dc565b815167ffffffffffffffff81111561140957611409611221565b61141d81611417845461136f565b846113a9565b602080601f831160018114611452576000841561143a5750858301515b600019600386901b1c1916600185901b178555610b1b565b600085815260208120601f198616915b8281101561148157888601518255948401946001909101908401611462565b508582101561149f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516114c18184602087016110d8565b9190910192915050565b727b226e616d65223a2022476173576f726b202360681b815282516000906114fa8160138501602088016110d8565b7f222c20226465736372697074696f6e223a202247617320576f726b206f6e20436013918401918201527f6861696e222c2022696d616765223a2022646174613a696d6167652f7376672b60338201526a1e1b5b0ed8985cd94d8d0b60aa1b6053820152835161157181605e8401602088016110d8565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516115c481601d8501602087016110d8565b91909101601d0192915050565b66697066733a2f2f60c81b8152600082516115f38160078501602087016110d8565b9190910160070192915050565b7f3c737667206865696768743d22323030222077696474683d223230302220786d81527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208201527f207072657365727665417370656374526174696f3d22784d696e594d696e206d60408201527f656574222076696577426f783d2230203020313030302031303030223e00000060608201527f3c646566733e3c72616469616c4772616469656e742069643d22676c6f772220607d8201527f63783d22302e3235222063793d22302e32352220723d22302e3335223e3c7374609d8201527f6f70206f66667365743d223025222073746f702d636f6c6f723d22236533613860bd8201527f623022202f3e3c73746f70206f66667365743d2231303025222073746f702d6360dd820152666f6c6f723d222360c81b60fd8201526000610104835161175481838601602088016110d8565b83016117818282017f22202f3e3c2f72616469616c4772616469656e743e3c2f646566733e000000009052565b7f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f326101208201527f3030302f737667222077696474683d223130302522206865696768743d22313061014082015272181291103334b6361e913bb434ba329110179f60691b6101608201527f3c636972636c652063783d22353030222063793d223530302220723d223530306101738201527511103334b6361e913ab9361411b3b637bb949110179f60511b6101938201526101a9810191505061184d81651e17b9bb339f60d11b9052565b6006019392505050565b60006001820161186957611869611346565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261189557611895611870565b500490565b8181038181111561031a5761031a611346565b6000826118bc576118bc611870565b500690565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156118f1576118f1611346565b500290565b60008161190557611905611346565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d5a3165576859386d784a586545466661636163514d70766953613679364633447375655254574a7339777332a2646970667358221220cc89e826b12d39c2372ab8b41467bff471cbec90bbc289f8acb2ae07dcb2692164736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063b88d4fde11610071578063b88d4fde14610285578063bf8fbbd214610298578063c87b56dd146102a0578063e8a3d485146102b3578063e985e9c5146102bb57600080fd5b80636352211e1461021b57806370a082311461022e57806395d89b4114610241578063a22cb4651461025f578063a436965b1461027257600080fd5b80631249c58b116100f45780631249c58b146101dc57806318160ddd146101e457806323b872dd146101ec57806332cb6b0c146101ff57806342842e0e1461020857600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc14610186578063095ea7b3146101b15780630f2cdd6c146101c6575b600080fd5b61014461013f3660046110ae565b6102ce565b60405190151581526020015b60405180910390f35b60408051808201909152600881526747617320576f726b60c01b60208201525b60405161015091906110fc565b61019961019436600461112f565b610320565b6040516001600160a01b039091168152602001610150565b6101c46101bf366004611164565b610366565b005b6101ce600181565b604051908152602001610150565b6101c4610424565b6002546101ce565b6101c46101fa36600461118e565b610511565b6101ce6103db81565b6101c461021636600461118e565b610521565b61019961022936600461112f565b61053c565b6101ce61023c3660046111ca565b610547565b604080518082019091526002815261475760f01b6020820152610179565b6101c461026d3660046111e5565b610590565b61017961028036600461112f565b610625565b6101c4610293366004611237565b6106bf565b6101ce600081565b6101796102ae36600461112f565b6106d0565b6101796107b4565b6101446102c9366004611313565b6107f3565b60006301ffc9a760e01b6001600160e01b0319831614806102ff57506380ac58cd60e01b6001600160e01b03198316145b8061031a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061032d826002541190565b61034a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061037182610821565b9050806001600160a01b0316836001600160a01b03160361039157600080fd5b336001600160a01b038216146103c8576103ab81336107f3565b6103c8576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016103db8161043460025490565b61043e919061135c565b111561047b5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526004602052604090819020546001911c67ffffffffffffffff166104a5908361135c565b11156104de5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610472565b6104e661088f565b60025460009081526001602052604090209061050290826113ef565b5061050d82826108af565b5050565b61051c83838361098a565b505050565b61051c838383604051806020016040528060008152506106bf565b600061031a82610821565b60008160000361056a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105b95760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001602052600090815260409020805461063e9061136f565b80601f016020809104026020016040519081016040528092919081815260200182805461066a9061136f565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b505050505081565b6106ca84848461098a565b50505050565b60606106dd826002541190565b6107215760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b6044820152606401610472565b600061072c83610b23565b60405160200161073c91906114af565b6040516020818303038152906040529050600061078961075b85610be9565b61076484610cf2565b6040516020016107759291906114cb565b604051602081830303815290604052610cf2565b90508060405160200161079c919061158c565b60405160208183030381529060405292505050919050565b60606040518060600160405280602e815260200161194e602e91396040516020016107df91906115d1565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000816002548110156108765760008181526003602052604081205490600160e01b82169003610874575b8060000361086d57506000190160008181526003602052604090205461084c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600061089e336014610e45565b9050600061086d8260026008610fe1565b600254826000036108d257604051622e076360e81b815260040160405180910390fd5b816000036108f35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526004602090815260408083208054680100000000000000018702019055838352600390915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061093e5750600255505050565b600061099582610821565b9050836001600160a01b0316816001600160a01b0316146109c85760405162a1148160e81b815260040160405180910390fd5b6000828152600560205260408120546001600160a01b03908116919086163314806109f857506109f886336107f3565b80610a0b57506001600160a01b03821633145b905080610a2b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610a4e57600084815260056020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600460209081526040808320805460001901905592881682528282208054600101905586825260039052908120600160e11b4260a01b8817811790915584169003610ad957600184016000818152600360205260408120549003610ad7576002548114610ad75760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815260016020526040812080546060929190610b419061136f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d9061136f565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905080604051602001610bd29190611600565b604051602081830303815290604052915050919050565b606081600003610c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610c3a5780610c2481611857565b9150610c339050600a83611886565b9150610c14565b60008167ffffffffffffffff811115610c5557610c55611221565b6040519080825280601f01601f191660200182016040528015610c7f576020820181803683370190505b5090505b8415610cea57610c9460018361189a565b9150610ca1600a866118ad565b610cac90603061135c565b60f81b818381518110610cc157610cc16118c1565b60200101906001600160f81b031916908160001a905350610ce3600a86611886565b9450610c83565b949350505050565b60608151600003610d1157505060408051602081019091526000815290565b600060405180606001604052806040815260200161190e6040913990506000600384516002610d40919061135c565b610d4a9190611886565b610d559060046118d7565b67ffffffffffffffff811115610d6d57610d6d611221565b6040519080825280601f01601f191660200182016040528015610d97576020820181803683370190505b509050600182016020820185865187015b80821015610e03576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610da8565b5050600386510660018114610e1f5760028114610e3257610e3a565b603d6001830353603d6002830353610e3a565b603d60018303535b509195945050505050565b60606000610e548360026118d7565b610e5f90600261135c565b67ffffffffffffffff811115610e7757610e77611221565b6040519080825280601f01601f191660200182016040528015610ea1576020820181803683370190505b509050600360fc1b81600081518110610ebc57610ebc6118c1565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610eeb57610eeb6118c1565b60200101906001600160f81b031916908160001a9053506000610f0f8460026118d7565b610f1a90600161135c565b90505b6001811115610f92576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f4e57610f4e6118c1565b1a60f81b828281518110610f6457610f646118c1565b60200101906001600160f81b031916908160001a90535060049490941c93610f8b816118f6565b9050610f1d565b50831561086d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610472565b6060836000610ff0858561189a565b67ffffffffffffffff81111561100857611008611221565b6040519080825280601f01601f191660200182016040528015611032576020820181803683370190505b509050845b848110156110a457828181518110611051576110516118c1565b01602001516001600160f81b0319168261106b888461189a565b8151811061107b5761107b6118c1565b60200101906001600160f81b031916908160001a9053508061109c81611857565b915050611037565b5095945050505050565b6000602082840312156110c057600080fd5b81356001600160e01b03198116811461086d57600080fd5b60005b838110156110f35781810151838201526020016110db565b50506000910152565b602081526000825180602084015261111b8160408501602087016110d8565b601f01601f19169190910160400192915050565b60006020828403121561114157600080fd5b5035919050565b80356001600160a01b038116811461115f57600080fd5b919050565b6000806040838503121561117757600080fd5b61118083611148565b946020939093013593505050565b6000806000606084860312156111a357600080fd5b6111ac84611148565b92506111ba60208501611148565b9150604084013590509250925092565b6000602082840312156111dc57600080fd5b61086d82611148565b600080604083850312156111f857600080fd5b61120183611148565b91506020830135801515811461121657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561124d57600080fd5b61125685611148565b935061126460208601611148565b925060408501359150606085013567ffffffffffffffff8082111561128857600080fd5b818701915087601f83011261129c57600080fd5b8135818111156112ae576112ae611221565b604051601f8201601f19908116603f011681019083821181831017156112d6576112d6611221565b816040528281528a60208487010111156112ef57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561132657600080fd5b61132f83611148565b915061133d60208401611148565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031a5761031a611346565b600181811c9082168061138357607f821691505b6020821081036113a357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561051c57600081815260208120601f850160051c810160208610156113d05750805b601f850160051c820191505b81811015610b1b578281556001016113dc565b815167ffffffffffffffff81111561140957611409611221565b61141d81611417845461136f565b846113a9565b602080601f831160018114611452576000841561143a5750858301515b600019600386901b1c1916600185901b178555610b1b565b600085815260208120601f198616915b8281101561148157888601518255948401946001909101908401611462565b508582101561149f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516114c18184602087016110d8565b9190910192915050565b727b226e616d65223a2022476173576f726b202360681b815282516000906114fa8160138501602088016110d8565b7f222c20226465736372697074696f6e223a202247617320576f726b206f6e20436013918401918201527f6861696e222c2022696d616765223a2022646174613a696d6167652f7376672b60338201526a1e1b5b0ed8985cd94d8d0b60aa1b6053820152835161157181605e8401602088016110d8565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516115c481601d8501602087016110d8565b91909101601d0192915050565b66697066733a2f2f60c81b8152600082516115f38160078501602087016110d8565b9190910160070192915050565b7f3c737667206865696768743d22323030222077696474683d223230302220786d81527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208201527f207072657365727665417370656374526174696f3d22784d696e594d696e206d60408201527f656574222076696577426f783d2230203020313030302031303030223e00000060608201527f3c646566733e3c72616469616c4772616469656e742069643d22676c6f772220607d8201527f63783d22302e3235222063793d22302e32352220723d22302e3335223e3c7374609d8201527f6f70206f66667365743d223025222073746f702d636f6c6f723d22236533613860bd8201527f623022202f3e3c73746f70206f66667365743d2231303025222073746f702d6360dd820152666f6c6f723d222360c81b60fd8201526000610104835161175481838601602088016110d8565b83016117818282017f22202f3e3c2f72616469616c4772616469656e743e3c2f646566733e000000009052565b7f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f326101208201527f3030302f737667222077696474683d223130302522206865696768743d22313061014082015272181291103334b6361e913bb434ba329110179f60691b6101608201527f3c636972636c652063783d22353030222063793d223530302220723d223530306101738201527511103334b6361e913ab9361411b3b637bb949110179f60511b6101938201526101a9810191505061184d81651e17b9bb339f60d11b9052565b6006019392505050565b60006001820161186957611869611346565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261189557611895611870565b500490565b8181038181111561031a5761031a611346565b6000826118bc576118bc611870565b500690565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156118f1576118f1611346565b500290565b60008161190557611905611346565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d5a3165576859386d784a586545466661636163514d70766953613679364633447375655254574a7339777332a2646970667358221220cc89e826b12d39c2372ab8b41467bff471cbec90bbc289f8acb2ae07dcb2692164736f6c63430008100033

Deployed Bytecode Sourcemap

20982:25421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26246:615;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;26246:615:0;;;;;;;;30999:100;31086:5;;;;;;;;;;;;-1:-1:-1;;;31086:5:0;;;;30999:100;;;;;;;:::i;33860:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;33860:204:0;1338:203:1;33343:451:0;;;;;;:::i;:::-;;:::i;:::-;;21180:42;;21221:1;21180:42;;;;;2129:25:1;;;2117:2;2102:18;21180:42:0;1983:177:1;21867:348:0;;;:::i;25489:300::-;25739:13;;25489:300;;34746:190;;;;;;:::i;:::-;;:::i;21274:40::-;;21311:3;21274:40;;35007:205;;;;;;:::i;:::-;;:::i;30788:144::-;;;;;;:::i;:::-;;:::i;26925:234::-;;;;;;:::i;:::-;;:::i;31168:104::-;31257:7;;;;;;;;;;;;-1:-1:-1;;;31257:7:0;;;;31168:104;;34136:308;;;;;;:::i;:::-;;:::i;21511:49::-;;;;;;:::i;:::-;;:::i;35283:227::-;;;;;;:::i;:::-;;:::i;21229:38::-;;21260:7;21229:38;;31990:683;;;;;;:::i;:::-;;:::i;32685:134::-;;;:::i;34515:164::-;;;;;;:::i;:::-;;:::i;26246:615::-;26331:4;-1:-1:-1;;;;;;;;;26631:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;26708:25:0;;;26631:102;:179;;;-1:-1:-1;;;;;;;;;;26785:25:0;;;26631:179;26611:199;26246:615;-1:-1:-1;;26246:615:0:o;33860:204::-;33928:7;33953:16;33961:7;35912:13;;-1:-1:-1;35902:23:0;35765:168;33953:16;33948:64;;33978:34;;-1:-1:-1;;;33978:34:0;;;;;;;;;;;33948:64;-1:-1:-1;34032:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34032:24:0;;33860:204::o;33343:451::-;33416:13;33448:27;33467:7;33448:18;:27::i;:::-;33416:61;;33498:5;-1:-1:-1;;;;;33492:11:0;:2;-1:-1:-1;;;;;33492:11:0;;33488:25;;33505:8;;;33488:25;44394:10;-1:-1:-1;;;;;33530:28:0;;;33526:175;;33578:44;33595:5;44394:10;34515:164;:::i;33578:44::-;33573:128;;33650:35;;-1:-1:-1;;;33650:35:0;;;;;;;;;;;33573:128;33713:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33713:29:0;-1:-1:-1;;;;;33713:29:0;;;;;;;;;33758:28;;33713:24;;33758:28;;;;;;;33405:389;33343:451;;:::o;21867:348::-;44394:10;21967:1;21311:3;21967:1;21989:13;25739;;;25489:300;21989:13;:22;;;;:::i;:::-;:36;;21981:56;;;;-1:-1:-1;;;21981:56:0;;5045:2:1;21981:56:0;;;5027:21:1;5084:1;5064:18;;;5057:29;-1:-1:-1;;;5102:18:1;;;5095:37;5149:18;;21981:56:0;;;;;;;;;22079:10;27302:7;27330:25;;;:18;:25;;22860:2;27330:25;;;;;21221:1;;27330:49;22723:13;27329:80;22056:34;;:6;:34;:::i;:::-;:52;;22048:73;;;;-1:-1:-1;;;22048:73:0;;5380:2:1;22048:73:0;;;5362:21:1;5419:1;5399:18;;;5392:29;-1:-1:-1;;;5437:18:1;;;5430:38;5485:18;;22048:73:0;5178:331:1;22048:73:0;22164:8;:6;:8::i;:::-;22147:13;;22132:29;;;;:14;:29;;;;;;:40;;:29;:40;:::i;:::-;;22185:22;22191:7;22200:6;22185:5;:22::i;:::-;21891:324;;21867:348::o;34746:190::-;34900:28;34910:4;34916:2;34920:7;34900:9;:28::i;:::-;34746:190;;;:::o;35007:205::-;35165:39;35182:4;35188:2;35192:7;35165:39;;;;;;;;;;;;:16;:39::i;30788:144::-;30852:7;30895:27;30914:7;30895:18;:27::i;26925:234::-;26989:7;27031:5;27041:1;27013:29;27009:70;;27051:28;;-1:-1:-1;;;27051:28:0;;;;;;;;;;;27009:70;-1:-1:-1;;;;;;27097:25:0;;;;;:18;:25;;;;;;22723:13;27097:54;;26925:234::o;34136:308::-;44394:10;-1:-1:-1;;;;;34235:31:0;;;34231:61;;34275:17;;-1:-1:-1;;;34275:17:0;;;;;;;;;;;34231:61;44394:10;34305:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34305:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34305:60:0;;;;;;;;;;34381:55;;445:41:1;;;34305:49:0;;44394:10;34381:55;;418:18:1;34381:55:0;;;;;;;34136:308;;:::o;21511:49::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35283:227::-;35474:28;35484:4;35490:2;35494:7;35474:9;:28::i;:::-;35283:227;;;;:::o;31990:683::-;32092:13;32131:17;32139:8;35912:13;;-1:-1:-1;35902:23:0;35765:168;32131:17;32123:51;;;;-1:-1:-1;;;32123:51:0;;8305:2:1;32123:51:0;;;8287:21:1;8344:2;8324:18;;;8317:30;-1:-1:-1;;;8363:18:1;;;8356:51;8424:18;;32123:51:0;8103:345:1;32123:51:0;32187:17;32231:16;32238:8;32231:6;:16::i;:::-;32214:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;32187:62;;32260:18;32281:301;32367:26;32384:8;32367:16;:26::i;:::-;32508:25;32528:3;32508:13;:25::i;:::-;32309:262;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32281:13;:301::i;:::-;32260:322;;32659:4;32609:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;32595:70;;;;31990:683;;;:::o;32685:134::-;32729:13;32797:12;;;;;;;;;;;;;;;;;32769:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;32755:56;;32685:134;:::o;34515:164::-;-1:-1:-1;;;;;34636:25:0;;;34612:4;34636:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34515:164::o;28303:1129::-;28370:7;28405;28507:13;;28500:4;:20;28496:869;;;28545:14;28562:23;;;:17;:23;;;;;;;-1:-1:-1;;;28651:23:0;;:28;;28647:699;;29170:113;29177:6;29187:1;29177:11;29170:113;;-1:-1:-1;;;29248:6:0;29230:25;;;;:17;:25;;;;;;29170:113;;;29316:6;28303:1129;-1:-1:-1;;;28303:1129:0:o;28647:699::-;28522:843;28496:869;29393:31;;-1:-1:-1;;;29393:31:0;;;;;;;;;;;21629:230;21670:13;21696:19;21718:53;21754:10;21768:2;21718:19;:53::i;:::-;21696:75;;21782:20;21805:22;21815:5;21822:1;21825;21805:9;:22::i;38785:1594::-;38873:13;;38919:2;38926:1;38901:26;38897:58;;38936:19;;-1:-1:-1;;;38936:19:0;;;;;;;;;;;38897:58;38970:8;38982:1;38970:13;38966:44;;38992:18;;-1:-1:-1;;;38992:18:0;;;;;;;;;;;38966:44;-1:-1:-1;;;;;39487:22:0;;;;;;:18;:22;;;;22860:2;39487:22;;;:70;;39525:31;39513:44;;39487:70;;;39800:31;;;:17;:31;;;;;39893:15;23377:3;39893:41;39851:84;;-1:-1:-1;39971:13:0;;23636:3;39956:56;39851:162;39800:213;;:31;40094:23;;;40134:111;40161:40;;40186:14;;;;;-1:-1:-1;;;;;40161:40:0;;;40178:1;;40161:40;;40178:1;;40161:40;40240:3;40225:12;:18;40134:111;;-1:-1:-1;40261:13:0;:28;34746:190;;;:::o;40633:2636::-;40770:27;40800;40819:7;40800:18;:27::i;:::-;40770:57;;40885:4;-1:-1:-1;;;;;40844:45:0;40860:19;-1:-1:-1;;;;;40844:45:0;;40840:86;;40898:28;;-1:-1:-1;;;40898:28:0;;;;;;;;;;;40840:86;40939:23;40965:24;;;:15;:24;;;;;;-1:-1:-1;;;;;40965:24:0;;;;40939:23;41028:27;;44394:10;41028:27;;:91;;-1:-1:-1;41076:43:0;41093:4;44394:10;34515:164;:::i;41076:43::-;41028:150;;;-1:-1:-1;;;;;;41140:38:0;;44394:10;41140:38;41028:150;41002:177;;41197:17;41192:66;;41223:35;;-1:-1:-1;;;41223:35:0;;;;;;;;;;;41192:66;41427:15;41409:39;41405:103;;41472:24;;;;:15;:24;;;;;41465:31;;-1:-1:-1;;;;;;41465:31:0;;;41405:103;-1:-1:-1;;;;;41875:24:0;;;;;;;:18;:24;;;;;;;;41873:26;;-1:-1:-1;;41873:26:0;;;41944:22;;;;;;;;41942:24;;-1:-1:-1;41942:24:0;;;42237:26;;;:17;:26;;;;;-1:-1:-1;;;42325:15:0;23377:3;42325:41;42283:84;;:128;;42237:174;;;42531:46;;:51;;42527:626;;42635:1;42625:11;;42603:19;42758:30;;;:17;:30;;;;;;:35;;42754:384;;42896:13;;42881:11;:28;42877:242;;43043:30;;;;:17;:30;;;;;:52;;;42877:242;42584:569;42527:626;43200:7;43196:2;-1:-1:-1;;;;;43181:27:0;43190:4;-1:-1:-1;;;;;43181:27:0;;;;;;;;;;;43219:42;40757:2512;;;40633:2636;;;:::o;31280:702::-;31363:18;31384:24;;;:14;:24;;;;;31363:45;;31337:13;;31363:18;31384:24;31363:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31734:4;31426:548;;;;;;;;:::i;:::-;;;;;;;;;;;;;31419:555;;;31280:702;;;:::o;9315:723::-;9371:13;9592:5;9601:1;9592:10;9588:53;;-1:-1:-1;;9619:10:0;;;;;;;;;;;;-1:-1:-1;;;9619:10:0;;;;;9315:723::o;9588:53::-;9666:5;9651:12;9707:78;9714:9;;9707:78;;9740:8;;;;:::i;:::-;;-1:-1:-1;9763:10:0;;-1:-1:-1;9771:2:0;9763:10;;:::i;:::-;;;9707:78;;;9795:19;9827:6;9817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9817:17:0;;9795:39;;9845:154;9852:10;;9845:154;;9879:11;9889:1;9879:11;;:::i;:::-;;-1:-1:-1;9948:10:0;9956:2;9948:5;:10;:::i;:::-;9935:24;;:2;:24;:::i;:::-;9922:39;;9905:6;9912;9905:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9905:56:0;;;;;;;;-1:-1:-1;9976:11:0;9985:2;9976:11;;:::i;:::-;;;9845:154;;;10023:6;9315:723;-1:-1:-1;;;;9315:723:0:o;11357:3097::-;11415:13;11652:4;:11;11667:1;11652:16;11648:31;;-1:-1:-1;;11670:9:0;;;;;;;;;-1:-1:-1;11670:9:0;;;11357:3097::o;11648:31::-;11732:19;11754:6;;;;;;;;;;;;;;;;;11732:28;;12171:20;12230:1;12211:4;:11;12225:1;12211:15;;;;:::i;:::-;12210:21;;;;:::i;:::-;12205:27;;:1;:27;:::i;:::-;12194:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12194:39:0;;12171:62;;12413:1;12406:5;12402:13;12517:2;12509:6;12505:15;12628:4;12680;12674:11;12668:4;12664:22;12590:1432;12714:6;12705:7;12702:19;12590:1432;;;12820:1;12811:7;12807:15;12796:26;;12859:7;12853:14;13512:4;13504:5;13500:2;13496:14;13492:25;13482:8;13478:40;13472:47;13461:9;13453:67;13566:1;13555:9;13551:17;13538:30;;13658:4;13650:5;13646:2;13642:14;13638:25;13628:8;13624:40;13618:47;13607:9;13599:67;13712:1;13701:9;13697:17;13684:30;;13803:4;13795:5;13792:1;13788:13;13784:24;13774:8;13770:39;13764:46;13753:9;13745:66;13857:1;13846:9;13842:17;13829:30;;13940:4;13933:5;13929:16;13919:8;13915:31;13909:38;13898:9;13890:58;;13994:1;13983:9;13979:17;13966:30;;12590:1432;;;12594:107;;14184:1;14177:4;14171:11;14167:19;14205:1;14200:123;;;;14342:1;14337:73;;;;14160:250;;14200:123;14253:4;14249:1;14238:9;14234:17;14226:32;14303:4;14299:1;14288:9;14284:17;14276:32;14200:123;;14337:73;14390:4;14386:1;14375:9;14371:17;14363:32;14160:250;-1:-1:-1;14440:6:0;;11357:3097;-1:-1:-1;;;;;11357:3097:0:o;10616:451::-;10691:13;10717:19;10749:10;10753:6;10749:1;:10;:::i;:::-;:14;;10762:1;10749:14;:::i;:::-;10739:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10739:25:0;;10717:47;;-1:-1:-1;;;10775:6:0;10782:1;10775:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10775:15:0;;;;;;;;;-1:-1:-1;;;10801:6:0;10808:1;10801:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10801:15:0;;;;;;;;-1:-1:-1;10832:9:0;10844:10;10848:6;10844:1;:10;:::i;:::-;:14;;10857:1;10844:14;:::i;:::-;10832:26;;10827:135;10864:1;10860;:5;10827:135;;;-1:-1:-1;;;10912:5:0;10920:3;10912:11;10899:25;;;;;;;:::i;:::-;;;;10887:6;10894:1;10887:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;10887:37:0;;;;;;;;-1:-1:-1;10949:1:0;10939:11;;;;;10867:3;;;:::i;:::-;;;10827:135;;;-1:-1:-1;10980:10:0;;10972:55;;;;-1:-1:-1;;;10972:55:0;;14951:2:1;10972:55:0;;;14933:21:1;;;14970:18;;;14963:30;15029:34;15009:18;;;15002:62;15081:18;;10972:55:0;14749:356:1;22223:387:0;22316:13;22373:3;22343:21;22421:19;22430:10;22421:8;:19;:::i;:::-;22411:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22411:30:0;-1:-1:-1;22389:52:0;-1:-1:-1;22466:10:0;22453:116;22482:8;22478:1;:12;22453:116;;;22545:8;22554:1;22545:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;22545:11:0;22522:6;22529:12;22531:10;22529:1;:12;:::i;:::-;22522:20;;;;;;;;:::i;:::-;;;;:34;-1:-1:-1;;;;;22522:34:0;;;;;;;;-1:-1:-1;22492:3:0;;;;:::i;:::-;;;;22453:116;;;-1:-1:-1;22594:6:0;22223:387;-1:-1:-1;;;;;22223:387:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:347::-;2754:6;2762;2815:2;2803:9;2794:7;2790:23;2786:32;2783:52;;;2831:1;2828;2821:12;2783:52;2854:29;2873:9;2854:29;:::i;:::-;2844:39;;2933:2;2922:9;2918:18;2905:32;2980:5;2973:13;2966:21;2959:5;2956:32;2946:60;;3002:1;2999;2992:12;2946:60;3025:5;3015:15;;;2689:347;;;;;:::o;3041:127::-;3102:10;3097:3;3093:20;3090:1;3083:31;3133:4;3130:1;3123:15;3157:4;3154:1;3147:15;3173:1138;3268:6;3276;3284;3292;3345:3;3333:9;3324:7;3320:23;3316:33;3313:53;;;3362:1;3359;3352:12;3313:53;3385:29;3404:9;3385:29;:::i;:::-;3375:39;;3433:38;3467:2;3456:9;3452:18;3433:38;:::i;:::-;3423:48;;3518:2;3507:9;3503:18;3490:32;3480:42;;3573:2;3562:9;3558:18;3545:32;3596:18;3637:2;3629:6;3626:14;3623:34;;;3653:1;3650;3643:12;3623:34;3691:6;3680:9;3676:22;3666:32;;3736:7;3729:4;3725:2;3721:13;3717:27;3707:55;;3758:1;3755;3748:12;3707:55;3794:2;3781:16;3816:2;3812;3809:10;3806:36;;;3822:18;;:::i;:::-;3897:2;3891:9;3865:2;3951:13;;-1:-1:-1;;3947:22:1;;;3971:2;3943:31;3939:40;3927:53;;;3995:18;;;4015:22;;;3992:46;3989:72;;;4041:18;;:::i;:::-;4081:10;4077:2;4070:22;4116:2;4108:6;4101:18;4156:7;4151:2;4146;4142;4138:11;4134:20;4131:33;4128:53;;;4177:1;4174;4167:12;4128:53;4233:2;4228;4224;4220:11;4215:2;4207:6;4203:15;4190:46;4278:1;4273:2;4268;4260:6;4256:15;4252:24;4245:35;4299:6;4289:16;;;;;;;3173:1138;;;;;;;:::o;4316:260::-;4384:6;4392;4445:2;4433:9;4424:7;4420:23;4416:32;4413:52;;;4461:1;4458;4451:12;4413:52;4484:29;4503:9;4484:29;:::i;:::-;4474:39;;4532:38;4566:2;4555:9;4551:18;4532:38;:::i;:::-;4522:48;;4316:260;;;;;:::o;4581:127::-;4642:10;4637:3;4633:20;4630:1;4623:31;4673:4;4670:1;4663:15;4697:4;4694:1;4687:15;4713:125;4778:9;;;4799:10;;;4796:36;;;4812:18;;:::i;5514:380::-;5593:1;5589:12;;;;5636;;;5657:61;;5711:4;5703:6;5699:17;5689:27;;5657:61;5764:2;5756:6;5753:14;5733:18;5730:38;5727:161;;5810:10;5805:3;5801:20;5798:1;5791:31;5845:4;5842:1;5835:15;5873:4;5870:1;5863:15;5727:161;;5514:380;;;:::o;6025:545::-;6127:2;6122:3;6119:11;6116:448;;;6163:1;6188:5;6184:2;6177:17;6233:4;6229:2;6219:19;6303:2;6291:10;6287:19;6284:1;6280:27;6274:4;6270:38;6339:4;6327:10;6324:20;6321:47;;;-1:-1:-1;6362:4:1;6321:47;6417:2;6412:3;6408:12;6405:1;6401:20;6395:4;6391:31;6381:41;;6472:82;6490:2;6483:5;6480:13;6472:82;;;6535:17;;;6516:1;6505:13;6472:82;;6746:1352;6872:3;6866:10;6899:18;6891:6;6888:30;6885:56;;;6921:18;;:::i;:::-;6950:97;7040:6;7000:38;7032:4;7026:11;7000:38;:::i;:::-;6994:4;6950:97;:::i;:::-;7102:4;;7166:2;7155:14;;7183:1;7178:663;;;;7885:1;7902:6;7899:89;;;-1:-1:-1;7954:19:1;;;7948:26;7899:89;-1:-1:-1;;6703:1:1;6699:11;;;6695:24;6691:29;6681:40;6727:1;6723:11;;;6678:57;8001:81;;7148:944;;7178:663;5972:1;5965:14;;;6009:4;5996:18;;-1:-1:-1;;7214:20:1;;;7332:236;7346:7;7343:1;7340:14;7332:236;;;7435:19;;;7429:26;7414:42;;7527:27;;;;7495:1;7483:14;;;;7362:19;;7332:236;;;7336:3;7596:6;7587:7;7584:19;7581:201;;;7657:19;;;7651:26;-1:-1:-1;;7740:1:1;7736:14;;;7752:3;7732:24;7728:37;7724:42;7709:58;7694:74;;7581:201;-1:-1:-1;;;;;7828:1:1;7812:14;;;7808:22;7795:36;;-1:-1:-1;6746:1352:1:o;8453:289::-;8584:3;8622:6;8616:13;8638:66;8697:6;8692:3;8685:4;8677:6;8673:17;8638:66;:::i;:::-;8720:16;;;;;8453:289;-1:-1:-1;;8453:289:1:o;8747:1189::-;-1:-1:-1;;;9247:63:1;;9333:13;;9229:3;;9355:75;9333:13;9418:2;9409:12;;9402:4;9390:17;;9355:75;:::i;:::-;9494:66;9489:2;9449:16;;;9481:11;;;9474:87;9590:66;9585:2;9577:11;;9570:87;-1:-1:-1;;;9681:2:1;9673:11;;9666:34;9725:13;;9747:76;9725:13;9809:2;9801:11;;9794:4;9782:17;;9747:76;:::i;:::-;-1:-1:-1;;;9883:2:1;9842:17;;;;9875:11;;;9868:35;9927:2;9919:11;;8747:1189;-1:-1:-1;;;;8747:1189:1:o;9941:461::-;10203:31;10198:3;10191:44;10173:3;10264:6;10258:13;10280:75;10348:6;10343:2;10338:3;10334:12;10327:4;10319:6;10315:17;10280:75;:::i;:::-;10375:16;;;;10393:2;10371:25;;9941:461;-1:-1:-1;;9941:461:1:o;10407:437::-;-1:-1:-1;;;10664:3:1;10657:22;10639:3;10708:6;10702:13;10724:74;10791:6;10787:1;10782:3;10778:11;10771:4;10763:6;10759:17;10724:74;:::i;:::-;10818:16;;;;10836:1;10814:24;;10407:437;-1:-1:-1;;10407:437:1:o;11700:1951::-;12446:66;12441:3;12434:79;12543:66;12538:2;12533:3;12529:12;12522:88;12640:66;12635:2;12630:3;12626:12;12619:88;12737:66;12732:2;12727:3;12723:12;12716:88;12835:66;12829:3;12824;12820:13;12813:89;12933:66;12927:3;12922;12918:13;12911:89;13031:66;13025:3;13020;13016:13;13009:89;13129:66;13123:3;13118;13114:13;13107:89;13236:16;13231:3;13227:26;13221:3;13216;13212:13;13205:49;12416:3;13273;13305:6;13299:13;13321:73;13387:6;13382:2;13377:3;13373:12;13368:2;13360:6;13356:15;13321:73;:::i;:::-;13413:16;;13438:42;13468:11;;;10919:66;10907:79;;10849:143;13438:42;11069:66;13565:3;13557:12;;11057:79;11166:66;11152:12;;;11145:88;-1:-1:-1;;;11249:12:1;;;11242:72;11430:66;11330:12;;;11418:79;-1:-1:-1;;;11513:12:1;;;11506:77;11599:12;;;13489:82;;;13580:36;13610:5;-1:-1:-1;;;11672:21:1;;11622:73;13580:36;13643:1;13632:13;;11700:1951;-1:-1:-1;;;11700:1951:1:o;13656:135::-;13695:3;13716:17;;;13713:43;;13736:18;;:::i;:::-;-1:-1:-1;13783:1:1;13772:13;;13656:135::o;13796:127::-;13857:10;13852:3;13848:20;13845:1;13838:31;13888:4;13885:1;13878:15;13912:4;13909:1;13902:15;13928:120;13968:1;13994;13984:35;;13999:18;;:::i;:::-;-1:-1:-1;14033:9:1;;13928:120::o;14053:128::-;14120:9;;;14141:11;;;14138:37;;;14155:18;;:::i;14186:112::-;14218:1;14244;14234:35;;14249:18;;:::i;:::-;-1:-1:-1;14283:9:1;;14186:112::o;14303:127::-;14364:10;14359:3;14355:20;14352:1;14345:31;14395:4;14392:1;14385:15;14419:4;14416:1;14409:15;14435:168;14475:7;14541:1;14537;14533:6;14529:14;14526:1;14523:21;14518:1;14511:9;14504:17;14500:45;14497:71;;;14548:18;;:::i;:::-;-1:-1:-1;14588:9:1;;14435:168::o;14608:136::-;14647:3;14675:5;14665:39;;14684:18;;:::i;:::-;-1:-1:-1;;;14720:18:1;;14608:136::o

Swarm Source

ipfs://cc89e826b12d39c2372ab8b41467bff471cbec90bbc289f8acb2ae07dcb26921
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.